pokebedrock-showdown 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/data/pokedex.ts CHANGED
@@ -18907,6 +18907,7 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = {
18907
18907
  heightm: 3.5,
18908
18908
  weightkg: 590,
18909
18909
  color: "Brown",
18910
+ tags: ["Paradox"],
18910
18911
  eggGroups: ["Undiscovered"],
18911
18912
  },
18912
18913
  ragingbolt: {
@@ -18919,6 +18920,7 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = {
18919
18920
  heightm: 5.2,
18920
18921
  weightkg: 480,
18921
18922
  color: "Yellow",
18923
+ tags: ["Paradox"],
18922
18924
  eggGroups: ["Undiscovered"],
18923
18925
  },
18924
18926
  ironboulder: {
@@ -18931,6 +18933,7 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = {
18931
18933
  heightm: 1.5,
18932
18934
  weightkg: 162.5,
18933
18935
  color: "Gray",
18936
+ tags: ["Paradox"],
18934
18937
  eggGroups: ["Undiscovered"],
18935
18938
  },
18936
18939
  ironcrown: {
@@ -18943,6 +18946,7 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = {
18943
18946
  heightm: 1.6,
18944
18947
  weightkg: 156,
18945
18948
  color: "Blue",
18949
+ tags: ["Paradox"],
18946
18950
  eggGroups: ["Undiscovered"],
18947
18951
  },
18948
18952
  terapagos: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pokebedrock-showdown",
3
3
  "description": "A modified version of the Pokémon Showdown server, designed for PokeBedrock.",
4
- "version": "0.1.9",
4
+ "version": "0.1.10",
5
5
  "main": "dist/sim/index.js",
6
6
  "types": "dist/sim/index.d.ts",
7
7
  "dependencies": {
@@ -1873,11 +1873,13 @@ export class BattleActions {
1873
1873
  const altForme = species.otherFormes && this.dex.species.get(species.otherFormes[0]);
1874
1874
  const item = pokemon.getItem();
1875
1875
  // Mega Rayquaza
1876
- if ((this.battle.gen <= 7 || this.battle.ruleTable.has('+pokemontag:past')) &&
1877
- altForme?.isMega && altForme?.requiredMove &&
1878
- pokemon.baseMoves.includes(toID(altForme.requiredMove)) && !item.zMove) {
1876
+ altForme?.isMega &&
1877
+ altForme?.requiredMove &&
1878
+ pokemon.baseMoves.includes(toID(altForme.requiredMove)) &&
1879
+ !item.zMove
1880
+ )
1879
1881
  return altForme.name;
1880
- }
1882
+
1881
1883
  // a hacked-in Megazard X can mega evolve into Megazard Y, but not into Megazard X
1882
1884
  if (item.megaEvolves === species.baseSpecies && item.megaStone !== species.name) {
1883
1885
  return item.megaStone;