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 Jul 29, 2024
1 parent 2d1fe13 commit e73014d
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 @@ -6906,8 +6906,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 e73014d

Please sign in to comment.