Skip to content
Snippets Groups Projects
Commit e75b382c authored by Adry_85's avatar Adry_85
Browse files

BETA: DP-Part for [L5917].

parent eb8c2c27
No related branches found
No related tags found
No related merge requests found
...@@ -141,15 +141,7 @@ public class Heal implements ISkillHandler ...@@ -141,15 +141,7 @@ public class Heal implements ISkillHandler
} }
} }
switch (skill.getSkillType()) hp = (power * target.calcStat(Stats.HEAL_EFFECTIVNESS, 100, null, null)) / 100;
{
case HEAL_PERCENT:
hp = (target.getMaxHp() * power) / 100.0;
break;
default:
hp = power;
hp *= target.calcStat(Stats.HEAL_EFFECTIVNESS, 100, null, null) / 100;
}
// Healer proficiency (since CT1) // Healer proficiency (since CT1)
hp *= activeChar.calcStat(Stats.HEAL_PROFICIENCY, 100, null, null) / 100; hp *= activeChar.calcStat(Stats.HEAL_PROFICIENCY, 100, null, null) / 100;
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
</skill> </skill>
<skill id="20002" levels="1" name="Dragon Blow"> <skill id="20002" levels="1" name="Dragon Blow">
<!-- A dragon's powerful blow that attacks an enemy with 3420 Power added to P. Atk. Over-hit is possible. --> <!-- A dragon's powerful blow that attacks an enemy with 3420 Power added to P. Atk. Over-hit is possible. -->
<set name="blowChance" val="20" />
<set name="castRange" val="55" /> <set name="castRange" val="55" />
<set name="condition" val="16" /> <!-- Crit --> <set name="condition" val="16" /> <!-- Crit -->
<set name="effectRange" val="550" /> <!-- FIXME: value unconfirmed --> <set name="effectRange" val="550" /> <!-- FIXME: value unconfirmed -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment