@pkmn/mods 0.5.11 → 0.5.14
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/gen7letsgo/moves.js +3 -1
- package/build/gen7letsgo/moves.js.map +1 -1
- package/build/gen8bdsp/formats-data.js +125 -121
- package/build/gen8bdsp/formats-data.js.map +1 -1
- package/build/gen8bdsp/learnsets.js +9 -5
- package/build/gen8bdsp/learnsets.js.map +1 -1
- package/build/gen8bdsp/moves.js +1 -1
- package/build/gen8bdsp/moves.js.map +1 -1
- package/build/gen8bdsp/pokedex.js +1 -0
- package/build/gen8bdsp/pokedex.js.map +1 -1
- package/package.json +4 -4
- package/src/gen7letsgo/moves.ts +3 -1
- package/src/gen8bdsp/formats-data.ts +125 -121
- package/src/gen8bdsp/learnsets.ts +9 -5
- package/src/gen8bdsp/moves.ts +1 -1
- package/src/gen8bdsp/pokedex.ts +1 -0
|
@@ -25075,7 +25075,7 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
|
|
|
25075
25075
|
darkpulse: ["8M", "8L93"],
|
|
25076
25076
|
darkvoid: ["8L66"],
|
|
25077
25077
|
disable: ["8L1"],
|
|
25078
|
-
doubleteam: ["8M", "8L47"],
|
|
25078
|
+
doubleteam: ["8M", "8L47", "8S0"],
|
|
25079
25079
|
drainpunch: ["8M"],
|
|
25080
25080
|
dreameater: ["8M", "8L84"],
|
|
25081
25081
|
endure: ["8M"],
|
|
@@ -25084,11 +25084,11 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
|
|
|
25084
25084
|
fling: ["8M"],
|
|
25085
25085
|
focusblast: ["8M"],
|
|
25086
25086
|
focuspunch: ["8M"],
|
|
25087
|
-
foulplay: ["8L38"],
|
|
25087
|
+
foulplay: ["8L38", "8S0"],
|
|
25088
25088
|
gigaimpact: ["8M"],
|
|
25089
25089
|
haze: ["8L57"],
|
|
25090
25090
|
hyperbeam: ["8M"],
|
|
25091
|
-
hypnosis: ["8L20"],
|
|
25091
|
+
hypnosis: ["8L20", "8S0"],
|
|
25092
25092
|
icebeam: ["8M"],
|
|
25093
25093
|
nastyplot: ["8M", "8L75"],
|
|
25094
25094
|
payback: ["8M"],
|
|
@@ -25111,7 +25111,7 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
|
|
|
25111
25111
|
snarl: ["8M"],
|
|
25112
25112
|
strength: ["8M"],
|
|
25113
25113
|
substitute: ["8M"],
|
|
25114
|
-
suckerpunch: ["8L29"],
|
|
25114
|
+
suckerpunch: ["8L29", "8S0"],
|
|
25115
25115
|
sunnyday: ["8M"],
|
|
25116
25116
|
swagger: ["8M"],
|
|
25117
25117
|
swordsdance: ["8M"],
|
|
@@ -25124,6 +25124,10 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
|
|
|
25124
25124
|
willowisp: ["8M"],
|
|
25125
25125
|
xscissor: ["8M"],
|
|
25126
25126
|
},
|
|
25127
|
+
eventData: [
|
|
25128
|
+
{generation: 8, level: 50, shiny: 1, perfectIVs: 3, moves: ["hypnosis", "suckerpunch", "foulplay", "doubleteam"]},
|
|
25129
|
+
],
|
|
25130
|
+
eventOnly: true,
|
|
25127
25131
|
},
|
|
25128
25132
|
shaymin: {
|
|
25129
25133
|
learnset: {
|
|
@@ -25164,7 +25168,7 @@ export const Learnsets: {[k: string]: ModdedLearnsetData} = {
|
|
|
25164
25168
|
worryseed: ["8L55"],
|
|
25165
25169
|
},
|
|
25166
25170
|
eventData: [
|
|
25167
|
-
{generation: 8, level: 30, shiny: 1, perfectIVs: 3, moves: ["growth", "magicalleaf", "leechseed", "synthesis"]
|
|
25171
|
+
{generation: 8, level: 30, shiny: 1, perfectIVs: 3, moves: ["growth", "magicalleaf", "leechseed", "synthesis"]},
|
|
25168
25172
|
],
|
|
25169
25173
|
eventOnly: true,
|
|
25170
25174
|
},
|
package/src/gen8bdsp/moves.ts
CHANGED