/** * Other Metagames chat plugin * Lets users see elements of Pokemon in various Other Metagames. * Originally by Spandan. * @author Kris */ import {Utils} from '../../lib'; interface StoneDeltas { baseStats: {[stat in StatID]: number}; bst: number; weighthg: number; type?: string; } type TierShiftTiers = 'UU' | 'RUBL' | 'RU' | 'NUBL' | 'NU' | 'PUBL' | 'PU' | 'NFE' | 'LC'; function getMegaStone(stone: string, mod = 'gen8'): Item | null { let dex = Dex; if (mod && toID(mod) in Dex.dexes) dex = Dex.mod(toID(mod)); const item = dex.items.get(stone); if (!item.exists) { if (toID(stone) === 'dragonascent') { const move = dex.moves.get(stone); return { id: move.id, name: move.name, fullname: move.name, megaEvolves: 'Rayquaza', megaStone: 'Rayquaza-Mega', exists: true, // Adding extra values to appease typescript gen: 6, num: -1, effectType: 'Item', sourceEffect: '', } as Item; } else { return null; } } if (!item.megaStone && !item.onPrimal) return null; return item; } export const commands: Chat.ChatCommands = { om: 'othermetas', othermetas(target, room, user) { target = toID(target); const omLink = `- Other Metagames Forum
`; if (!target) { this.runBroadcast(); return this.sendReplyBox(omLink); } if (target === 'all') { this.runBroadcast(); if (this.broadcasting) { throw new Chat.ErrorMessage(`"!om all" is too spammy to broadcast.`); } // Display OMotM formats, with forum thread links as caption this.parse(`/formathelp omofthemonth`); // Display the rest of OM formats, with OM hub/index forum links as caption this.parse(`/formathelp othermetagames`); return this.sendReply(`|raw|
${omLink}
`); } if (target === 'month') this.target = 'omofthemonth'; this.run('formathelp'); }, othermetashelp: [ `/om - Provides links to information on the Other Metagames.`, `!om - Show everyone that information. Requires: + % @ # &`, ], mnm: 'mixandmega', mixandmega(target, room, user) { if (!toID(target) || !target.includes('@')) return this.parse('/help mixandmega'); this.runBroadcast(); let dex = Dex; const sep = target.split('@'); const stoneName = sep.slice(1).join('@').trim().split(','); const mod = stoneName[1]; if (mod) { if (toID(mod) in Dex.dexes) { dex = Dex.mod(toID(mod)); } else { throw new Chat.ErrorMessage(`A mod by the name of '${mod.trim()}' does not exist.`); } if (dex === Dex.dexes['ssb']) { throw new Chat.ErrorMessage(`The SSB mod supports custom elements for Mega Stones that have the capability of crashing the server.`); } } const stone = getMegaStone(stoneName[0], mod); const species = dex.species.get(sep[0]); if (!stone || (dex.gen >= 8 && ['redorb', 'blueorb'].includes(stone.id))) { throw new Chat.ErrorMessage(`Error: Mega Stone not found.`); } if (!species.exists) throw new Chat.ErrorMessage(`Error: Pok\u00e9mon not found.`); let baseSpecies = dex.species.get(stone.megaEvolves); let megaSpecies = dex.species.get(stone.megaStone); if (stone.id === 'redorb') { // Orbs do not have 'Item.megaStone' or 'Item.megaEvolves' properties. megaSpecies = dex.species.get("Groudon-Primal"); baseSpecies = dex.species.get("Groudon"); } else if (stone.id === 'blueorb') { megaSpecies = dex.species.get("Kyogre-Primal"); baseSpecies = dex.species.get("Kyogre"); } const deltas: StoneDeltas = { baseStats: Object.create(null), weighthg: megaSpecies.weighthg - baseSpecies.weighthg, bst: megaSpecies.bst - baseSpecies.bst, }; let statId: StatID; for (statId in megaSpecies.baseStats) { deltas.baseStats[statId] = megaSpecies.baseStats[statId] - baseSpecies.baseStats[statId]; } if (megaSpecies.types.length > baseSpecies.types.length) { deltas.type = megaSpecies.types[1]; } else if (megaSpecies.types.length < baseSpecies.types.length) { deltas.type = dex.gen >= 8 ? 'mono' : megaSpecies.types[0]; } else if (megaSpecies.types[1] !== baseSpecies.types[1]) { deltas.type = megaSpecies.types[1]; } const mixedSpecies = Utils.deepClone(species); mixedSpecies.abilities = Utils.deepClone(megaSpecies.abilities); if (mixedSpecies.types[0] === deltas.type) { // Add any type gains mixedSpecies.types = [deltas.type]; } else if (deltas.type === 'mono') { mixedSpecies.types = [mixedSpecies.types[0]]; } else if (deltas.type) { mixedSpecies.types = [mixedSpecies.types[0], deltas.type]; } let statName: StatID; mixedSpecies.bst = 0; for (statName in species.baseStats) { // Add the changed stats and weight mixedSpecies.baseStats[statName] = Utils.clampIntRange( mixedSpecies.baseStats[statName] + deltas.baseStats[statName], 1, 255 ); mixedSpecies.bst += mixedSpecies.baseStats[statName]; } mixedSpecies.weighthg = Math.max(1, species.weighthg + deltas.weighthg); mixedSpecies.tier = "MnM"; let weighthit = 20; if (mixedSpecies.weighthg >= 2000) { weighthit = 120; } else if (mixedSpecies.weighthg >= 1000) { weighthit = 100; } else if (mixedSpecies.weighthg >= 500) { weighthit = 80; } else if (mixedSpecies.weighthg >= 250) { weighthit = 60; } else if (mixedSpecies.weighthg >= 100) { weighthit = 40; } const details: {[k: string]: string} = { "Dex#": '' + mixedSpecies.num, Gen: '' + mixedSpecies.gen, Height: mixedSpecies.heightm + " m", Weight: mixedSpecies.weighthg / 10 + " kg (" + weighthit + " BP)", "Dex Colour": mixedSpecies.color, }; if (mixedSpecies.eggGroups) details["Egg Group(s)"] = mixedSpecies.eggGroups.join(", "); details['Does Not Evolve'] = ""; this.sendReply(`|raw|${Chat.getDataPokemonHTML(mixedSpecies)}`); this.sendReply(`|raw|` + Object.entries(details).map(([detail, value]) => ( value === '' ? detail : `${detail}: ${value}` )).join(" |  ") + ``); }, mixandmegahelp: [ `/mnm @ [, generation] - Shows the Mix and Mega evolved Pok\u00e9mon's type and stats.`, ], orb: 'stone', megastone: 'stone', stone(target) { const sep = target.split(','); let dex = Dex; if (sep[1]) { if (toID(sep[1]) in Dex.dexes) { dex = Dex.mod(toID(sep[1])); } else { throw new Chat.ErrorMessage(`A mod by the name of '${sep[1].trim()}' does not exist.`); } if (dex === Dex.dexes['ssb']) { throw new Chat.ErrorMessage(`The SSB mod supports custom elements for Mega Stones that have the capability of crashing the server.`); } } const targetid = toID(sep[0]); if (!targetid) return this.parse('/help stone'); this.runBroadcast(); const stone = getMegaStone(targetid, sep[1]); if (stone && dex.gen >= 8 && ['redorb', 'blueorb'].includes(stone.id)) { throw new Chat.ErrorMessage("The Orbs do not exist in Gen 8 and later."); } const stones = []; if (!stone) { const species = dex.species.get(targetid.replace(/(?:mega[xy]?|primal)$/, '')); if (!species.exists) throw new Chat.ErrorMessage(`Error: Mega Stone not found.`); if (!species.otherFormes) throw new Chat.ErrorMessage(`Error: Mega Evolution not found.`); for (const poke of species.otherFormes) { if (!/(?:-Primal|-Mega(?:-[XY])?)$/.test(poke)) continue; const megaPoke = dex.species.get(poke); const flag = megaPoke.requiredMove === 'Dragon Ascent' ? megaPoke.requiredMove : megaPoke.requiredItem; if (/mega[xy]$/.test(targetid) && toID(megaPoke.name) !== toID(dex.species.get(targetid))) continue; if (!flag) continue; stones.push(getMegaStone(flag, sep[1])); } if (!stones.length) throw new Chat.ErrorMessage(`Error: Mega Evolution not found.`); } const toDisplay = (stones.length ? stones : [stone]); for (const aStone of toDisplay) { if (!aStone) return; let baseSpecies = dex.species.get(aStone.megaEvolves); let megaSpecies = dex.species.get(aStone.megaStone); if (dex.gen >= 8 && ['redorb', 'blueorb'].includes(aStone.id)) { throw new Chat.ErrorMessage("The Orbs do not exist in Gen 8 and later."); } if (aStone.id === 'redorb') { // Orbs do not have 'Item.megaStone' or 'Item.megaEvolves' properties. megaSpecies = dex.species.get("Groudon-Primal"); baseSpecies = dex.species.get("Groudon"); } else if (aStone.id === 'blueorb') { megaSpecies = dex.species.get("Kyogre-Primal"); baseSpecies = dex.species.get("Kyogre"); } const deltas: StoneDeltas = { baseStats: Object.create(null), weighthg: megaSpecies.weighthg - baseSpecies.weighthg, bst: megaSpecies.bst - baseSpecies.bst, }; let statId: StatID; for (statId in megaSpecies.baseStats) { deltas.baseStats[statId] = megaSpecies.baseStats[statId] - baseSpecies.baseStats[statId]; } if (megaSpecies.types.length > baseSpecies.types.length) { deltas.type = megaSpecies.types[1]; } else if (megaSpecies.types.length < baseSpecies.types.length) { deltas.type = dex.gen >= 8 ? 'mono' : megaSpecies.types[0]; } else if (megaSpecies.types[1] !== baseSpecies.types[1]) { deltas.type = megaSpecies.types[1]; } const details = { Gen: aStone.gen, Weight: (deltas.weighthg < 0 ? "" : "+") + deltas.weighthg / 10 + " kg", }; let tier; if (['redorb', 'blueorb'].includes(aStone.id)) { tier = "Orb"; } else if (aStone.name === "Dragon Ascent") { tier = "Move"; } else { tier = "Stone"; } let buf = `
  • `; buf += `${tier} `; if (aStone.name === "Dragon Ascent") { buf += ``; } else { buf += ` `; } if (aStone.name === "Dragon Ascent") { buf += `Dragon Ascent `; } else { buf += `${aStone.name} `; } if (deltas.type && deltas.type !== 'mono') { buf += `${deltas.type} `; } else { buf += ``; } buf += ``; buf += `${megaSpecies.abilities['0']}`; buf += ``; buf += ``; buf += ``; buf += `HP
    0
    `; buf += `Atk
    ${deltas.baseStats.atk}
    `; buf += `Def
    ${deltas.baseStats.def}
    `; buf += `SpA
    ${deltas.baseStats.spa}
    `; buf += `SpD
    ${deltas.baseStats.spd}
    `; buf += `Spe
    ${deltas.baseStats.spe}
    `; buf += `BST
    ${deltas.bst}
    `; buf += `
    `; buf += `
  • `; this.sendReply(`|raw|
      ${buf}
    `); this.sendReply(`|raw|Gen: ${details["Gen"]} |  Weight: ${details["Weight"]}`); } }, stonehelp: [`/stone [, generation] - Shows the changes that a mega stone/orb applies to a Pok\u00e9mon.`], 350: '350cup', '350cup'(target, room, user) { const args = target.split(','); if (!toID(args[0])) return this.parse('/help 350cup'); this.runBroadcast(); let dex = Dex; if (args[1] && toID(args[1]) in Dex.dexes) { dex = Dex.dexes[toID(args[1])]; } else if (room?.battle) { const format = Dex.formats.get(room.battle.format); dex = Dex.mod(format.mod); } const species = Utils.deepClone(dex.species.get(args[0])); if (!species.exists || species.gen > dex.gen) { const monName = species.gen > dex.gen ? species.name : args[0].trim(); const additionalReason = species.gen > dex.gen ? ` in Generation ${dex.gen}` : ``; throw new Chat.ErrorMessage(`Error: Pok\u00e9mon '${monName}' not found${additionalReason}.`); } const bst = species.bst; species.bst = 0; for (const i in species.baseStats) { if (dex.gen === 1 && i === 'spd') continue; species.baseStats[i] = species.baseStats[i] * (bst <= 350 ? 2 : 1); species.bst += species.baseStats[i]; } this.sendReply(`|html|${Chat.getDataPokemonHTML(species, dex.gen)}`); }, '350cuphelp': [ `/350 OR /350cup [, gen] - Shows the base stats that a Pok\u00e9mon would have in 350 Cup.`, ], ts: 'tiershift', ts1: 'tiershift', ts2: 'tiershift', ts3: 'tiershift', ts4: 'tiershift', ts5: 'tiershift', ts6: 'tiershift', ts7: 'tiershift', ts8: 'tiershift', tiershift(target, room, user, connection, cmd) { const args = target.split(','); if (!toID(args[0])) return this.parse('/help tiershift'); this.runBroadcast(); const targetGen = parseInt(cmd[cmd.length - 1]); if (targetGen && !args[1]) args[1] = `gen${targetGen}`; let dex = Dex; if (args[1] && toID(args[1]) in Dex.dexes) { dex = Dex.dexes[toID(args[1])]; } else if (room?.battle) { const format = Dex.formats.get(room.battle.format); dex = Dex.mod(format.mod); } const species = Utils.deepClone(dex.species.get(args[0])); if (!species.exists || species.gen > dex.gen) { const monName = species.gen > dex.gen ? species.name : args[0].trim(); const additionalReason = species.gen > dex.gen ? ` in Generation ${dex.gen}` : ``; throw new Chat.ErrorMessage(`Error: Pok\u00e9mon '${monName}' not found${additionalReason}.`); } const boosts: {[tier in TierShiftTiers]: number} = { UU: 10, RUBL: 10, RU: 20, NUBL: 20, NU: 30, PUBL: 30, PU: 40, NFE: 40, LC: 40, }; let tier = species.tier; if (tier[0] === '(') tier = tier.slice(1, -1); if (!(tier in boosts)) return this.sendReply(`|html|${Chat.getDataPokemonHTML(species, dex.gen)}`); const boost = boosts[tier as TierShiftTiers]; species.bst = species.baseStats.hp; for (const statName in species.baseStats) { if (statName === 'hp') continue; if (dex.gen === 1 && statName === 'spd') continue; species.baseStats[statName] = Utils.clampIntRange(species.baseStats[statName] + boost, 1, 255); species.bst += species.baseStats[statName]; } this.sendReply(`|raw|${Chat.getDataPokemonHTML(species, dex.gen)}`); }, tiershifthelp: [ `/ts OR /tiershift [, generation] - Shows the base stats that a Pok\u00e9mon would have in Tier Shift.`, `Alternatively, you can use /ts[gen number] to see a Pok\u00e9mon's stats in that generation.`, ], scale: 'scalemons', scale1: 'scalemons', scale2: 'scalemons', scale3: 'scalemons', scale4: 'scalemons', scale5: 'scalemons', scale6: 'scalemons', scale7: 'scalemons', scale8: 'scalemons', scalemons(target, room, user, connection, cmd) { const args = target.split(','); if (!args.length || !toID(args[0])) return this.parse(`/help scalemons`); this.runBroadcast(); const targetGen = parseInt(cmd[cmd.length - 1]); if (targetGen && !args[1]) args[1] = `gen${targetGen}`; let dex = Dex; if (args[1] && toID(args[1]) in Dex.dexes) { dex = Dex.dexes[toID(args[1])]; } else if (room?.battle) { const format = Dex.formats.get(room.battle.format); dex = Dex.mod(format.mod); } const species = Utils.deepClone(dex.species.get(args[0])); if (!species.exists || species.gen > dex.gen) { const monName = species.gen > dex.gen ? species.name : args[0].trim(); const additionalReason = species.gen > dex.gen ? ` in Generation ${dex.gen}` : ``; throw new Chat.ErrorMessage(`Error: Pok\u00e9mon '${monName}' not found${additionalReason}.`); } const bstNoHP = species.bst - species.baseStats.hp; const scale = (dex.gen !== 1 ? 600 : 500) - species.baseStats['hp']; species.bst = 0; for (const stat in species.baseStats) { if (stat === 'hp') continue; if (dex.gen === 1 && stat === 'spd') continue; species.baseStats[stat] = Utils.clampIntRange(species.baseStats[stat] * scale / bstNoHP, 1, 255); species.bst += species.baseStats[stat]; } species.bst += species.baseStats.hp; this.sendReply(`|raw|${Chat.getDataPokemonHTML(species, dex.gen)}`); }, scalemonshelp: [ `/scale OR /scalemons [, gen] - Shows the base stats that a Pok\u00e9mon would have in Scalemons.`, `Alternatively, you can use /scale[gen number] to see a Pok\u00e9mon's scaled stats in that generation.`, ], flip: 'flipped', flip1: 'flipped', flip2: 'flipped', flip3: 'flipped', flip4: 'flipped', flip5: 'flipped', flip6: 'flipped', flip7: 'flipped', flip8: 'flipped', flipped(target, room, user, connection, cmd) { const args = target.split(','); if (!args[0]) return this.parse(`/help flipped`); this.runBroadcast(); const mon = args[0]; let mod = args[1]; const targetGen = parseInt(cmd[cmd.length - 1]); if (targetGen && !mod) mod = `gen${targetGen}`; let dex = Dex; if (mod && toID(mod) in Dex.dexes) { dex = Dex.dexes[toID(mod)]; } else if (room?.battle) { dex = Dex.forFormat(room.battle.format); } const species = Utils.deepClone(dex.species.get(mon)); if (!species.exists || species.gen > dex.gen) { const monName = species.gen > dex.gen ? species.name : mon.trim(); const additionalReason = species.gen > dex.gen ? ` in Generation ${dex.gen}` : ``; throw new Chat.ErrorMessage(`Error: Pok\u00e9mon '${monName}' not found${additionalReason}.`); } if (dex.gen === 1) { const flippedStats: {[k: string]: number} = { hp: species.baseStats.spe, atk: species.baseStats.spa, def: species.baseStats.def, spa: species.baseStats.atk, spd: species.baseStats.atk, spe: species.baseStats.hp, }; for (const stat in species.baseStats) { species.baseStats[stat] = flippedStats[stat]; } this.sendReply(`|raw|${Chat.getDataPokemonHTML(species, dex.gen)}`); return; } const stats = Object.values(species.baseStats).reverse(); for (const [i, statName] of Object.keys(species.baseStats).entries()) { species.baseStats[statName] = stats[i]; } this.sendReply(`|raw|${Chat.getDataPokemonHTML(species, dex.gen)}`); }, flippedhelp: [ `/flip OR /flipped [, gen] - Shows the base stats that a Pok\u00e9mon would have in Flipped.`, `Alternatively, you can use /flip[gen number] to see a Pok\u00e9mon's stats in that generation.`, ], ns: 'natureswap', ns3: 'natureswap', ns4: 'natureswap', ns5: 'natureswap', ns6: 'natureswap', ns7: 'natureswap', ns8: 'natureswap', natureswap(target, room, user, connection, cmd) { const args = target.split(','); const nature = args[0]; const pokemon = args[1]; const targetGen = parseInt(cmd[cmd.length - 1]); if (targetGen && !args[2]) args[2] = `gen${targetGen}`; let dex = Dex; if (args[2] && toID(args[2]) in Dex.dexes) { dex = Dex.dexes[toID(args[2])]; } else if (room?.battle) { const format = Dex.formats.get(room.battle.format); dex = Dex.mod(format.mod); } if (!toID(nature) || !toID(pokemon)) return this.parse(`/help natureswap`); this.runBroadcast(); const natureObj = dex.natures.get(nature); if (dex.gen < 3) throw new Chat.ErrorMessage(`Error: Natures don't exist prior to Generation 3.`); if (!natureObj.exists) throw new Chat.ErrorMessage(`Error: Nature ${nature} not found.`); const species = Utils.deepClone(dex.species.get(pokemon)); if (!species.exists || species.gen > dex.gen) { const monName = species.gen > dex.gen ? species.name : args[0].trim(); const additionalReason = species.gen > dex.gen ? ` in Generation ${dex.gen}` : ``; throw new Chat.ErrorMessage(`Error: Pok\u00e9mon '${monName}' not found${additionalReason}.`); } if (natureObj.minus && natureObj.plus) { const swap = species.baseStats[natureObj.minus]; species.baseStats[natureObj.minus] = species.baseStats[natureObj.plus]; species.baseStats[natureObj.plus] = swap; species.tier = 'NS'; } this.sendReply(`|raw|${Chat.getDataPokemonHTML(species, dex.gen)}`); }, natureswaphelp: [ `/ns OR /natureswap , [, gen] - Shows the base stats that a Pok\u00e9mon would have in Nature Swap.`, `Alternatively, you can use /ns[gen number] to see a Pok\u00e9mon's stats in that generation.`, ], ce: 'crossevolve', crossevo: 'crossevolve', crossevolve(target, user, room) { if (!this.runBroadcast()) return; if (!target?.includes(',')) return this.parse(`/help crossevo`); const pokes = target.split(','); const species = Dex.species.get(pokes[0]); const crossSpecies = Dex.species.get(pokes[1]); if (!species.exists) throw new Chat.ErrorMessage(`Error: Pok\u00e9mon '${pokes[0]}' not found.`); if (!crossSpecies.exists) throw new Chat.ErrorMessage(`Error: Pok\u00e9mon '${pokes[1]}' not found.`); if (!species.evos.length) throw new Chat.ErrorMessage(`Error: ${species.name} does not evolve.`); if (!crossSpecies.prevo) throw new Chat.ErrorMessage(`Error: ${crossSpecies.name} does not have a prevolution.`); let setStage = 1; let crossStage = 1; if (species.prevo) { setStage++; if (Dex.species.get(species.prevo).prevo) { setStage++; } } const prevo = Dex.species.get(crossSpecies.prevo); if (crossSpecies.prevo) { crossStage++; if (prevo.prevo) { crossStage++; } } if (setStage + 1 !== crossStage) { throw new Chat.ErrorMessage(`Error: Cross evolution must follow evolutionary stages. (${species.name} is Stage ${setStage} and can only cross evolve to Stage ${setStage + 1})`); } const mixedSpecies = Utils.deepClone(species); mixedSpecies.abilities = Utils.deepClone(crossSpecies.abilities); mixedSpecies.baseStats = Utils.deepClone(mixedSpecies.baseStats); mixedSpecies.bst = 0; let statName: StatID; for (statName in species.baseStats) { const statChange = crossSpecies.baseStats[statName] - prevo.baseStats[statName]; mixedSpecies.baseStats[statName] = Utils.clampIntRange(mixedSpecies.baseStats[statName] + statChange, 1, 255); mixedSpecies.bst += mixedSpecies.baseStats[statName]; } mixedSpecies.types = [species.types[0]]; if (species.types[1]) mixedSpecies.types.push(species.types[1]); if (crossSpecies.types[0] !== prevo.types[0]) mixedSpecies.types[0] = crossSpecies.types[0]; if (crossSpecies.types[1] !== prevo.types[1]) { mixedSpecies.types[1] = crossSpecies.types[1] || crossSpecies.types[0]; } if (mixedSpecies.types[0] === mixedSpecies.types[1]) mixedSpecies.types = [mixedSpecies.types[0]]; mixedSpecies.weighthg += crossSpecies.weighthg - prevo.weighthg; if (mixedSpecies.weighthg < 1) { mixedSpecies.weighthg = 1; } mixedSpecies.tier = "CE"; let weighthit = 20; if (mixedSpecies.weighthg >= 2000) { weighthit = 120; } else if (mixedSpecies.weighthg >= 1000) { weighthit = 100; } else if (mixedSpecies.weighthg >= 500) { weighthit = 80; } else if (mixedSpecies.weighthg >= 250) { weighthit = 60; } else if (mixedSpecies.weighthg >= 100) { weighthit = 40; } const details: {[k: string]: string} = { "Dex#": mixedSpecies.num, Gen: mixedSpecies.gen, Height: mixedSpecies.heightm + " m", Weight: mixedSpecies.weighthg / 10 + " kg (" + weighthit + " BP)", "Dex Colour": mixedSpecies.color, }; if (mixedSpecies.eggGroups) details["Egg Group(s)"] = mixedSpecies.eggGroups.join(", "); details['Does Not Evolve'] = ""; this.sendReply(`|raw|${Chat.getDataPokemonHTML(mixedSpecies)}`); this.sendReply(`|raw|` + Object.entries(details).map(([detail, value]) => ( value === '' ? detail : `${detail}: ${value}` )).join(" |  ") + ``); }, crossevolvehelp: [ "/crossevo , - Shows the type and stats for the Cross Evolved Pok\u00e9mon.", ], showevo(target, user, room) { if (!this.runBroadcast()) return; const targetid = toID(target); if (!targetid) return this.parse('/help showevo'); const evo = Dex.species.get(target); if (!evo.exists) { throw new Chat.ErrorMessage(`Error: Pok\u00e9mon ${target} not found.`); } if (!evo.prevo) { throw new Chat.ErrorMessage(`Error: ${evo.name} is not an evolution.`); } const prevoSpecies = Dex.species.get(evo.prevo); const deltas = Utils.deepClone(evo); deltas.tier = 'CE'; deltas.weightkg = evo.weightkg - prevoSpecies.weightkg; deltas.bst = 0; let i: StatID; for (i in evo.baseStats) { const statChange = evo.baseStats[i] - prevoSpecies.baseStats[i]; deltas.baseStats[i] = statChange; deltas.bst += deltas.baseStats[i]; } deltas.types = []; if (evo.types[0] !== prevoSpecies.types[0]) deltas.types[0] = evo.types[0]; if (evo.types[1] !== prevoSpecies.types[1]) { deltas.types[1] = evo.types[1] || evo.types[0]; } if (deltas.types.length) { // Undefined type remover deltas.types = deltas.types.filter((type: string | undefined) => type !== undefined); if (deltas.types[0] === deltas.types[1]) deltas.types = [deltas.types[0]]; } else { deltas.types = null; } const details = { Gen: evo.gen, Weight: (deltas.weighthg < 0 ? "" : "+") + deltas.weighthg / 10 + " kg", Stage: (Dex.species.get(prevoSpecies.prevo).exists ? 3 : 2), }; this.sendReply(`|raw|${Chat.getDataPokemonHTML(deltas)}`); this.sendReply(`|raw|Gen: ${details["Gen"]} |  Weight: ${details["Weight"]} |  Stage: ${details["Stage"]}`); }, showevohelp: [ `/showevo - Shows the changes that a Pok\u00e9mon applies in Cross Evolution`, ], };