Skip to content

Commit

Permalink
working on natural gift. Part of thework will be copied from my imple…
Browse files Browse the repository at this point in the history
…mentation of fling (see PR pagefaultgames#2200)
  • Loading branch information
AyushBarik committed Jun 17, 2024
1 parent 0e794fe commit c1d5d7e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/data/move.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6410,8 +6410,7 @@ export function initMoves() {
new AttackMove(Moves.BRINE, Type.WATER, MoveCategory.SPECIAL, 65, 100, 10, -1, 0, 4)
.attr(MovePowerMultiplierAttr, (user, target, move) => target.getHpRatio() < 0.5 ? 2 : 1),
new AttackMove(Moves.NATURAL_GIFT, Type.NORMAL, MoveCategory.PHYSICAL, -1, 100, 15, -1, 0, 4)
.makesContact(false)
.unimplemented(),
.makesContact(false),
new AttackMove(Moves.FEINT, Type.NORMAL, MoveCategory.PHYSICAL, 30, 100, 10, -1, 2, 4)
.attr(RemoveBattlerTagAttr, [ BattlerTagType.PROTECTED ])
.attr(RemoveArenaTagsAttr, [ ArenaTagType.QUICK_GUARD, ArenaTagType.WIDE_GUARD, ArenaTagType.MAT_BLOCK, ArenaTagType.CRAFTY_SHIELD ], false)
Expand Down

0 comments on commit c1d5d7e

Please sign in to comment.