diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-19 02:27:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-19 03:18:46 +0300 |
commit | 64c4d5e80118c308893533bb504603ab93b07100 (patch) | |
tree | cf8ea425a3672394efd170a6f0ab839d10c03857 | |
parent | 895341723c0c601c798e22c0a53f0aaaa73e08d1 (diff) | |
download | hercules-64c4d5e80118c308893533bb504603ab93b07100.tar.gz hercules-64c4d5e80118c308893533bb504603ab93b07100.tar.bz2 hercules-64c4d5e80118c308893533bb504603ab93b07100.tar.xz hercules-64c4d5e80118c308893533bb504603ab93b07100.zip |
Add new skill attributes into skill_db and skill db converter.
-rw-r--r-- | db/pre-re/skill_db.conf | 4 | ||||
-rw-r--r-- | db/re/skill_db.conf | 4 | ||||
-rw-r--r-- | tools/skilldbconverter.php | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/db/pre-re/skill_db.conf b/db/pre-re/skill_db.conf index 42ca53c42..a8a58924a 100644 --- a/db/pre-re/skill_db.conf +++ b/db/pre-re/skill_db.conf @@ -69,6 +69,10 @@ NoEnemy: true/false (boolean, defaults to false) IgnoreLandProtector: true/false (boolean, defaults to false) Chorus: true/false (boolean, defaults to false) + FreeCastReduced: true/false (boolean, defaults to false) + Works like skill SA_FREECAST, allow move and attack with reduced speed. + FreeCastNormal: true/false (boolean, defaults to false) + Works like FreeCastReduced, but not reduce speed. } AttackType: "Attack Type" (string, defaults to "None") Types: "None", "Weapon", "Magic" or "Misc" diff --git a/db/re/skill_db.conf b/db/re/skill_db.conf index 2036c9d3b..c66081fed 100644 --- a/db/re/skill_db.conf +++ b/db/re/skill_db.conf @@ -69,6 +69,10 @@ NoEnemy: true/false (boolean, defaults to false) IgnoreLandProtector: true/false (boolean, defaults to false) Chorus: true/false (boolean, defaults to false) + FreeCastReduced: true/false (boolean, defaults to false) + Works like skill SA_FREECAST, allow move and attack with reduced speed. + FreeCastNormal: true/false (boolean, defaults to false) + Works like FreeCastReduced, but not reduce speed. } AttackType: "Attack Type" (string, defaults to "None") Types: "None", "Weapon", "Magic" or "Misc" diff --git a/tools/skilldbconverter.php b/tools/skilldbconverter.php index 972afbb95..d926e4474 100644 --- a/tools/skilldbconverter.php +++ b/tools/skilldbconverter.php @@ -1015,6 +1015,10 @@ function getcomments($re) NoEnemy: true/false (boolean, defaults to false) IgnoreLandProtector: true/false (boolean, defaults to false) Chorus: true/false (boolean, defaults to false) + FreeCastReduced: true/false (boolean, defaults to false) + Works like skill SA_FREECAST, allow move and attack with reduced speed. + FreeCastNormal: true/false (boolean, defaults to false) + Works like FreeCastReduced, but not reduce speed. } AttackType: \"Attack Type\" (string, defaults to \"None\") Types: \"None\", \"Weapon\", \"Magic\" or \"Misc\" |