Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add New Pet Mod of the Season (Bad 'n Boosted) #10947

Merged
merged 8 commits into from
Mar 9, 2025
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 19 additions & 17 deletions config/formats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,25 +347,27 @@ export const Formats: import('../sim/dex-formats').FormatList = [
section: "Pet Mods",
},
{
name: "[Gen 9] Little Colosseum LC",
desc: `A Little Cup metagame that aims to buff weaker Pokemon and nerf LC Ubers to create a more diverse metagame.`,
mod: 'littlecolosseum',
searchShow: false,
ruleset: ['Little Cup', 'Standard'],
banlist: [
'Aipom', 'Basculin-White-Striped', 'Diglett-Base', 'Dunsparce', 'Duraludon', 'Flittle', 'Girafarig', 'Gligar',
'Meditite', 'Misdreavus', 'Murkrow', 'Porygon', 'Qwilfish-Hisui', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Sneasel-Hisui',
'Snivy', 'Stantler', 'Vulpix', 'Vulpix-Alola', 'Yanma', 'Moody', 'Baton Pass', 'Sticky Web',
],
name: "[Gen 9] Bad 'n Boosted",
desc: `A Gen 9 Ubers solomod where all base stats of 70 and lower are doubled.`,
ruleset: ['Standard', 'Bad \'n Boosted Mod'],
banlist: ['AG', 'Cyclizar', 'Espathra', 'Polteageist', 'Huge Power', 'Moody', 'Pure Power', 'Shadow Tag', 'Eviolite', 'King\'s Rock', 'Razor Fang', 'Baton Pass', 'Last Respects'],
onBegin() {
this.add('-message', `Welcome to Little Colosseum!`);
this.add('-message', `This is a Generation 9 LC-based Pet Mod where multiple Pokemon have been reimagined in order to fit the LC metagame.`);
this.add('-message', `You can find our thread and metagame resources here:`);
this.add('-message', `https://www.smogon.com/forums/threads/3749020/`);
this.add('-message', `Welcome to Bad 'n Boosted!`);
this.add('-message', `This is a Generation 9 Pet Mod where Pokemon's base stats of 70 or lower get doubled!`);
this.add('-message', `You can join our Discord now:`);
this.add('-message', `https://discord.gg/vYdSwRreNd`);
},
onSwitchIn(pokemon) {
this.add('-start', pokemon, 'typechange', (pokemon.illusion || pokemon).getTypes(true).join('/'), '[silent]');
pokemon.apparentType = pokemon.getTypes(true).join('/');
onModifySpeciesPriority: 2,
onModifySpecies(species) {
const newSpecies = this.dex.deepClone(species);
newSpecies.bst = 0;
for (const stat in newSpecies.baseStats) {
if (newSpecies.baseStats[stat] <= 70) {
newSpecies.baseStats[stat] = this.clampIntRange(newSpecies.baseStats[stat] * 2, 1, 255);
newSpecies.bst += newSpecies.baseStats[stat];
}
}
return newSpecies;
},
},
{
Expand Down
195 changes: 0 additions & 195 deletions data/mods/littlecolosseum/abilities.ts

This file was deleted.

88 changes: 0 additions & 88 deletions data/mods/littlecolosseum/moves.ts

This file was deleted.

Loading