diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-23 13:56:45 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-23 13:56:45 +0000 |
commit | 035d1f870aa7e55825c8fe473c1132d2479b8631 (patch) | |
tree | cf3facfd49137fa5cc88f161769f963e34d9e8f7 /db | |
parent | 72b91202c8bd8e77c454db416112fd182c9249e3 (diff) | |
download | hercules-035d1f870aa7e55825c8fe473c1132d2479b8631.tar.gz hercules-035d1f870aa7e55825c8fe473c1132d2479b8631.tar.bz2 hercules-035d1f870aa7e55825c8fe473c1132d2479b8631.tar.xz hercules-035d1f870aa7e55825c8fe473c1132d2479b8631.zip |
- Fixed Potion Pitcher sometimes crashing the server.
- Fixed a compile warning by adjusting the acid demonstration formula.
- Added flag 2 to the skill_castnodex_db file for skills that shouldn't be affected by delay/cast reducing skills/effects.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5714 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'db')
-rw-r--r-- | db/skill_castnodex_db.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/db/skill_castnodex_db.txt b/db/skill_castnodex_db.txt index 28a6dad01..e28deb30e 100644 --- a/db/skill_castnodex_db.txt +++ b/db/skill_castnodex_db.txt @@ -1,7 +1,10 @@ //<Skill id>,<Cast: 1 or 0>,<Delay (Optional): 1 or 0>
// Cast: With 1, dex does not affect the skill's cast rate
+// Cast: With 2, cast-rate cannot be reduced by Suffragium and the like
+// Cast: With 3, same effect as 1 + 2
// Cast: With 0, dex affects the skill's cast rate
// Delay: With 1, dex does not affect the skill's delay rate
+// Delay: With 2, delay cannot be reduced by Suffragium and the like
// Delay: With 0, dex affects the skill's delay rate
// Example - 46,1,1 = Double Strafe's casting time and delay is not affected by dex.
// By default, dex NEVER affects after-cast delay, so no need of putting 'x,0,1' in this file
@@ -34,7 +37,7 @@ 468,1 //SL_STUN
469,1 //SL_SMA
1014,1 //PR_REDEMPTIO
-10010,1 //GD_BATTLEORDER
-10011,1 //GD_REGENERATION
-10012,1 //GD_RESTORE
-10013,1 //GD_EMERGENCYCALL
+10010,3 //GD_BATTLEORDER
+10011,3 //GD_REGENERATION
+10012,3 //GD_RESTORE
+10013,3 //GD_EMERGENCYCALL
|