From 23e77e2e846c050fedf08f9f77705ea2bddd44c6 Mon Sep 17 00:00:00 2001 From: Karthik Bandagonda <32044378+Karthik99999@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:28:31 -0700 Subject: [PATCH] Move CAP moves to bottom of main move data table (#10539) --- data/moves.ts | 83 ++++++++++++++++++++++++++------------------------- 1 file changed, 43 insertions(+), 40 deletions(-) diff --git a/data/moves.ts b/data/moves.ts index 34aa1732e4cd..64e608c6486d 100644 --- a/data/moves.ts +++ b/data/moves.ts @@ -13589,26 +13589,6 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { zMove: {boost: {def: 1}}, contestType: "Clever", }, - paleowave: { - num: 0, - accuracy: 100, - basePower: 85, - category: "Special", - isNonstandard: "CAP", - name: "Paleo Wave", - pp: 15, - priority: 0, - flags: {protect: 1, mirror: 1}, - secondary: { - chance: 20, - boosts: { - atk: -1, - }, - }, - target: "normal", - type: "Rock", - contestType: "Beautiful", - }, paraboliccharge: { num: 570, accuracy: 100, @@ -16715,26 +16695,6 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { type: "Ghost", contestType: "Clever", }, - shadowstrike: { - num: 0, - accuracy: 95, - basePower: 80, - category: "Physical", - isNonstandard: "CAP", - name: "Shadow Strike", - pp: 10, - priority: 0, - flags: {contact: 1, protect: 1, mirror: 1}, - secondary: { - chance: 50, - boosts: { - def: -1, - }, - }, - target: "normal", - type: "Ghost", - contestType: "Clever", - }, sharpen: { num: 159, accuracy: true, @@ -22068,4 +22028,47 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = { type: "Electric", contestType: "Cool", }, + + // CAP moves + + paleowave: { + num: 0, + accuracy: 100, + basePower: 85, + category: "Special", + isNonstandard: "CAP", + name: "Paleo Wave", + pp: 15, + priority: 0, + flags: {protect: 1, mirror: 1}, + secondary: { + chance: 20, + boosts: { + atk: -1, + }, + }, + target: "normal", + type: "Rock", + contestType: "Beautiful", + }, + shadowstrike: { + num: 0, + accuracy: 95, + basePower: 80, + category: "Physical", + isNonstandard: "CAP", + name: "Shadow Strike", + pp: 10, + priority: 0, + flags: {contact: 1, protect: 1, mirror: 1}, + secondary: { + chance: 50, + boosts: { + def: -1, + }, + }, + target: "normal", + type: "Ghost", + contestType: "Clever", + }, };