mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
WIP on auras
Lots to do still Normal buffing auras currently work for the most part
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
CREATE TABLE `auras` (
|
||||
`type` INT(10) NOT NULL,
|
||||
`npc_type` INT(10) NOT NULL,
|
||||
`name` VARCHAR(64) NOT NULL,
|
||||
`spell_id` INT(10) NOT NULL,
|
||||
`distance` INT(10) NOT NULL DEFAULT 60,
|
||||
`aura_type` INT(10) NOT NULL DEFAULT 1,
|
||||
`spawn_type` INT(10) NOT NULL DEFAULT 0,
|
||||
`movement` INT(10) NOT NULL DEFAULT 0,
|
||||
`duration` INT(10) NOT NULL DEFAULT 5400,
|
||||
`icon` INT(10) NOT NULL DEFAULT -1,
|
||||
PRIMARY KEY(`type`)
|
||||
)
|
||||
Reference in New Issue
Block a user