@pkmn/sim 0.6.3 → 0.6.4
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/build/config/formats.js +5 -4
- package/build/config/formats.js.map +1 -1
- package/build/data/abilities.js +1 -1
- package/build/data/abilities.js.map +1 -1
- package/build/data/formats-data.js +3 -3
- package/build/data/formats-data.js.map +1 -1
- package/build/data/mods/gen1/moves.js +3 -2
- package/build/data/mods/gen1/moves.js.map +1 -1
- package/build/data/mods/gen1/scripts.js +5 -4
- package/build/data/mods/gen1/scripts.js.map +1 -1
- package/build/data/moves.js +8 -6
- package/build/data/moves.js.map +1 -1
- package/build/data/pokedex.js +5 -0
- package/build/data/pokedex.js.map +1 -1
- package/build/sim/battle-queue.js +4 -3
- package/build/sim/battle-queue.js.map +1 -1
- package/build/sim/dex-species.d.ts +2 -0
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/team-validator.js +4 -0
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +5 -4
- package/data/abilities.ts +1 -1
- package/data/formats-data.ts +3 -3
- package/data/mods/gen1/moves.ts +3 -2
- package/data/mods/gen1/scripts.ts +4 -4
- package/data/moves.ts +8 -6
- package/data/pokedex.ts +5 -0
- package/package.json +1 -1
- package/sim/battle-queue.ts +4 -3
- package/sim/dex-species.ts +2 -0
- package/sim/team-validator.ts +5 -0
|
@@ -1262,7 +1262,7 @@ exports.FormatsData = {
|
|
|
1262
1262
|
natDexTier: "RU",
|
|
1263
1263
|
},
|
|
1264
1264
|
magby: {
|
|
1265
|
-
tier: "
|
|
1265
|
+
tier: "NFE",
|
|
1266
1266
|
},
|
|
1267
1267
|
magmar: {
|
|
1268
1268
|
tier: "NFE",
|
|
@@ -1408,7 +1408,7 @@ exports.FormatsData = {
|
|
|
1408
1408
|
natDexTier: "RU",
|
|
1409
1409
|
},
|
|
1410
1410
|
glaceon: {
|
|
1411
|
-
randomBattleMoves: ["freezedry", "protect", "
|
|
1411
|
+
randomBattleMoves: ["freezedry", "protect", "toxic", "wish"],
|
|
1412
1412
|
randomBattleLevel: 88,
|
|
1413
1413
|
randomDoubleBattleMoves: ["blizzard", "freezedry", "helpinghand", "protect", "shadowball", "wish"],
|
|
1414
1414
|
randomDoubleBattleLevel: 88,
|
|
@@ -5844,7 +5844,7 @@ exports.FormatsData = {
|
|
|
5844
5844
|
natDexTier: "RU",
|
|
5845
5845
|
},
|
|
5846
5846
|
silvallyghost: {
|
|
5847
|
-
randomBattleMoves: ["multiattack", "partingshot", "swordsdance", "xscissor"],
|
|
5847
|
+
randomBattleMoves: ["flamecharge", "multiattack", "partingshot", "swordsdance", "xscissor"],
|
|
5848
5848
|
randomBattleLevel: 84,
|
|
5849
5849
|
randomDoubleBattleMoves: ["multiattack", "swordsdance", "tailwind", "xscissor"],
|
|
5850
5850
|
randomDoubleBattleLevel: 88,
|