mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-27 10:59:16 -05:00
44 lines
3.5 KiB
TypeScript
44 lines
3.5 KiB
TypeScript
export const Rulesets: {[k: string]: ModdedFormatData} = {
|
|
megadatamod: {
|
|
effectType: 'Rule',
|
|
name: 'Mega Data Mod',
|
|
desc: 'Gives data on stats, Ability and types when a Pokémon Mega Evolves or undergoes Ultra Burst.',
|
|
onSwitchIn(pokemon) {
|
|
if (pokemon.illusion) {
|
|
if (pokemon.illusion.species.forme.startsWith('Mega') || pokemon.illusion.species.forme.startsWith('Ultra')) {
|
|
this.add('-start', pokemon, 'typechange', pokemon.illusion.getTypes(true).join('/'), '[silent]');
|
|
}
|
|
} else {
|
|
if (pokemon.species.forme.startsWith('Mega') || pokemon.species.forme.startsWith('Ultra')) {
|
|
this.add('-start', pokemon, 'typechange', pokemon.getTypes(true).join('/'), '[silent]');
|
|
}
|
|
}
|
|
},
|
|
onDamagingHit(damage, target, source, move) {
|
|
if (target.hasAbility('illusion')) {
|
|
if (target.species.forme.startsWith('Mega') || target.species.forme.startsWith('Ultra')) {
|
|
this.add('-start', target, 'typechange', target.getTypes(true).join('/'), '[silent]');
|
|
} else {
|
|
const types = target.baseSpecies.types;
|
|
if (target.getTypes().join() === types.join()) {
|
|
this.add('-end', target, 'typechange', '[silent]');
|
|
}
|
|
}
|
|
}
|
|
},
|
|
onAfterMega(pokemon) {
|
|
this.add('-start', pokemon, 'typechange', pokemon.getTypes(true).join('/'), '[silent]');
|
|
const species = this.dex.species.get(pokemon.species.name);
|
|
const abilities = species.abilities;
|
|
const baseStats = species.baseStats;
|
|
const type = species.types[0];
|
|
if (species.types[1]) {
|
|
const type2 = species.types[1];
|
|
this.add(`raw|<ul class="utilichart"><li class="result"><span class="col pokemonnamecol" style="white-space: nowrap">` + species.name + `</span> <span class="col typecol"><img src="https://${Config.routes.client}/sprites/types/${type}.png" alt="${type}" height="14" width="32"><img src="https://${Config.routes.client}/sprites/types/${type2}.png" alt="${type2}" height="14" width="32"></span> <span style="float: left ; min-height: 26px"><span class="col abilitycol">` + abilities[0] + `</span><span class="col abilitycol"></span></span><span style="float: left ; min-height: 26px"><span class="col statcol"><em>HP</em><br>` + baseStats.hp + `</span> <span class="col statcol"><em>Atk</em><br>` + baseStats.atk + `</span> <span class="col statcol"><em>Def</em><br>` + baseStats.def + `</span> <span class="col statcol"><em>SpA</em><br>` + baseStats.spa + `</span> <span class="col statcol"><em>SpD</em><br>` + baseStats.spd + `</span> <span class="col statcol"><em>Spe</em><br>` + baseStats.spe + `</span> </span></li><li style="clear: both"></li></ul>`);
|
|
} else {
|
|
this.add(`raw|<ul class="utilichart"><li class="result"><span class="col pokemonnamecol" style="white-space: nowrap">` + species.name + `</span> <span class="col typecol"><img src="https://${Config.routes.client}/sprites/types/${type}.png" alt="${type}" height="14" width="32"></span> <span style="float: left ; min-height: 26px"><span class="col abilitycol">` + abilities[0] + `</span><span class="col abilitycol"></span></span><span style="float: left ; min-height: 26px"><span class="col statcol"><em>HP</em><br>` + baseStats.hp + `</span> <span class="col statcol"><em>Atk</em><br>` + baseStats.atk + `</span> <span class="col statcol"><em>Def</em><br>` + baseStats.def + `</span> <span class="col statcol"><em>SpA</em><br>` + baseStats.spa + `</span> <span class="col statcol"><em>SpD</em><br>` + baseStats.spd + `</span> <span class="col statcol"><em>Spe</em><br>` + baseStats.spe + `</span> </span></li><li style="clear: both"></li></ul>`);
|
|
}
|
|
},
|
|
},
|
|
};
|