Skip to content

Commit

Permalink
Mark various moves as unobtainable in Gen 9
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisXV committed Dec 17, 2023
1 parent 5eb36f4 commit 756a3f4
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
21 changes: 21 additions & 0 deletions data/mods/gen8/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ export const Moves: {[k: string]: ModdedMoveData} = {
inherit: true,
isNonstandard: null,
},
burnup: {
inherit: true,
isNonstandard: null,
},
celebrate: {
inherit: true,
flags: {nosleeptalk: 1, noassist: 1, failcopycat: 1, failinstruct: 1},
Expand Down Expand Up @@ -104,6 +108,10 @@ export const Moves: {[k: string]: ModdedMoveData} = {
inherit: true,
isNonstandard: null,
},
corrosivegas: {
inherit: true,
isNonstandard: null,
},
craftyshield: {
inherit: true,
isNonstandard: null,
Expand All @@ -117,6 +125,10 @@ export const Moves: {[k: string]: ModdedMoveData} = {
},
target: "randomNormal",
},
cut: {
inherit: true,
isNonstandard: null,
},
darkvoid: {
inherit: true,
isNonstandard: "Past",
Expand Down Expand Up @@ -212,8 +224,13 @@ export const Moves: {[k: string]: ModdedMoveData} = {
inherit: true,
isNonstandard: "Past",
},
holdback: {
inherit: true,
isNonstandard: null,
},
holdhands: {
inherit: true,
isNonstandard: null,
flags: {bypasssub: 1, nosleeptalk: 1, noassist: 1, failcopycat: 1, failinstruct: 1},
},
hyperspacefury: {
Expand Down Expand Up @@ -540,6 +557,10 @@ export const Moves: {[k: string]: ModdedMoveData} = {
inherit: true,
isNonstandard: null,
},
vcreate: {
inherit: true,
isNonstandard: null,
},
venomdrench: {
inherit: true,
isNonstandard: null,
Expand Down
6 changes: 6 additions & 0 deletions data/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2131,6 +2131,7 @@ export const Moves: {[moveid: string]: MoveData} = {
accuracy: 100,
basePower: 130,
category: "Special",
isNonstandard: "Unobtainable",
name: "Burn Up",
pp: 5,
priority: 0,
Expand Down Expand Up @@ -2971,6 +2972,7 @@ export const Moves: {[moveid: string]: MoveData} = {
accuracy: 100,
basePower: 0,
category: "Status",
isNonstandard: "Unobtainable",
name: "Corrosive Gas",
pp: 40,
priority: 0,
Expand Down Expand Up @@ -3382,6 +3384,7 @@ export const Moves: {[moveid: string]: MoveData} = {
accuracy: 95,
basePower: 50,
category: "Physical",
isNonstandard: "Unobtainable",
name: "Cut",
pp: 30,
priority: 0,
Expand Down Expand Up @@ -9179,6 +9182,7 @@ export const Moves: {[moveid: string]: MoveData} = {
accuracy: 100,
basePower: 40,
category: "Physical",
isNonstandard: "Unobtainable",
name: "Hold Back",
pp: 40,
priority: 0,
Expand All @@ -9197,6 +9201,7 @@ export const Moves: {[moveid: string]: MoveData} = {
accuracy: true,
basePower: 0,
category: "Status",
isNonstandard: "Unobtainable",
name: "Hold Hands",
pp: 40,
priority: 0,
Expand Down Expand Up @@ -21061,6 +21066,7 @@ export const Moves: {[moveid: string]: MoveData} = {
accuracy: 95,
basePower: 180,
category: "Physical",
isNonstandard: "Unobtainable",
name: "V-create",
pp: 5,
priority: 0,
Expand Down

0 comments on commit 756a3f4

Please sign in to comment.