Advertisement
CtelinAjira

Life Link: Target

Jul 4th, 2017
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <Help Description>
  2. Unit gets 50% of source's direct HP healing
  3. Source gets 50% of unit's direct HP healing
  4. </Help Description>
  5. <Custom Apply Effect>
  6. origin._linked.push(target);
  7. </Custom Apply Effect>
  8. <Custom React Effect>
  9. if (this.isHpEffect() && value < 0) {
  10. var heal = Math.ceil(value * 0.5);
  11. if (origin && origin.isBattleMember()) {
  12. origin.gainHp(-heal);
  13. origin.startDamagePopup();
  14. origin.clearResult();
  15. }
  16. }
  17. </Custom React Effect>
  18. <Custom Remove Effect>
  19. origin._linked.shift();
  20. </Custom Remove Effect>
  21. <Custom Leave Effect>
  22. origin._linked.shift();
  23. </Custom Leave Effect>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement