mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-28 11:46:55 -05:00
* Update formats.ts * . * Delete data/mods/gen3hoenngaiden directory * Update rulesets.ts * Delete data/mods/vaporemons/sprites directory * Update abilities.ts * Update items.ts * Update moves.ts * Update items.ts * Update formats.ts * Update moves.ts * Update rulesets.ts * Update abilities.ts * Update abilities.ts * Update abilities.ts * Update formats-data.ts * Update items.ts * Update moves.ts * Update abilities.ts * Update items.ts * Update moves.ts * Update moves.ts * Update rulesets.ts * Update scripts.ts * Update formats-data.ts * Update formats-data.ts * Update abilities.ts * Update items.ts * Update items.ts * Update items.ts * Update moves.ts * Update moves.ts * Update moves.ts * Update items.ts * Update moves.ts * Update formats-data.ts * Update formats-data.ts * Update formats-data.ts * Update formats-data.ts * Update items.ts * Update abilities.ts * Update abilities.ts * Update abilities.ts * Update moves.ts * Update abilities.ts * Update abilities.ts * Update formats.ts * Update rulesets.ts * Update moves.ts * Update formats.ts * Update moves.ts * Update moves.ts * Update moves.ts * Update moves.ts * adding hg back to hopefully remove that one error * Update formats.ts * Update rulesets.ts * Update rulesets.ts * Update formats.ts * Update rulesets.ts * Update rulesets.ts * Update rulesets.ts * Update abilities.ts * Update scripts.ts * Update scripts.ts * Update scripts.ts * Update scripts.ts * Update moves.ts * Update moves.ts * Update rulesets.ts * Update rulesets.ts * Update formats.ts * Update formats.ts * Update formats-data.ts * Update formats-data.ts * . * Update formats.ts * Update scripts.ts * Update abilities.ts * Update scripts.ts * Update abilities.ts * Update abilities.ts * Update scripts.ts * Delete data/mods/gen3hoenngaiden directory * Delete data/mods/gen8joltemons directory * Update data/mods/moderngen1/scripts.ts Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com> * Update config/formats.ts Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com> * Update config/formats.ts Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com> * Adding HG and JolteMons back to remove a build error * Delete data/mods/gen3hoenngaiden directory * Delete data/mods/gen8joltemons directory * Update package.json * Update package.json * Update package.json --------- Co-authored-by: Kris Johnson <11083252+KrisXV@users.noreply.github.com>
41 lines
1.7 KiB
TypeScript
41 lines
1.7 KiB
TypeScript
export const Rulesets: {[k: string]: ModdedFormatData} = {
|
|
partialtrappingclause: {
|
|
effectType: 'ValidatorRule',
|
|
name: 'Partial Trapping Clause',
|
|
desc: "Bans moves that partially trap the opponent",
|
|
banlist: ['Infestation', 'Magma Storm', 'Sand Tomb', 'Snap Trap', 'Thunder Cage', 'Whirlpool', 'Wrap', 'Bind', 'Fire Spin', 'Clamp'],
|
|
onBegin() {
|
|
this.add('rule', 'Partial Trapping Clause: Partial Trapping moves are banned');
|
|
},
|
|
},
|
|
protectclause: {
|
|
effectType: 'ValidatorRule',
|
|
name: 'Protect Clause',
|
|
desc: "Bans Protect and Detect",
|
|
banlist: ['Protect', 'Detect'],
|
|
onBegin() {
|
|
this.add('rule', 'Protect Clause: Widely-distributed protecting moves are banned');
|
|
},
|
|
},
|
|
fieldeffectclause: {
|
|
effectType: 'ValidatorRule',
|
|
name: 'Field Effect Clause',
|
|
desc: "Bans moves that set a field effect",
|
|
banlist: ['Spikes', 'Toxic Spikes', 'Stealth Rock', 'Sticky Web', 'Stone Axe', 'Ceaseless Edge', 'Wonder Room', 'Trick Room', 'Magic Room', 'Lucky Chant', 'Tailwind', 'Safeguard', 'Gravity'],
|
|
onBegin() {
|
|
this.add('rule', 'Field Effect Clause: Field Effects are banned');
|
|
},
|
|
},
|
|
mg1mod: {
|
|
effectType: 'Rule',
|
|
name: 'MG1 Mod',
|
|
desc: 'At the start of a battle, gives each player a link to the Modern Gen 1 thread so they can use it to get information about new additions to the metagame.',
|
|
onBegin() {
|
|
this.add('-message', `Welcome to Modern Gen 1!`);
|
|
this.add('-message', `This is essentially Gen 9 National Dex OU but played with Gen 1 mechanics!`);
|
|
this.add('-message', `You can find our thread and metagame resources here:`);
|
|
this.add('-message', `https://www.smogon.com/forums/threads/gen-9-modern-gen-1.3711533/`);
|
|
},
|
|
},
|
|
};
|