From 08a4a2d7f82072d2aa9c9cae5db039b33e1d0aab Mon Sep 17 00:00:00 2001 From: Marek Sison Date: Thu, 2 May 2024 16:57:49 +0800 Subject: [PATCH] MINOR: beginning work on Stockpile, Spit Up, and Swallow --- src/data/move.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/data/move.ts b/src/data/move.ts index e1694ede8..490c07789 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -4508,6 +4508,7 @@ export function initMoves() { .soundBased() .target(MoveTarget.RANDOM_NEAR_ENEMY) .partial(), + // mareksison/redmaverick616 starts working here new SelfStatusMove(Moves.STOCKPILE, Type.NORMAL, -1, 20, -1, 0, 3) .unimplemented(), new AttackMove(Moves.SPIT_UP, Type.NORMAL, MoveCategory.SPECIAL, -1, 100, 10, -1, 0, 3) @@ -4515,6 +4516,7 @@ export function initMoves() { new SelfStatusMove(Moves.SWALLOW, Type.NORMAL, -1, 10, -1, 0, 3) .triageMove() .unimplemented(), + // mareksison/redmaverick616 ends working here new AttackMove(Moves.HEAT_WAVE, Type.FIRE, MoveCategory.SPECIAL, 95, 90, 10, 10, 0, 3) .attr(HealStatusEffectAttr, true, StatusEffect.FREEZE) .attr(StatusEffectAttr, StatusEffect.BURN)