"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var rulesets_exports = {}; __export(rulesets_exports, { Rulesets: () => Rulesets }); module.exports = __toCommonJS(rulesets_exports); const Rulesets = { teampreview: { effectType: "Rule", name: "Team Preview", desc: "Allows each player to see the Pokémon on their opponent's team before they choose their lead Pokémon", onBegin() { if (this.ruleTable.has(`teratypepreview`)) { this.add("rule", "Tera Type Preview: Tera Types are shown at Team Preview"); } }, onTeamPreview() { this.add("clearpoke"); for (const pokemon of this.getAllPokemon()) { const details = pokemon.details.replace(", shiny", "").replace(/(Greninja|Gourgeist|Pumpkaboo|Xerneas|Silvally|Urshifu|Dudunsparce|Revavroom)(-[a-zA-Z?-]+)?/g, "$1-*").replace(/(Zacian|Zamazenta)(?!-Crowned)/g, "$1-*"); this.add("poke", pokemon.side.id, details, ""); } this.makeRequest("teampreview"); if (this.ruleTable.has(`teratypepreview`)) { for (const side of this.sides) { let buf = ``; for (const pokemon of side.pokemon) { buf += buf ? ` / ` : `raw|${side.name}'s Tera Types:
`; buf += ``; } this.add(`${buf}`); } } } }, vaporemonsmod: { effectType: "Rule", name: "VaporeMons Mod", desc: "At the start of a battle, gives each player a link to the VaporeMons thread so they can use it to get information about new additions to the metagame.", onBegin() { this.add("-message", `Welcome to VaporeMons!`); this.add("-message", `This is a [Gen 9] OU-based format where a bunch of new moves, items, abilities, and non-stat adjustments to Pokemon were added to the game!`); this.add("-message", `You can find our thread and metagame resources here:`); this.add("-message", `https://www.smogon.com/forums/threads/vaporemons-slate-1-discussion-phase.3722917/`); } } }; //# sourceMappingURL=rulesets.js.map