Core/Creatures: added sparring system for creatures

This commit is contained in:
Ovalord
2017-12-22 11:45:48 +01:00
parent 7f79bd8aec
commit 454c3ce065
8 changed files with 150 additions and 0 deletions

View 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`)
);