Skip to content

Commit

Permalink
Metro Tier shift, fix some gay things
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivaD173 committed Sep 8, 2024
1 parent bc59353 commit def4d4e
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 43 deletions.
22 changes: 11 additions & 11 deletions data/mods/gen9metronome/formats-data.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormatsDataTable = {
"clefairy": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"clefable": {
"isNonstandard": null,
Expand Down Expand Up @@ -61,7 +61,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
},
"golemalola": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"slowbro": {
"isNonstandard": null,
Expand Down Expand Up @@ -393,7 +393,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
},
"grimmsnarl": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"perrserker": {
"isNonstandard": null,
Expand Down Expand Up @@ -457,7 +457,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
},
"screamtail": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"ironhands": {
"isNonstandard": null,
Expand All @@ -473,15 +473,15 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
},
"hitmonlee": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"hitmonchan": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"magmar": {
"isNonstandard": null,
"tier": "NFE"
"tier": "UU"
},
"magmortar": {
"isNonstandard": null,
Expand All @@ -493,23 +493,23 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
},
"electivire": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"snubbull": {
"isNonstandard": null,
"tier": "LC"
},
"granbull": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"alcremie": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"smeargle": {
"isNonstandard": null,
"tier": "UU"
"tier": "RU"
},
"scrafty": {
"isNonstandard": null,
Expand Down
2 changes: 2 additions & 0 deletions data/mods/gen9vgcgay/abilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1104,6 +1104,8 @@ export const Abilities: import('../../../sim/dex-abilities').ModdedAbilityDataTa
if (move.flags['contact']) mod /= 2;
return this.chainModify(mod);
},
onTryBoost(boost, target, source, effect) {
},
},
lingeringaroma: {
inherit: true,
Expand Down
4 changes: 2 additions & 2 deletions data/mods/gen9vgcgay/formats-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2594,7 +2594,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
},
"arceusrock": {
"isNonstandard": null,
"tier": "OU"
"tier": "Uber"
},
"arceussteel": {
"isNonstandard": null,
Expand Down Expand Up @@ -5298,7 +5298,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
},
"terapagos": {
"isNonstandard": null,
"tier": "OU"
"tier": "Uber"
},
"terapagosterastal": {
"isNonstandard": null,
Expand Down
36 changes: 15 additions & 21 deletions data/mods/gen9vgcgay/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,15 @@ export const Items: import('../../../sim/dex-items').ModdedItemDataTable = {
this.add('-activate', pokemon, 'item: Lustrous Globe');
pokemon.formeChange('Palkia-Origin', this.effect, true);
},*/
onDamagePriority: 1,
onDamage(damage, target, source, effect) {
if (target.baseSpecies.baseSpecies !== 'Palkia' || target.transformed || !target.hp) return;
if (target.species.id === 'palkiaorigin' || target.hp > target.maxhp / 2) return;
this.add('-activate', target, 'item: Lustrous Globe');
target.formeChange('Palkia-Origin', this.effect, true);
onUpdate(pokemon) {
if (pokemon.baseSpecies.baseSpecies !== 'Palkia' || pokemon.transformed || !pokemon.hp) return;
if (pokemon.species.id === 'palkiaorigin' || pokemon.hp > pokemon.maxhp / 2) return;
this.add('-activate', pokemon, 'item: Lustrous Globe');
pokemon.formeChange('Palkia-Origin', this.effect, true);
},
desc: "If the holder is Palkia, transforms into Origin forme at 1/2 HP.",
shortDesc: "Palkia: transforms at 1/2 HP.",
itemUser: ["Palkia-Origin"],
onBasePowerPriority: 15,
onBasePower() {},
forcedForme: "",
},
Expand All @@ -62,17 +60,15 @@ export const Items: import('../../../sim/dex-items').ModdedItemDataTable = {
this.add('-activate', pokemon, 'item: Adamant Crystal');
pokemon.formeChange('Dialga-Origin', this.effect, true);
},*/
onDamagePriority: 1,
onDamage(damage, target, source, effect) {
if (target.baseSpecies.baseSpecies !== 'Dialga' || target.transformed || !target.hp) return;
if (target.species.id === 'dialgaorigin' || target.hp > target.maxhp / 2) return;
this.add('-activate', target, 'item: Adamant Crystal');
target.formeChange('Dialga-Origin', this.effect, true);
onUpdate(pokemon) {
if (pokemon.baseSpecies.baseSpecies !== 'Dialga' || pokemon.transformed || !pokemon.hp) return;
if (pokemon.species.id === 'dialgaorigin' || pokemon.hp > pokemon.maxhp / 2) return;
this.add('-activate', pokemon, 'item: Adamant Crystal');
pokemon.formeChange('Dialga-Origin', this.effect, true);
},
desc: "If the holder is Dialga, transforms into Origin forme at 1/2 HP.",
shortDesc: "Dialga: transforms at 1/2 HP.",
itemUser: ["Dialga"],
onBasePowerPriority: 15,
onBasePower() {},
forcedForme: "",
},
Expand All @@ -85,17 +81,15 @@ export const Items: import('../../../sim/dex-items').ModdedItemDataTable = {
this.add('-activate', pokemon, 'item: Griseous Core');
pokemon.formeChange('Giratina-Origin', this.effect, true);
},*/
onDamagePriority: 1,
onDamage(damage, target, source, effect) {
if (target.baseSpecies.baseSpecies !== 'Giratina' || target.transformed || !target.hp) return;
if (target.species.id === 'giratinaorigin' || target.hp > target.maxhp / 2) return;
this.add('-activate', target, 'item: Griseous Core');
target.formeChange('Giratina-Origin', this.effect, true);
onUpdate(pokemon) {
if (pokemon.baseSpecies.baseSpecies !== 'Giratina' || pokemon.transformed || !pokemon.hp) return;
if (pokemon.species.id === 'giratinaorigin' || pokemon.hp > pokemon.maxhp / 2) return;
this.add('-activate', pokemon, 'item: Griseous Core');
pokemon.formeChange('Giratina-Origin', this.effect, true);
},
desc: "If the holder is Giratina, transforms into Origin forme at 1/2 HP.",
shortDesc: "Giratina: transforms at 1/2 HP.",
itemUser: ["Giratina"],
onBasePowerPriority: 15,
onBasePower() {},
forcedForme: "",
},
Expand Down
11 changes: 7 additions & 4 deletions data/mods/gen9vgcgay/learnsets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59617,6 +59617,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab
],
"xscissor": [
"9M"
],
"bodypress": [
"9M"
]
}
},
Expand Down Expand Up @@ -108721,6 +108724,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab
],
"terablast": [
"9M"
],
"playrough": [
"9M"
]
}
},
Expand Down Expand Up @@ -149365,10 +149371,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab
"teleport": [
"9M"
],
"hiddenpower": [
"9M"
],
"terablast": [
"storedpower": [
"9M"
]
}
Expand Down
19 changes: 19 additions & 0 deletions data/mods/gen9vgcgay/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,16 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
"basePower": 250
},
// Regular Moves
rocksmash: {
inherit: true,
shortDesc: "100% chance to lower the target's Defense by 1.",
secondary: {
chance: 100,
boosts: {
def: -1,
},
},
},
round: {
inherit: true,
basePower: 70,
Expand Down Expand Up @@ -1716,6 +1726,11 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
isNonstandard: null,
basePower: 180,
},
spectralthief: {
inherit: true,
isNonstandard: null,
basePower: 100,
},
// Origin forme changes
roaroftime: {
inherit: true,
Expand Down Expand Up @@ -2267,6 +2282,10 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
inherit: true,
isNonstandard: null,
},
vcreate: {
inherit: true,
isNonstandard: null,
},
// Move Deletions
slam: {
inherit: true,
Expand Down
9 changes: 4 additions & 5 deletions data/mods/gen9vgcgay/pokedex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4124,7 +4124,6 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable
},
"abilities": {
"0": "Intimidate",
"1": "Hustle",
"H": "Unnerve"
},
"inherit": true
Expand Down Expand Up @@ -4902,7 +4901,7 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable
"spe": 45
},
"abilities": {
"0": "Singularity",
"0": "Pressure",
"1": "Iron Fist",
"H": "Frisk"
},
Expand Down Expand Up @@ -8697,7 +8696,7 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable
"abilities": {
"0": "Beast Boost",
"1": "Lifetaker",
"H": "Singularity"
"H": "Dragon's Maw"
},
"inherit": true
},
Expand Down Expand Up @@ -12889,7 +12888,7 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable
"spe": 50
},
"abilities": {
"0": "As One Glastrier"
"0": "As One (Glastrier)"
},
"inherit": true
},
Expand All @@ -12907,7 +12906,7 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable
"spe": 150
},
"abilities": {
"0": "As One Spectrier"
"0": "As One (Spectrier)"
},
"inherit": true
},
Expand Down

0 comments on commit def4d4e

Please sign in to comment.