Skip to content

Commit 23e77e2

Browse files
authored
Move CAP moves to bottom of main move data table (smogon#10539)
1 parent a0b5bcb commit 23e77e2

File tree

1 file changed

+43
-40
lines changed

1 file changed

+43
-40
lines changed

data/moves.ts

+43-40
Original file line numberDiff line numberDiff line change
@@ -13589,26 +13589,6 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = {
1358913589
zMove: {boost: {def: 1}},
1359013590
contestType: "Clever",
1359113591
},
13592-
paleowave: {
13593-
num: 0,
13594-
accuracy: 100,
13595-
basePower: 85,
13596-
category: "Special",
13597-
isNonstandard: "CAP",
13598-
name: "Paleo Wave",
13599-
pp: 15,
13600-
priority: 0,
13601-
flags: {protect: 1, mirror: 1},
13602-
secondary: {
13603-
chance: 20,
13604-
boosts: {
13605-
atk: -1,
13606-
},
13607-
},
13608-
target: "normal",
13609-
type: "Rock",
13610-
contestType: "Beautiful",
13611-
},
1361213592
paraboliccharge: {
1361313593
num: 570,
1361413594
accuracy: 100,
@@ -16715,26 +16695,6 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = {
1671516695
type: "Ghost",
1671616696
contestType: "Clever",
1671716697
},
16718-
shadowstrike: {
16719-
num: 0,
16720-
accuracy: 95,
16721-
basePower: 80,
16722-
category: "Physical",
16723-
isNonstandard: "CAP",
16724-
name: "Shadow Strike",
16725-
pp: 10,
16726-
priority: 0,
16727-
flags: {contact: 1, protect: 1, mirror: 1},
16728-
secondary: {
16729-
chance: 50,
16730-
boosts: {
16731-
def: -1,
16732-
},
16733-
},
16734-
target: "normal",
16735-
type: "Ghost",
16736-
contestType: "Clever",
16737-
},
1673816698
sharpen: {
1673916699
num: 159,
1674016700
accuracy: true,
@@ -22068,4 +22028,47 @@ export const Moves: import('../sim/dex-moves').MoveDataTable = {
2206822028
type: "Electric",
2206922029
contestType: "Cool",
2207022030
},
22031+
22032+
// CAP moves
22033+
22034+
paleowave: {
22035+
num: 0,
22036+
accuracy: 100,
22037+
basePower: 85,
22038+
category: "Special",
22039+
isNonstandard: "CAP",
22040+
name: "Paleo Wave",
22041+
pp: 15,
22042+
priority: 0,
22043+
flags: {protect: 1, mirror: 1},
22044+
secondary: {
22045+
chance: 20,
22046+
boosts: {
22047+
atk: -1,
22048+
},
22049+
},
22050+
target: "normal",
22051+
type: "Rock",
22052+
contestType: "Beautiful",
22053+
},
22054+
shadowstrike: {
22055+
num: 0,
22056+
accuracy: 95,
22057+
basePower: 80,
22058+
category: "Physical",
22059+
isNonstandard: "CAP",
22060+
name: "Shadow Strike",
22061+
pp: 10,
22062+
priority: 0,
22063+
flags: {contact: 1, protect: 1, mirror: 1},
22064+
secondary: {
22065+
chance: 50,
22066+
boosts: {
22067+
def: -1,
22068+
},
22069+
},
22070+
target: "normal",
22071+
type: "Ghost",
22072+
contestType: "Clever",
22073+
},
2207122074
};

0 commit comments

Comments
 (0)