Skip to content

Commit

Permalink
Post trip pride changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivaD173 committed Oct 23, 2024
1 parent 09dbb50 commit 0e1326d
Show file tree
Hide file tree
Showing 10 changed files with 410 additions and 102 deletions.
10 changes: 10 additions & 0 deletions data/abilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6655,4 +6655,14 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = {
rating: 4,
num: -62,
},
loophole: {
onModifyMove(move) {
move.infiltrates = true;
delete move.flags['protect'];
},
flags: {},
name: "Loophole",
rating: 2.5,
num: 151,
},
};
4 changes: 2 additions & 2 deletions data/formats-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,7 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable =
typhlosionhisui: {
tier: "NU",
doublesTier: "(DUU)",
natDexTier: "NU",
natDexTier: "PU",
},
totodile: {
tier: "LC",
Expand Down Expand Up @@ -3531,7 +3531,7 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable =
druddigon: {
isNonstandard: "Past",
tier: "Illegal",
natDexTier: "PU",
natDexTier: "ZU",
},
golett: {
tier: "LC",
Expand Down
4 changes: 4 additions & 0 deletions data/mods/gen9vgcgay/abilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1527,4 +1527,8 @@ export const Abilities: import('../../../sim/dex-abilities').ModdedAbilityDataTa
inherit: true,
isNonstandard: null,
},
loophole: {
inherit: true,
isNonstandard: null,
},
};
4 changes: 2 additions & 2 deletions data/mods/gen9vgcgay/formats-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2125,8 +2125,8 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
"tier": "OU"
},
"cranidos": {
"isNonstandard": "Past",
"tier": "Illegal"
"isNonstandard": null,
"tier": "OU"
},
"rampardos": {
"isNonstandard": null,
Expand Down
9 changes: 9 additions & 0 deletions data/mods/gen9vgcgay/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ export const Items: import('../../../sim/dex-items').ModdedItemDataTable = {
desc: "On switch-in, raises holder's Attack by 1 and confuses it. Single use.",
shortDesc: "On switch-in, raises holder's Attack by 1 and confuses it. Single use.",
boosts: {atk: 1},
onStart() {
this.effectState.started = true;
},
onUpdate(pokemon) {
if (!this.effectState.started) return;
if (pokemon.useItem()) {
pokemon.addVolatile('confusion');
}
},
},
shellbell: {
inherit: true,
Expand Down
Loading

0 comments on commit 0e1326d

Please sign in to comment.