Skip to content

Commit

Permalink
Move CAP moves to bottom of main move data table (smogon#10539)
Browse files Browse the repository at this point in the history
  • Loading branch information
Karthik99999 authored Sep 10, 2024
1 parent a0b5bcb commit 23e77e2
Showing 1 changed file with 43 additions and 40 deletions.
83 changes: 43 additions & 40 deletions data/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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",
},
};

0 comments on commit 23e77e2

Please sign in to comment.