diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-14 01:10:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-17 16:26:35 -0300 |
commit | c8360e9d645ec74294f59d25c8a13ed376afdfd5 (patch) | |
tree | 5c8cd3ba22aea64126d49d86e80aac4d0547a833 | |
parent | f0326c616aa2cba2026c866f3c76f4e42cad5181 (diff) | |
download | serverdata-c8360e9d645ec74294f59d25c8a13ed376afdfd5.tar.gz serverdata-c8360e9d645ec74294f59d25c8a13ed376afdfd5.tar.bz2 serverdata-c8360e9d645ec74294f59d25c8a13ed376afdfd5.tar.xz serverdata-c8360e9d645ec74294f59d25c8a13ed376afdfd5.zip |
Reduce confringo power in 3%. Kinda.
If you use a wand, there's no reduction to the power. Yay!
If you use a staff, the power reduction is of 6%. Nerfed Yay!
The formula is made following the design to nerf harder high levels.
The final result is a net power increase superior to 25%
-rw-r--r-- | world/map/npc/magic/level0-wand.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/world/map/npc/magic/level0-wand.txt b/world/map/npc/magic/level0-wand.txt index aec596b3..b12bc649 100644 --- a/world/map/npc/magic/level0-wand.txt +++ b/world/map/npc/magic/level0-wand.txt @@ -54,7 +54,7 @@ S_SetWand: setarray @wandspell[0], .WandsAnim[.@wand_loop], // wand anim/id ((.@pwr * BaseLevel * 2 / 3) / 15 + 2), // wand cost - (.@pwr * (@spellpower / 3)), // wand dmg + (.@pwr * (@spellpower * (11-.@pwr) / 30)), // wand dmg (((200 - Agi) * 1200) / 200), //delay (.@pwr + (@spellpower / 10)); // charges return; |