mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-30 13:47:23 +01:00
Core/Creatures: added sparring system for creatures
This commit is contained in:
7
sql/updates/world/4.3.4/custom_2017_12_22_02_world.sql
Normal file
7
sql/updates/world/4.3.4/custom_2017_12_22_02_world.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
DROP TABLE IF EXISTS `creature_sparring_template`;
|
||||
CREATE TABLE `creature_sparring_template`(
|
||||
`AttackerEntry` MEDIUMINT(8) UNSIGNED NOT NULL,
|
||||
`VictimEntry` MEDIUMINT(8) UNSIGNED NOT NULL,
|
||||
`HealthLimitPct` FLOAT(5) DEFAULT 0,
|
||||
PRIMARY KEY (`AttackerEntry`, `VictimEntry`)
|
||||
);
|
||||
Reference in New Issue
Block a user