Spaces:
Running
Running
File size: 40,903 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 |
"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 othermetas_exports = {};
__export(othermetas_exports, {
commands: () => commands
});
module.exports = __toCommonJS(othermetas_exports);
var import_lib = require("../../lib");
function getMegaStone(stone, mod = "gen9") {
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: ""
};
} else {
return null;
}
}
if (!(item.forcedForme && !item.zMove) && !item.megaStone && !item.isPrimalOrb && !item.name.startsWith("Rusted"))
return null;
return item;
}
const commands = {
om: "othermetas",
othermetas(target, room, user) {
target = toID(target);
const omLink = `- <a href="https://www.smogon.com/forums/forums/733/">Other Metagames Forum</a><br />`;
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.`);
}
this.parse(`/formathelp omofthemonth`);
this.parse(`/formathelp othermetagames`);
return this.sendReply(`|raw|<center>${omLink}</center>`);
}
if (target === "month")
this.target = "omofthemonth";
return 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["gen9ssb"]) {
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) {
throw new Chat.ErrorMessage(`Error: Mega Stone/Primal Orb/Rusted Item/Origin Item/Mask not found.`);
}
if (!species.exists)
throw new Chat.ErrorMessage(`Error: Pok\xE9mon not found.`);
let baseSpecies;
let megaSpecies;
switch (stone.id) {
case "blueorb":
megaSpecies = dex.species.get("Kyogre-Primal");
baseSpecies = dex.species.get("Kyogre");
break;
case "redorb":
megaSpecies = dex.species.get("Groudon-Primal");
baseSpecies = dex.species.get("Groudon");
break;
case "rustedshield":
megaSpecies = dex.species.get("Zamazenta-Crowned");
baseSpecies = dex.species.get("Zamazenta");
break;
case "rustedsword":
megaSpecies = dex.species.get("Zacian-Crowned");
baseSpecies = dex.species.get("Zacian");
break;
default:
const forcedForme = stone.forcedForme;
if (forcedForme) {
megaSpecies = dex.species.get(forcedForme);
baseSpecies = dex.species.get(forcedForme.split("-")[0]);
} else {
megaSpecies = dex.species.get(stone.megaStone);
baseSpecies = dex.species.get(stone.megaEvolves);
}
break;
}
const deltas = {
baseStats: /* @__PURE__ */ Object.create(null),
weighthg: megaSpecies.weighthg - baseSpecies.weighthg,
heightm: (megaSpecies.heightm * 10 - baseSpecies.heightm * 10) / 10,
bst: megaSpecies.bst - baseSpecies.bst
};
let statId;
for (statId in megaSpecies.baseStats) {
deltas.baseStats[statId] = megaSpecies.baseStats[statId] - baseSpecies.baseStats[statId];
}
if (["Arceus", "Silvally"].includes(baseSpecies.name)) {
deltas.type = megaSpecies.types[0];
} else 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" : baseSpecies.types[0];
} else if (megaSpecies.types[1] !== baseSpecies.types[1]) {
deltas.type = megaSpecies.types[1];
}
const mixedSpecies = import_lib.Utils.deepClone(species);
mixedSpecies.abilities = import_lib.Utils.deepClone(megaSpecies.abilities);
if (["Arceus", "Silvally"].includes(baseSpecies.name)) {
const secondType = mixedSpecies.types[1];
mixedSpecies.types = [deltas.type];
if (secondType && secondType !== deltas.type)
mixedSpecies.types.push(secondType);
} else if (mixedSpecies.types[0] === deltas.type) {
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;
mixedSpecies.bst = 0;
for (statName in species.baseStats) {
mixedSpecies.baseStats[statName] = import_lib.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.heightm = Math.max(0.1, (species.heightm * 10 + deltas.heightm * 10) / 10);
mixedSpecies.tier = "MnM";
let weighthit = 20;
if (mixedSpecies.weighthg >= 2e3) {
weighthit = 120;
} else if (mixedSpecies.weighthg >= 1e3) {
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 = {
"Dex#": `${mixedSpecies.num}`,
Gen: `${mixedSpecies.gen}`,
Height: `${mixedSpecies.heightm} m`,
Weight: `${mixedSpecies.weighthg / 10} kg <em>(${weighthit} BP)</em>`,
"Dex Colour": mixedSpecies.color
};
if (mixedSpecies.eggGroups)
details["Egg Group(s)"] = mixedSpecies.eggGroups.join(", ");
details['<font color="#686868">Does Not Evolve</font>'] = "";
this.sendReply(`|raw|${Chat.getDataPokemonHTML(mixedSpecies)}`);
this.sendReply(`|raw|<font size="1">` + Object.entries(details).map(([detail, value]) => value === "" ? detail : `<font color="#686868">${detail}:</font> ${value}`).join(" |  ") + `</font>`);
},
mixandmegahelp: [
`/mnm <pokemon> @ <mega stone or other>[, generation] - Shows the Mix and Mega evolved Pok\xE9mon'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["gen9ssb"]) {
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]);
const stones = [];
if (!stone) {
const formeIdRegex = new RegExp(
`(?:mega[xy]?|primal|origin|crowned|epilogue|cornerstone|wellspring|hearthflame|douse|shock|chill|burn|${dex.types.all().map((x) => x.id).filter((x) => x !== "normal").join("|")})$`
);
const species = dex.species.get(targetid.replace(formeIdRegex, ""));
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) {
const formeRegex = new RegExp(
`(?:-Douse|-Shock|-Chill|-Burn|-Cornerstone|-Wellspring|-Hearthflame|-Crowned|-Epilogue|-Origin|-Primal|-Mega(?:-[XY])?|${dex.types.names().filter((x) => x !== "Normal").map((x) => "-" + x).join("|")})$`
);
if (!formeRegex.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;
let megaSpecies;
switch (aStone.id) {
case "blueorb":
megaSpecies = dex.species.get("Kyogre-Primal");
baseSpecies = dex.species.get("Kyogre");
break;
case "redorb":
megaSpecies = dex.species.get("Groudon-Primal");
baseSpecies = dex.species.get("Groudon");
break;
case "rustedshield":
megaSpecies = dex.species.get("Zamazenta-Crowned");
baseSpecies = dex.species.get("Zamazenta");
break;
case "rustedsword":
megaSpecies = dex.species.get("Zacian-Crowned");
baseSpecies = dex.species.get("Zacian");
break;
default:
const forcedForme = aStone.forcedForme;
if (forcedForme) {
megaSpecies = dex.species.get(forcedForme);
baseSpecies = dex.species.get(forcedForme.split("-")[0]);
} else {
megaSpecies = dex.species.get(aStone.megaStone);
baseSpecies = dex.species.get(aStone.megaEvolves);
}
break;
}
const deltas = {
baseStats: /* @__PURE__ */ Object.create(null),
weighthg: megaSpecies.weighthg - baseSpecies.weighthg,
heightm: (megaSpecies.heightm * 10 - baseSpecies.heightm * 10) / 10,
bst: megaSpecies.bst - baseSpecies.bst
};
let statId;
for (statId in megaSpecies.baseStats) {
deltas.baseStats[statId] = megaSpecies.baseStats[statId] - baseSpecies.baseStats[statId];
}
if (["Arceus", "Silvally"].includes(baseSpecies.name)) {
deltas.type = megaSpecies.types[0];
} else 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,
Height: `${deltas.heightm < 0 ? "" : "+"}${deltas.heightm} m`,
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 if (aStone.name.endsWith("Mask")) {
tier = "Mask";
} else if (aStone.megaStone) {
tier = "Stone";
} else {
tier = "Item";
}
let buf = `<li class="result">`;
buf += `<span class="col numcol">${tier}</span> `;
if (aStone.name === "Dragon Ascent") {
buf += `<span class="col itemiconcol"></span>`;
} else {
const itemName = aStone.name;
buf += `<span class="col itemiconcol"><psicon item="${toID(itemName)}"/></span> `;
}
if (aStone.name === "Dragon Ascent") {
buf += `<span class="col movenamecol" style="white-space:nowrap"><a href="https://${Config.routes.dex}/moves/${targetid}" target="_blank">Dragon Ascent</a></span> `;
} else {
buf += `<span class="col pokemonnamecol" style="white-space:nowrap"><a href="https://${Config.routes.dex}/items/${aStone.id}" target="_blank">${aStone.name}</a></span> `;
}
if (deltas.type && deltas.type !== "mono") {
buf += `<span class="col typecol"><img src="https://${Config.routes.client}/sprites/types/${deltas.type}.png" alt="${deltas.type}" height="14" width="32"></span> `;
} else {
buf += `<span class="col typecol"></span>`;
}
buf += `<span style="float:left;min-height:26px">`;
buf += `<span class="col abilitycol">${megaSpecies.abilities["0"]}</span>`;
buf += `<span class="col abilitycol">${megaSpecies.abilities["H"] ? `<em>${megaSpecies.abilities["H"]}</em>` : ""}</span>`;
buf += `</span>`;
buf += `<span style="float:left;min-height:26px">`;
buf += `<span class="col statcol"><em>HP</em><br />0</span> `;
buf += `<span class="col statcol"><em>Atk</em><br />${deltas.baseStats.atk}</span> `;
buf += `<span class="col statcol"><em>Def</em><br />${deltas.baseStats.def}</span> `;
buf += `<span class="col statcol"><em>SpA</em><br />${deltas.baseStats.spa}</span> `;
buf += `<span class="col statcol"><em>SpD</em><br />${deltas.baseStats.spd}</span> `;
buf += `<span class="col statcol"><em>Spe</em><br />${deltas.baseStats.spe}</span> `;
buf += `<span class="col bstcol"><em>BST<br />${deltas.bst}</em></span> `;
buf += `</span>`;
buf += `</li>`;
this.sendReply(`|raw|<div class="message"><ul class="utilichart">${buf}<li style="clear:both"></li></ul></div>`);
this.sendReply(`|raw|<font size="1">${Object.entries(details).map(([detail, value]) => `<font color="#686868">${detail}:</font> ${value}`).join(" |  ")}</font>`);
}
},
stonehelp: [`/stone <mega stone or other>[, generation] - Shows the changes that a mega stone/orb applies to a Pok\xE9mon.`],
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 = import_lib.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\xE9mon '${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] *= bst <= 350 ? 2 : 1;
species.bst += species.baseStats[i];
}
this.sendReply(`|html|${Chat.getDataPokemonHTML(species, dex.gen)}`);
},
"350cuphelp": [
`/350 OR /350cup <pokemon>[, gen] - Shows the base stats that a Pok\xE9mon 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 = import_lib.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\xE9mon '${monName}' not found${additionalReason}.`);
}
const boosts = {
UU: 15,
RUBL: 15,
RU: 20,
NUBL: 20,
NU: 25,
PUBL: 25,
PU: 30,
ZUBL: 30,
ZU: 30,
NFE: 30,
LC: 30
};
if (dex.gen < 9) {
boosts["UU"] = boosts["RUBL"] = 10;
boosts["RU"] = boosts["NUBL"] = 20;
boosts["NU"] = boosts["PUBL"] = 30;
boosts["PU"] = boosts["NFE"] = boosts["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];
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] = import_lib.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 <pokemon>[, generation] - Shows the base stats that a Pok\xE9mon would have in Tier Shift.`,
`Alternatively, you can use /ts[gen number] to see a Pok\xE9mon's stats in that generation.`
],
fuse: "franticfusions",
fuse1: "franticfusions",
fuse2: "franticfusions",
fuse3: "franticfusions",
fuse4: "franticfusions",
fuse5: "franticfusions",
fuse6: "franticfusions",
fuse7: "franticfusions",
fuse8: "franticfusions",
franticfusions(target, room, user, connection, cmd) {
const args = target.split(",");
if (!toID(args[0]) && !toID(args[1]))
return this.parse("/help franticfusions");
const targetGen = parseInt(cmd[cmd.length - 1]);
if (targetGen && !args[2])
target = `${target},gen${targetGen}`;
const { dex, targets } = this.splitFormat(target, true);
this.runBroadcast();
if (targets.length > 2)
return this.parse("/help franticfusions");
const species = import_lib.Utils.deepClone(dex.species.get(targets[0]));
const fusion = dex.species.get(targets[1]);
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\xE9mon '${monName}' not found${additionalReason}.`);
}
if (fusion.name.length) {
if (!fusion.exists || fusion.gen > dex.gen) {
const monName = fusion.gen > dex.gen ? fusion.name : args[1].trim();
const additionalReason = fusion.gen > dex.gen ? ` in Generation ${dex.gen}` : ``;
throw new Chat.ErrorMessage(`Error: Pok\xE9mon '${monName}' not found${additionalReason}.`);
}
if (fusion.name === species.name) {
throw new Chat.ErrorMessage("Pok\xE9mon can't fuse with themselves.");
}
}
if (fusion.name.length) {
species.bst = species.baseStats.hp;
} else {
species.bst = 0;
}
for (const statName in species.baseStats) {
if (statName === "hp")
continue;
if (!fusion.name.length) {
species.baseStats[statName] = Math.floor(species.baseStats[statName] / 4);
species.bst += species.baseStats[statName];
} else {
const addition = Math.floor(fusion.baseStats[statName] / 4);
species.baseStats[statName] = import_lib.Utils.clampIntRange(species.baseStats[statName] + addition, 1, 255);
species.bst += species.baseStats[statName];
}
}
const abilities = /* @__PURE__ */ new Set([...Object.values(species.abilities), ...Object.values(fusion.abilities)]);
let buf = '<div class="message"><ul class="utilichart"><li class="result">';
buf += '<span class="col numcol">Fusion</span> ';
buf += `<span class="col iconcol"><psicon pokemon="${species.id}"/></span> `;
buf += `<span class="col pokemonnamecol" style="white-space:nowrap"><a href="https://${Config.routes.dex}/pokemon/${species.id}" target="_blank">${species.name}</a></span> `;
buf += '<span class="col typecol">';
if (species.types && fusion.name.length) {
for (const type of species.types) {
buf += `<img src="https://${Config.routes.client}/sprites/types/${type}.png" alt="${type}" height="14" width="32">`;
}
}
buf += "</span> ";
if (dex.gen >= 3) {
buf += '<span style="float:left;min-height:26px">';
const ability1 = [...abilities.values()][0];
abilities.delete(ability1);
let ability2;
if (abilities.size) {
ability2 = [...abilities.values()][0];
abilities.delete(ability2);
}
let ability3;
if (abilities.size) {
ability3 = [...abilities.values()][0];
abilities.delete(ability3);
}
let ability4;
if (abilities.size) {
ability4 = [...abilities.values()][0];
abilities.delete(ability4);
}
let ability5;
if (abilities.size) {
ability5 = [...abilities.values()][0];
abilities.delete(ability5);
}
let ability6;
if (abilities.size) {
ability6 = [...abilities.values()][0];
abilities.delete(ability6);
}
let ability7;
if (abilities.size) {
ability7 = [...abilities.values()][0];
abilities.delete(ability7);
}
if (ability1) {
if (ability2) {
buf += '<span class="col twoabilitycol">' + ability1 + "<br />" + ability2 + "</span>";
} else {
buf += '<span class="col abilitycol">' + ability1 + "</span>";
}
}
if (ability3) {
if (ability4) {
buf += '<span class="col twoabilitycol">' + ability3 + "<br />" + ability4 + "</span>";
} else {
buf += '<span class="col abilitycol">' + ability3 + "</span>";
}
}
if (ability5) {
if (ability6) {
buf += '<span class="col twoabilitycol">' + ability5 + "<br />" + ability6 + "</span>";
} else {
buf += '<span class="col abilitycol">' + ability5 + "</span>";
}
}
if (ability7) {
buf += '<span class="col abilitycol">' + ability7 + "</span>";
}
buf += "</span>";
}
buf += '<span style="float:left;min-height:26px">';
if (fusion.name.length) {
buf += '<span class="col statcol"><em>HP</em><br />' + species.baseStats.hp + "</span> ";
} else {
buf += '<span class="col statcol"><em>HP</em><br />0</span> ';
}
buf += '<span class="col statcol"><em>Atk</em><br />' + species.baseStats.atk + "</span> ";
buf += '<span class="col statcol"><em>Def</em><br />' + species.baseStats.def + "</span> ";
if (dex.gen <= 1) {
buf += '<span class="col statcol"><em>Spc</em><br />' + species.baseStats.spa + "</span> ";
} else {
buf += '<span class="col statcol"><em>SpA</em><br />' + species.baseStats.spa + "</span> ";
buf += '<span class="col statcol"><em>SpD</em><br />' + species.baseStats.spd + "</span> ";
}
buf += '<span class="col statcol"><em>Spe</em><br />' + species.baseStats.spe + "</span> ";
buf += '<span class="col bstcol"><em>BST<br />' + species.bst + "</em></span> ";
buf += "</span>";
buf += '</li><li style="clear:both"></li></ul></div>';
this.sendReply(`|raw|${buf}`);
},
franticfusionshelp: [
`/fuse <pokemon>, <fusion>[, generation] - Shows the stats and abilities that <pokemon> would get when fused with <fusion>.`,
`/fuse <pokemon>[, generation] - Shows the stats and abilities that <pokemon> donates.`,
`Alternatively, you can use /fuse[gen number] to see a Pok\xE9mon'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 = import_lib.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\xE9mon '${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] = import_lib.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 <pokemon>[, gen] - Shows the base stats that a Pok\xE9mon would have in Scalemons.`,
`Alternatively, you can use /scale[gen number] to see a Pok\xE9mon'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 = import_lib.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\xE9mon '${monName}' not found${additionalReason}.`);
}
if (dex.gen === 1) {
const flippedStats = {
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 <pokemon>[, gen] - Shows the base stats that a Pok\xE9mon would have in Flipped.`,
`Alternatively, you can use /flip[gen number] to see a Pok\xE9mon'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 = import_lib.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\xE9mon '${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 <nature>, <pokemon>[, gen] - Shows the base stats that a Pok\xE9mon would have in Nature Swap.`,
`Alternatively, you can use /ns[gen number] to see a Pok\xE9mon'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\xE9mon '${pokes[0]}' not found.`);
if (!crossSpecies.exists)
throw new Chat.ErrorMessage(`Error: Pok\xE9mon '${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 = import_lib.Utils.deepClone(species);
mixedSpecies.abilities = import_lib.Utils.deepClone(crossSpecies.abilities);
mixedSpecies.baseStats = import_lib.Utils.deepClone(mixedSpecies.baseStats);
mixedSpecies.bst = 0;
let statName;
for (statName in species.baseStats) {
const statChange = crossSpecies.baseStats[statName] - prevo.baseStats[statName];
mixedSpecies.baseStats[statName] = import_lib.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 >= 2e3) {
weighthit = 120;
} else if (mixedSpecies.weighthg >= 1e3) {
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 = {
"Dex#": mixedSpecies.num,
Gen: mixedSpecies.gen,
Height: `${mixedSpecies.heightm} m`,
Weight: `${mixedSpecies.weighthg / 10} kg <em>(${weighthit} BP)</em>`,
"Dex Colour": mixedSpecies.color
};
if (mixedSpecies.eggGroups)
details["Egg Group(s)"] = mixedSpecies.eggGroups.join(", ");
details['<font color="#686868">Does Not Evolve</font>'] = "";
this.sendReply(`|raw|${Chat.getDataPokemonHTML(mixedSpecies)}`);
this.sendReply(`|raw|<font size="1">` + Object.entries(details).map(([detail, value]) => value === "" ? detail : `<font color="#686868">${detail}:</font> ${value}`).join(" |  ") + `</font>`);
},
crossevolvehelp: [
"/crossevo <base pokemon>, <evolved pokemon> - Shows the type and stats for the Cross Evolved Pok\xE9mon."
],
reevo: "showevo",
showevo(target, room, user, connection, cmd) {
if (!this.runBroadcast())
return;
const targetid = toID(target);
const isReEvo = cmd === "reevo";
if (!targetid)
return this.parse(`/help ${isReEvo ? "re" : "show"}evo`);
const evo = Dex.species.get(target);
if (!evo.exists) {
throw new Chat.ErrorMessage(`Error: Pok\xE9mon ${target} not found.`);
}
if (!evo.prevo) {
const evoBaseSpecies = Dex.species.get(
(Array.isArray(evo.battleOnly) ? evo.battleOnly[0] : evo.battleOnly) || evo.changesFrom || evo.name
);
if (!evoBaseSpecies.prevo)
throw new Chat.ErrorMessage(`Error: ${evoBaseSpecies.name} is not an evolution.`);
const prevoSpecies = Dex.species.get(evoBaseSpecies.prevo);
const deltas = import_lib.Utils.deepClone(evo);
if (!isReEvo) {
deltas.tier = "CE";
deltas.weightkg = evo.weightkg - prevoSpecies.weightkg;
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) {
deltas.types = deltas.types.filter((type) => type !== void 0);
if (deltas.types[0] === deltas.types[1])
deltas.types = [deltas.types[0]];
} else {
deltas.types = null;
}
}
deltas.bst = 0;
let i;
for (i in evo.baseStats) {
const statChange = evoBaseSpecies.baseStats[i] - prevoSpecies.baseStats[i];
const formeChange = evo.baseStats[i] - evoBaseSpecies.baseStats[i];
if (!isReEvo) {
if (!evo.prevo) {
deltas.baseStats[i] = formeChange;
} else {
deltas.baseStats[i] = statChange;
}
} else {
deltas.baseStats[i] = import_lib.Utils.clampIntRange(evoBaseSpecies.baseStats[i] + statChange, 1, 255);
deltas.baseStats[i] = import_lib.Utils.clampIntRange(deltas.baseStats[i] + formeChange, 1, 255);
}
deltas.bst += deltas.baseStats[i];
}
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)}`);
if (!isReEvo) {
this.sendReply(`|raw|<font size="1"><font color="#686868">Gen:</font> ${details["Gen"]} |  <font color="#686868">Weight:</font> ${details["Weight"]} |  <font color="#686868">Stage:</font> ${details["Stage"]}</font>`);
}
} else {
const prevoSpecies = Dex.species.get(evo.prevo);
const deltas = import_lib.Utils.deepClone(evo);
if (!isReEvo) {
deltas.tier = "CE";
deltas.weightkg = evo.weightkg - prevoSpecies.weightkg;
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) {
deltas.types = deltas.types.filter((type) => type !== void 0);
if (deltas.types[0] === deltas.types[1])
deltas.types = [deltas.types[0]];
} else {
deltas.types = null;
}
}
deltas.bst = 0;
let i;
for (i in evo.baseStats) {
const statChange = evo.baseStats[i] - prevoSpecies.baseStats[i];
if (!isReEvo) {
deltas.baseStats[i] = statChange;
} else {
deltas.baseStats[i] = import_lib.Utils.clampIntRange(deltas.baseStats[i] + statChange, 1, 255);
}
deltas.bst += deltas.baseStats[i];
}
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)}`);
if (!isReEvo) {
this.sendReply(`|raw|<font size="1"><font color="#686868">Gen:</font> ${details["Gen"]} |  <font color="#686868">Weight:</font> ${details["Weight"]} |  <font color="#686868">Stage:</font> ${details["Stage"]}</font>`);
}
}
},
reevohelp: [
`/reevo <Pok\xE9mon> - Shows the stats that a Pok\xE9mon would have in Re-Evolution`
],
showevohelp: [
`/showevo <Pok\xE9mon> - Shows the changes that a Pok\xE9mon applies in Cross Evolution`
],
pokemove(target, room, user) {
if (!this.runBroadcast())
return;
const species = Dex.species.get(target);
if (!species.exists)
return this.parse("/help pokemove");
const move = import_lib.Utils.deepClone(Dex.moves.get("tackle"));
move.name = species.name;
move.type = species.types[0];
move.flags = { protect: 1 };
move.basePower = Math.max(species.baseStats["atk"], species.baseStats["spa"]);
move.pp = 5;
move.gen = species.gen;
move.num = species.num;
move.desc = move.shortDesc = `Gives ${species.abilities["0"]} as a second ability after use.`;
move.category = species.baseStats["spa"] >= species.baseStats["atk"] ? "Special" : "Physical";
this.sendReply(`|raw|${Chat.getDataMoveHTML(move)}`);
},
pokemovehelp: [
`/pokemove <Pok\xE9mon> - Shows the Pokemove data for <Pok\xE9mon>.`
]
};
//# sourceMappingURL=othermetas.js.map
|