Advertisement
Guest User

Excessive Force possible code

a guest
Jul 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. "excessiveforce": {
  2. desc: "This Pokemon's attacks with secondary abilities have their power increased by 50%.",
  3. shortDesc: "Moves with added effects have 1.5x power.",
  4. onModifyMove(move, pokemon) {
  5. if (move.secondaries) {
  6. delete move.secondaries;
  7. }
  8. },
  9. onBasePowerPriority: 8,
  10. onBasePower(basePower, attacker, defender, move) {
  11. if (move.secondaries) {
  12. return this.chainModify([0x15, 0x1000]);
  13. }
  14. },
  15. id: "excessiveforce",
  16. name: "Excessive Force",
  17. rating: 4,
  18. num: 873883,
  19. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement