pogo-masterfile-types 0.1.55 → 0.1.56

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.
Files changed (33) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/combat-move/entries/bug.d.ts +2 -2
  3. package/dist/combat-move/entries/dark.d.ts +3 -3
  4. package/dist/combat-move/entries/electric.d.ts +1 -1
  5. package/dist/combat-move/entries/fairy.d.ts +7 -3
  6. package/dist/combat-move/entries/fighting.d.ts +1 -1
  7. package/dist/combat-move/entries/fire.d.ts +1 -1
  8. package/dist/combat-move/entries/flying.d.ts +3 -3
  9. package/dist/combat-move/entries/ghost.d.ts +4 -4
  10. package/dist/combat-move/entries/ground.d.ts +6 -6
  11. package/dist/combat-move/entries/normal.d.ts +6 -6
  12. package/dist/combat-move/entries/poison.d.ts +1 -1
  13. package/dist/combat-move/entries/psychic.d.ts +3 -3
  14. package/dist/combat-move/entries/steel.d.ts +3 -3
  15. package/dist/combat-move/entries/water.d.ts +4 -4
  16. package/dist/iap-item-display/entries/free.d.ts +5 -6
  17. package/dist/iap-item-display/types.d.ts +7 -5
  18. package/dist/move-settings/entries/psychic.d.ts +2 -2
  19. package/dist/pokemon-settings/entries/bug.d.ts +10 -10
  20. package/dist/pokemon-settings/entries/dark.d.ts +14 -14
  21. package/dist/pokemon-settings/entries/electric.d.ts +9 -9
  22. package/dist/pokemon-settings/entries/flying.d.ts +4 -4
  23. package/dist/pokemon-settings/entries/ghost.d.ts +8 -8
  24. package/dist/pokemon-settings/entries/grass.d.ts +2 -2
  25. package/dist/pokemon-settings/entries/ground.d.ts +2 -2
  26. package/dist/pokemon-settings/entries/normal.d.ts +7 -7
  27. package/dist/pokemon-settings/entries/poison.d.ts +11 -11
  28. package/dist/pokemon-settings/entries/psychic.d.ts +5 -5
  29. package/dist/pokemon-settings/entries/rock.d.ts +2 -2
  30. package/dist/pokemon-settings/entries/steel.d.ts +4 -4
  31. package/dist/singletons/entries/settings.d.ts +47 -48
  32. package/dist/vs-seeker-pokemon-rewards/types.d.ts +1142 -99
  33. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to `pogo-masterfile-types` (npm) are recorded here. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
4
 
5
+ ## [0.1.56] - 2026-09-08
6
+
7
+ Automated regeneration from upstream masterfile commit `49b53bd1650169e1d2fe903856d4aa3cdb8a6d2d`.
8
+
5
9
  ## [0.1.55] - 2026-09-08
6
10
 
7
11
  Automated regeneration from upstream masterfile commit `30ac8eefc6990cbe9c92909a358eea56ac1814ea`.
@@ -90,7 +90,7 @@ export type CombatMoveV0260MoveInfestationFast = S<
90
90
  {
91
91
  durationTurns: 2;
92
92
  energyDelta: 12;
93
- power: 6;
93
+ power: 10;
94
94
  type: "POKEMON_TYPE_BUG";
95
95
  uniqueId: "INFESTATION_FAST";
96
96
  vfxName: "infestation_fast";
@@ -136,7 +136,7 @@ export type CombatMoveV0306MoveLunge = S<
136
136
  targetAttackStatStageChange: -1;
137
137
  };
138
138
  energyDelta: -45;
139
- power: 60;
139
+ power: 70;
140
140
  type: "POKEMON_TYPE_BUG";
141
141
  uniqueId: "LUNGE";
142
142
  vfxName: "lunge";
@@ -7,7 +7,7 @@ export type CombatMoveV0016MoveDarkPulse = S<
7
7
  CombatMove<
8
8
  "COMBAT_V0016_MOVE_DARK_PULSE",
9
9
  {
10
- energyDelta: -50;
10
+ energyDelta: -45;
11
11
  power: 80;
12
12
  type: "POKEMON_TYPE_DARK";
13
13
  uniqueId: "DARK_PULSE";
@@ -35,8 +35,8 @@ export type CombatMoveV0202MoveBiteFast = S<
35
35
  CombatMove<
36
36
  "COMBAT_V0202_MOVE_BITE_FAST",
37
37
  {
38
- energyDelta: 2;
39
- power: 4;
38
+ energyDelta: 4;
39
+ power: 2;
40
40
  type: "POKEMON_TYPE_DARK";
41
41
  uniqueId: "BITE_FAST";
42
42
  vfxName: "bite_fast";
@@ -99,7 +99,7 @@ export type CombatMoveV0249MoveChargeBeamFast = S<
99
99
  {
100
100
  durationTurns: 2;
101
101
  energyDelta: 11;
102
- power: 5;
102
+ power: 6;
103
103
  type: "POKEMON_TYPE_ELECTRIC";
104
104
  uniqueId: "CHARGE_BEAM_FAST";
105
105
  vfxName: "charge_beam_fast";
@@ -19,8 +19,12 @@ export type CombatMoveV0085MoveDrainingKiss = S<
19
19
  CombatMove<
20
20
  "COMBAT_V0085_MOVE_DRAINING_KISS",
21
21
  {
22
+ buffs: {
23
+ attackerDefenseStatStageChange: 1;
24
+ buffActivationChance: 1;
25
+ };
22
26
  energyDelta: -55;
23
- power: 60;
27
+ power: 80;
24
28
  type: "POKEMON_TYPE_FAIRY";
25
29
  uniqueId: "DRAINING_KISS";
26
30
  vfxName: "draining_kiss";
@@ -47,8 +51,8 @@ export type CombatMoveV0087MoveMoonblast = S<
47
51
  buffActivationChance: 0.1;
48
52
  targetAttackStatStageChange: -1;
49
53
  };
50
- energyDelta: -60;
51
- power: 110;
54
+ energyDelta: -50;
55
+ power: 90;
52
56
  type: "POKEMON_TYPE_FAIRY";
53
57
  uniqueId: "MOONBLAST";
54
58
  vfxName: "moonblast";
@@ -61,7 +61,7 @@ export type CombatMoveV0207MoveLowKickFast = S<
61
61
  {
62
62
  durationTurns: 1;
63
63
  energyDelta: 8;
64
- power: 5;
64
+ power: 6;
65
65
  type: "POKEMON_TYPE_FIGHTING";
66
66
  uniqueId: "LOW_KICK_FAST";
67
67
  vfxName: "low_kick_fast";
@@ -174,7 +174,7 @@ export type CombatMoveV0317MoveBlazeKick = S<
174
174
  CombatMove<
175
175
  "COMBAT_V0317_MOVE_BLAZE_KICK",
176
176
  {
177
- energyDelta: -40;
177
+ energyDelta: -35;
178
178
  power: 60;
179
179
  type: "POKEMON_TYPE_FIRE";
180
180
  uniqueId: "BLAZE_KICK";
@@ -33,10 +33,10 @@ export type CombatMoveV0121MoveAirCutter = S<
33
33
  {
34
34
  buffs: {
35
35
  attackerAttackStatStageChange: 1;
36
- buffActivationChance: 0.3;
36
+ buffActivationChance: 0.125;
37
37
  };
38
- energyDelta: -35;
39
- power: 45;
38
+ energyDelta: -40;
39
+ power: 60;
40
40
  type: "POKEMON_TYPE_FLYING";
41
41
  uniqueId: "AIR_CUTTER";
42
42
  vfxName: "air_cutter";
@@ -49,7 +49,7 @@ export type CombatMoveV0070MoveShadowBall = S<
49
49
  "COMBAT_V0070_MOVE_SHADOW_BALL",
50
50
  {
51
51
  energyDelta: -50;
52
- power: 100;
52
+ power: 90;
53
53
  type: "POKEMON_TYPE_GHOST";
54
54
  uniqueId: "SHADOW_BALL";
55
55
  vfxName: "shadow_ball";
@@ -139,7 +139,7 @@ export type CombatMoveV0371MoveShadowForce = S<
139
139
  CombatMove<
140
140
  "COMBAT_V0371_MOVE_SHADOW_FORCE",
141
141
  {
142
- energyDelta: -90;
142
+ energyDelta: -65;
143
143
  power: 120;
144
144
  type: "POKEMON_TYPE_GHOST";
145
145
  uniqueId: "SHADOW_FORCE";
@@ -195,8 +195,8 @@ export type CombatMoveV0464MoveRageFist = S<
195
195
  attackerAttackStatStageChange: 1;
196
196
  buffActivationChance: 1;
197
197
  };
198
- energyDelta: -35;
199
- power: 50;
198
+ energyDelta: -40;
199
+ power: 55;
200
200
  type: "POKEMON_TYPE_GHOST";
201
201
  uniqueId: "RAGE_FIST";
202
202
  vfxName: "rage_fist";
@@ -56,11 +56,11 @@ export type CombatMoveV0095MoveBulldoze = S<
56
56
  "COMBAT_V0095_MOVE_BULLDOZE",
57
57
  {
58
58
  buffs: {
59
- buffActivationChance: 0.5;
59
+ buffActivationChance: 1;
60
60
  targetDefenseStatStageChange: -1;
61
61
  };
62
- energyDelta: -45;
63
- power: 45;
62
+ energyDelta: -55;
63
+ power: 80;
64
64
  type: "POKEMON_TYPE_GROUND";
65
65
  uniqueId: "BULLDOZE";
66
66
  vfxName: "bulldoze";
@@ -113,8 +113,8 @@ export type CombatMoveV0258MoveSandTomb = S<
113
113
  buffActivationChance: 1;
114
114
  targetDefenseStatStageChange: -1;
115
115
  };
116
- energyDelta: -40;
117
- power: 40;
116
+ energyDelta: -45;
117
+ power: 55;
118
118
  type: "POKEMON_TYPE_GROUND";
119
119
  uniqueId: "SAND_TOMB";
120
120
  vfxName: "sand_tomb";
@@ -153,7 +153,7 @@ export type CombatMoveV0377MoveHighHorsepower = S<
153
153
  CombatMove<
154
154
  "COMBAT_V0377_MOVE_HIGH_HORSEPOWER",
155
155
  {
156
- energyDelta: -60;
156
+ energyDelta: -55;
157
157
  power: 100;
158
158
  type: "POKEMON_TYPE_GROUND";
159
159
  uniqueId: "HIGH_HORSEPOWER";
@@ -95,8 +95,8 @@ export type CombatMoveV0131MoveBodySlam = S<
95
95
  CombatMove<
96
96
  "COMBAT_V0131_MOVE_BODY_SLAM",
97
97
  {
98
- energyDelta: -35;
99
- power: 55;
98
+ energyDelta: -40;
99
+ power: 65;
100
100
  type: "POKEMON_TYPE_NORMAL";
101
101
  uniqueId: "BODY_SLAM";
102
102
  vfxName: "body_slam";
@@ -168,8 +168,8 @@ export type CombatMoveV0220MoveScratchFast = S<
168
168
  CombatMove<
169
169
  "COMBAT_V0220_MOVE_SCRATCH_FAST",
170
170
  {
171
- energyDelta: 2;
172
- power: 4;
171
+ energyDelta: 4;
172
+ power: 3;
173
173
  type: "POKEMON_TYPE_NORMAL";
174
174
  uniqueId: "SCRATCH_FAST";
175
175
  vfxName: "scratch_fast";
@@ -242,8 +242,8 @@ export type CombatMoveV0282MoveTakeDownFast = S<
242
242
  "COMBAT_V0282_MOVE_TAKE_DOWN_FAST",
243
243
  {
244
244
  durationTurns: 2;
245
- energyDelta: 8;
246
- power: 5;
245
+ energyDelta: 9;
246
+ power: 14;
247
247
  type: "POKEMON_TYPE_NORMAL";
248
248
  uniqueId: "TAKE_DOWN_FAST";
249
249
  vfxName: "take_down_fast";
@@ -24,7 +24,7 @@ export type CombatMoveV0050MovePoisonFang = S<
24
24
  targetDefenseStatStageChange: -1;
25
25
  };
26
26
  energyDelta: -40;
27
- power: 45;
27
+ power: 50;
28
28
  type: "POKEMON_TYPE_POISON";
29
29
  uniqueId: "POISON_FANG";
30
30
  vfxName: "poison_fang";
@@ -135,8 +135,8 @@ export type CombatMoveV0276MoveMirrorCoat = S<
135
135
  CombatMove<
136
136
  "COMBAT_V0276_MOVE_MIRROR_COAT",
137
137
  {
138
- energyDelta: -55;
139
- power: 60;
138
+ energyDelta: -45;
139
+ power: 75;
140
140
  type: "POKEMON_TYPE_PSYCHIC";
141
141
  uniqueId: "MIRROR_COAT";
142
142
  vfxName: "mirror_coat";
@@ -152,7 +152,7 @@ export type CombatMoveV0288MovePsychoBoost = S<
152
152
  buffActivationChance: 1;
153
153
  };
154
154
  energyDelta: -35;
155
- power: 70;
155
+ power: 85;
156
156
  type: "POKEMON_TYPE_PSYCHIC";
157
157
  uniqueId: "PSYCHO_BOOST";
158
158
  vfxName: "psycho_boost";
@@ -19,7 +19,7 @@ export type CombatMoveV0072MoveMagnetBomb = S<
19
19
  CombatMove<
20
20
  "COMBAT_V0072_MOVE_MAGNET_BOMB",
21
21
  {
22
- energyDelta: -45;
22
+ energyDelta: -40;
23
23
  power: 70;
24
24
  type: "POKEMON_TYPE_STEEL";
25
25
  uniqueId: "MAGNET_BOMB";
@@ -32,7 +32,7 @@ export type CombatMoveV0074MoveIronHead = S<
32
32
  "COMBAT_V0074_MOVE_IRON_HEAD",
33
33
  {
34
34
  energyDelta: -50;
35
- power: 70;
35
+ power: 85;
36
36
  type: "POKEMON_TYPE_STEEL";
37
37
  uniqueId: "IRON_HEAD";
38
38
  vfxName: "iron_head";
@@ -160,7 +160,7 @@ export type CombatMoveV0381MoveDoubleIronBash = S<
160
160
  "COMBAT_V0381_MOVE_DOUBLE_IRON_BASH",
161
161
  {
162
162
  energyDelta: -35;
163
- power: 55;
163
+ power: 70;
164
164
  type: "POKEMON_TYPE_STEEL";
165
165
  uniqueId: "DOUBLE_IRON_BASH";
166
166
  vfxName: "double_iron_bash";
@@ -11,8 +11,8 @@ export type CombatMoveV0053MoveBubbleBeam = S<
11
11
  buffActivationChance: 1;
12
12
  targetAttackStatStageChange: -1;
13
13
  };
14
- energyDelta: -40;
15
- power: 25;
14
+ energyDelta: -50;
15
+ power: 50;
16
16
  type: "POKEMON_TYPE_WATER";
17
17
  uniqueId: "BUBBLE_BEAM";
18
18
  vfxName: "bubble_beam";
@@ -47,8 +47,8 @@ export type CombatMoveV0104MoveBrine = S<
47
47
  CombatMove<
48
48
  "COMBAT_V0104_MOVE_BRINE",
49
49
  {
50
- energyDelta: -50;
51
- power: 60;
50
+ energyDelta: -60;
51
+ power: 100;
52
52
  type: "POKEMON_TYPE_WATER";
53
53
  uniqueId: "BRINE";
54
54
  vfxName: "brine";
@@ -9,13 +9,12 @@ export type IapItemDisplayBattlepassticket1 = S<
9
9
  {
10
10
  category: "IAP_CATEGORY_FREE";
11
11
  description: "battle_pass_ticket_IAP_description";
12
- hidden: true;
13
- imageUrl: "https://storage.googleapis.com/prod-public-images/GBL_SharedSkies_2024.jpeg";
12
+ imageUrl: "https://asset-cdn-rel.nianticstatic.com/GameDesignAssets%2F035aa0ae_PGO-MCS_S24_GBL_v1-1024x576.jpg";
14
13
  sku: "battlepassticket.1";
15
- skuDisableTime: "2024-06-15T13:00:00";
16
- skuDisableTimeUtcMs: "1718456400000";
17
- skuEnableTime: "2023-02-27T20:00:00";
18
- skuEnableTimeUtcMs: "1677528000000";
14
+ skuDisableTime: "2026-09-22T13:00:00";
15
+ skuDisableTimeUtcMs: "1790082000000";
16
+ skuEnableTime: "2026-09-08T13:00:00";
17
+ skuEnableTimeUtcMs: "1788872400000";
19
18
  sortOrder: 1;
20
19
  spriteId: "battlepassticket.1";
21
20
  title: "iap_battle_pass_ticket_name";
@@ -51,6 +51,7 @@ export interface IapItemDisplayData {
51
51
  | "https://asset-cdn-rel.nianticstatic.com/GameDesignAssets%2F07b0cffa_PGO-MCS_2026_Ultra_Unlock_01_v6-1024x576.jpg"
52
52
  | "https://asset-cdn-rel.nianticstatic.com/GameDesignAssets%2F13d4dacd_PGO-MCS_Avatar_Maschiff_Top_v2-1024x576%20no%20logo.png"
53
53
  | "https://asset-cdn-rel.nianticstatic.com/GameDesignAssets%2F20ad29e8_PGO-MCS_Water_Festival_2026_TICKET_v3-1024x576.jpg"
54
+ | "https://asset-cdn-rel.nianticstatic.com/GameDesignAssets%2F035aa0ae_PGO-MCS_S24_GBL_v1-1024x576.jpg"
54
55
  | "https://asset-cdn-rel.nianticstatic.com/GameDesignAssets%2F68bf81f3_PGO-MCS_GO_Pass_Special_Anniversary_Pikachu_Celebration_v1-1024x576.jpg"
55
56
  | "https://asset-cdn-rel.nianticstatic.com/GameDesignAssets%2F84f00147_PGO-MCS_GO_Pass_August_2026_TICKET_v1-1024x576.jpg"
56
57
  | "https://asset-cdn-rel.nianticstatic.com/GameDesignAssets%2F20260113_pgo_s22_oricorio_1024x576_nologo.jpg"
@@ -88,7 +89,6 @@ export interface IapItemDisplayData {
88
89
  | "https://pgorelease-assets.nianticstatic.com/GameDesignAssets%2F3b085206_PGO-MCS_10th_Anniversary_Celebration_TICKET_v2-1024x576.jpg"
89
90
  | "https://pgorelease-assets.nianticstatic.com/GameDesignAssets%2F9398cb22_PGO-MCS_Skarmory_Super_Mega_Raid_Day_v4-1024x576.jpg"
90
91
  | "https://pgorelease-assets.nianticstatic.com/GameDesignAssets%2Fe2400534_20260511_pgo_s23_ShinyShaymin_1024x576_nologo.jpg"
91
- | "https://storage.googleapis.com/prod-public-images/GBL_SharedSkies_2024.jpeg"
92
92
  | "https://storage.googleapis.com/prod-public-images/gf20.jpg"
93
93
  | "https://storage.googleapis.com/prod-public-images/Safari_ticket_banner.png";
94
94
  maxLevel?: number;
@@ -101,7 +101,6 @@ export interface IapItemDisplayData {
101
101
  | "2022-06-02T13:00:00"
102
102
  | "2023-08-27T23:59:00"
103
103
  | "2023-11-24T18:15:00"
104
- | "2024-06-15T13:00:00"
105
104
  | "2024-10-10T22:00:00"
106
105
  | "2024-10-14T22:00:00"
107
106
  | "2024-11-04T10:00:00"
@@ -150,13 +149,13 @@ export interface IapItemDisplayData {
150
149
  | "2026-09-10T10:00:00"
151
150
  | "2026-09-12T17:00:00"
152
151
  | "2026-09-16T20:00:00"
152
+ | "2026-09-22T13:00:00"
153
153
  | "2026-10-08T10:00:00";
154
154
  skuDisableTimeUtcMs?:
155
155
  | "1595786400000"
156
156
  | "1654174800000"
157
157
  | "1693180740000"
158
158
  | "1700849700000"
159
- | "1718456400000"
160
159
  | "1728597600000"
161
160
  | "1728943200000"
162
161
  | "1730714400000"
@@ -205,6 +204,7 @@ export interface IapItemDisplayData {
205
204
  | "1789034400000"
206
205
  | "1789232400000"
207
206
  | "1789588800000"
207
+ | "1790082000000"
208
208
  | "1791453600000";
209
209
  skuEnableTime?:
210
210
  | "2019-03-14T08:00:00"
@@ -254,7 +254,8 @@ export interface IapItemDisplayData {
254
254
  | "2026-03-03T13:00:00"
255
255
  | "2026-07-06T00:00:00"
256
256
  | "2026-08-07T10:00:00"
257
- | "2026-08-31T10:00:00";
257
+ | "2026-08-31T10:00:00"
258
+ | "2026-09-08T13:00:00";
258
259
  skuEnableTimeUtcMs?:
259
260
  | "1552550400000"
260
261
  | "1572555600000"
@@ -303,7 +304,8 @@ export interface IapItemDisplayData {
303
304
  | "1772542800000"
304
305
  | "1783296000000"
305
306
  | "1786096800000"
306
- | "1788170400000";
307
+ | "1788170400000"
308
+ | "1788872400000";
307
309
  sortOrder?: number;
308
310
  spriteId?: string;
309
311
  title?: string;
@@ -239,10 +239,10 @@ export type MoveSettingsV0288MovePsychoBoost = S<
239
239
  damageWindowEndMs: 4000;
240
240
  damageWindowStartMs: 3500;
241
241
  durationMs: 4000;
242
- energyDelta: -50;
242
+ energyDelta: -33;
243
243
  movementId: "PSYCHO_BOOST";
244
244
  pokemonType: "POKEMON_TYPE_PSYCHIC";
245
- power: 70;
245
+ power: 130;
246
246
  staminaLossScalar: 0.01;
247
247
  trainerLevelMax: 100;
248
248
  trainerLevelMin: 1;
@@ -2595,7 +2595,7 @@ export type PokemonSettingsV0168PokemonAriados = S<
2595
2595
  diskRadiusM: 0.555;
2596
2596
  shoulderModeScale: 0.5;
2597
2597
  };
2598
- cinematicMoves: ["SHADOW_SNEAK", "MEGAHORN", "CROSS_POISON", "LUNGE", "TRAILBLAZE"];
2598
+ cinematicMoves: ["SHADOW_SNEAK", "MEGAHORN", "CROSS_POISON", "LUNGE", "TRAILBLAZE", "FOUL_PLAY"];
2599
2599
  encounter: {
2600
2600
  attackProbability: 0.1;
2601
2601
  attackTimerS: 20;
@@ -2662,7 +2662,7 @@ export type PokemonSettingsV0168PokemonAriadosNormal = S<
2662
2662
  diskRadiusM: 0.555;
2663
2663
  shoulderModeScale: 0.5;
2664
2664
  };
2665
- cinematicMoves: ["SHADOW_SNEAK", "MEGAHORN", "CROSS_POISON", "LUNGE", "TRAILBLAZE"];
2665
+ cinematicMoves: ["SHADOW_SNEAK", "MEGAHORN", "CROSS_POISON", "LUNGE", "TRAILBLAZE", "FOUL_PLAY"];
2666
2666
  encounter: {
2667
2667
  attackProbability: 0.1;
2668
2668
  attackTimerS: 20;
@@ -5180,7 +5180,7 @@ export type PokemonSettingsV0313PokemonVolbeat = S<
5180
5180
  diskRadiusM: 0.555;
5181
5181
  shoulderModeScale: 0.5;
5182
5182
  };
5183
- cinematicMoves: ["SIGNAL_BEAM", "BUG_BUZZ", "THUNDERBOLT"];
5183
+ cinematicMoves: ["SIGNAL_BEAM", "BUG_BUZZ", "THUNDERBOLT", "LUNGE"];
5184
5184
  encounter: {
5185
5185
  attackProbability: 0.1;
5186
5186
  attackTimerS: 20;
@@ -5211,7 +5211,7 @@ export type PokemonSettingsV0313PokemonVolbeat = S<
5211
5211
  pokedexHeightM: 0.71;
5212
5212
  pokedexWeightKg: 17.7;
5213
5213
  pokemonId: "VOLBEAT";
5214
- quickMoves: ["STRUGGLE_BUG_FAST", "TACKLE_FAST"];
5214
+ quickMoves: ["STRUGGLE_BUG_FAST", "TACKLE_FAST", "INFESTATION_FAST"];
5215
5215
  stats: {
5216
5216
  baseAttack: 143;
5217
5217
  baseDefense: 166;
@@ -5243,7 +5243,7 @@ export type PokemonSettingsV0313PokemonVolbeatNormal = S<
5243
5243
  diskRadiusM: 0.555;
5244
5244
  shoulderModeScale: 0.5;
5245
5245
  };
5246
- cinematicMoves: ["SIGNAL_BEAM", "BUG_BUZZ", "THUNDERBOLT"];
5246
+ cinematicMoves: ["SIGNAL_BEAM", "BUG_BUZZ", "THUNDERBOLT", "LUNGE"];
5247
5247
  encounter: {
5248
5248
  attackProbability: 0.1;
5249
5249
  attackTimerS: 20;
@@ -5275,7 +5275,7 @@ export type PokemonSettingsV0313PokemonVolbeatNormal = S<
5275
5275
  pokedexHeightM: 0.71;
5276
5276
  pokedexWeightKg: 17.7;
5277
5277
  pokemonId: "VOLBEAT";
5278
- quickMoves: ["STRUGGLE_BUG_FAST", "TACKLE_FAST"];
5278
+ quickMoves: ["STRUGGLE_BUG_FAST", "TACKLE_FAST", "INFESTATION_FAST"];
5279
5279
  stats: {
5280
5280
  baseAttack: 143;
5281
5281
  baseDefense: 166;
@@ -5307,7 +5307,7 @@ export type PokemonSettingsV0314PokemonIllumise = S<
5307
5307
  diskRadiusM: 0.555;
5308
5308
  shoulderModeScale: 0.5;
5309
5309
  };
5310
- cinematicMoves: ["SILVER_WIND", "BUG_BUZZ", "DAZZLING_GLEAM"];
5310
+ cinematicMoves: ["SILVER_WIND", "BUG_BUZZ", "DAZZLING_GLEAM", "SHADOW_BALL"];
5311
5311
  encounter: {
5312
5312
  attackProbability: 0.1;
5313
5313
  attackTimerS: 20;
@@ -5338,7 +5338,7 @@ export type PokemonSettingsV0314PokemonIllumise = S<
5338
5338
  pokedexHeightM: 0.61;
5339
5339
  pokedexWeightKg: 17.7;
5340
5340
  pokemonId: "ILLUMISE";
5341
- quickMoves: ["STRUGGLE_BUG_FAST", "TACKLE_FAST"];
5341
+ quickMoves: ["STRUGGLE_BUG_FAST", "TACKLE_FAST", "INFESTATION_FAST"];
5342
5342
  stats: {
5343
5343
  baseAttack: 143;
5344
5344
  baseDefense: 166;
@@ -5370,7 +5370,7 @@ export type PokemonSettingsV0314PokemonIllumiseNormal = S<
5370
5370
  diskRadiusM: 0.555;
5371
5371
  shoulderModeScale: 0.5;
5372
5372
  };
5373
- cinematicMoves: ["SILVER_WIND", "BUG_BUZZ", "DAZZLING_GLEAM"];
5373
+ cinematicMoves: ["SILVER_WIND", "BUG_BUZZ", "DAZZLING_GLEAM", "SHADOW_BALL"];
5374
5374
  encounter: {
5375
5375
  attackProbability: 0.1;
5376
5376
  attackTimerS: 20;
@@ -5402,7 +5402,7 @@ export type PokemonSettingsV0314PokemonIllumiseNormal = S<
5402
5402
  pokedexHeightM: 0.61;
5403
5403
  pokedexWeightKg: 17.7;
5404
5404
  pokemonId: "ILLUMISE";
5405
- quickMoves: ["STRUGGLE_BUG_FAST", "TACKLE_FAST"];
5405
+ quickMoves: ["STRUGGLE_BUG_FAST", "TACKLE_FAST", "INFESTATION_FAST"];
5406
5406
  stats: {
5407
5407
  baseAttack: 143;
5408
5408
  baseDefense: 166;
@@ -1206,7 +1206,7 @@ export type PokemonSettingsV0229PokemonHoundoom = S<
1206
1206
  diskRadiusM: 0.555;
1207
1207
  shoulderModeScale: 0.5;
1208
1208
  };
1209
- cinematicMoves: ["CRUNCH", "FIRE_BLAST", "FOUL_PLAY", "FLAMETHROWER"];
1209
+ cinematicMoves: ["CRUNCH", "FIRE_BLAST", "FOUL_PLAY", "FLAMETHROWER", "TRAILBLAZE"];
1210
1210
  encounter: {
1211
1211
  attackProbability: 0.2;
1212
1212
  attackTimerS: 20;
@@ -1251,7 +1251,7 @@ export type PokemonSettingsV0229PokemonHoundoom = S<
1251
1251
  pokedexHeightM: 1.4;
1252
1252
  pokedexWeightKg: 35;
1253
1253
  pokemonId: "HOUNDOOM";
1254
- quickMoves: ["SNARL_FAST", "FIRE_FANG_FAST"];
1254
+ quickMoves: ["SNARL_FAST", "FIRE_FANG_FAST", "INCINERATE_FAST"];
1255
1255
  shadow: {
1256
1256
  purificationCandyNeeded: 3;
1257
1257
  purificationStardustNeeded: 3000;
@@ -1312,7 +1312,7 @@ export type PokemonSettingsV0229PokemonHoundoomNormal = S<
1312
1312
  diskRadiusM: 0.555;
1313
1313
  shoulderModeScale: 0.5;
1314
1314
  };
1315
- cinematicMoves: ["CRUNCH", "FIRE_BLAST", "FOUL_PLAY", "FLAMETHROWER"];
1315
+ cinematicMoves: ["CRUNCH", "FIRE_BLAST", "FOUL_PLAY", "FLAMETHROWER", "TRAILBLAZE"];
1316
1316
  encounter: {
1317
1317
  attackProbability: 0.2;
1318
1318
  attackTimerS: 20;
@@ -1358,7 +1358,7 @@ export type PokemonSettingsV0229PokemonHoundoomNormal = S<
1358
1358
  pokedexHeightM: 1.4;
1359
1359
  pokedexWeightKg: 35;
1360
1360
  pokemonId: "HOUNDOOM";
1361
- quickMoves: ["SNARL_FAST", "FIRE_FANG_FAST"];
1361
+ quickMoves: ["SNARL_FAST", "FIRE_FANG_FAST", "INCINERATE_FAST"];
1362
1362
  shadow: {
1363
1363
  purificationCandyNeeded: 3;
1364
1364
  purificationStardustNeeded: 3000;
@@ -2716,7 +2716,7 @@ export type PokemonSettingsV0491PokemonDarkrai = S<
2716
2716
  shoulderModeScale: 0.5;
2717
2717
  };
2718
2718
  candyToEvolve: 25;
2719
- cinematicMoves: ["FOCUS_BLAST", "SHADOW_BALL", "DARK_PULSE"];
2719
+ cinematicMoves: ["FOCUS_BLAST", "SHADOW_BALL", "DARK_PULSE", "FOUL_PLAY"];
2720
2720
  eliteCinematicMove: ["SLUDGE_BOMB"];
2721
2721
  encounter: {
2722
2722
  attackProbability: 0.1;
@@ -2751,7 +2751,7 @@ export type PokemonSettingsV0491PokemonDarkrai = S<
2751
2751
  pokedexWeightKg: 50.5;
2752
2752
  pokemonClass: "POKEMON_CLASS_MYTHIC";
2753
2753
  pokemonId: "DARKRAI";
2754
- quickMoves: ["SNARL_FAST", "FEINT_ATTACK_FAST"];
2754
+ quickMoves: ["SNARL_FAST", "FEINT_ATTACK_FAST", "SUCKER_PUNCH_FAST"];
2755
2755
  shadow: {
2756
2756
  purificationCandyNeeded: 20;
2757
2757
  purificationStardustNeeded: 20000;
@@ -2791,7 +2791,7 @@ export type PokemonSettingsV0491PokemonDarkraiNormal = S<
2791
2791
  shoulderModeScale: 0.5;
2792
2792
  };
2793
2793
  candyToEvolve: 25;
2794
- cinematicMoves: ["FOCUS_BLAST", "SHADOW_BALL", "DARK_PULSE"];
2794
+ cinematicMoves: ["FOCUS_BLAST", "SHADOW_BALL", "DARK_PULSE", "FOUL_PLAY"];
2795
2795
  eliteCinematicMove: ["SLUDGE_BOMB"];
2796
2796
  encounter: {
2797
2797
  attackProbability: 0.1;
@@ -2827,7 +2827,7 @@ export type PokemonSettingsV0491PokemonDarkraiNormal = S<
2827
2827
  pokedexWeightKg: 50.5;
2828
2828
  pokemonClass: "POKEMON_CLASS_MYTHIC";
2829
2829
  pokemonId: "DARKRAI";
2830
- quickMoves: ["SNARL_FAST", "FEINT_ATTACK_FAST"];
2830
+ quickMoves: ["SNARL_FAST", "FEINT_ATTACK_FAST", "SUCKER_PUNCH_FAST"];
2831
2831
  shadow: {
2832
2832
  purificationCandyNeeded: 20;
2833
2833
  purificationStardustNeeded: 20000;
@@ -3698,7 +3698,7 @@ export type PokemonSettingsV0571PokemonZoroark = S<
3698
3698
  pokedexHeightM: 1.6;
3699
3699
  pokedexWeightKg: 81.1;
3700
3700
  pokemonId: "ZOROARK";
3701
- quickMoves: ["SHADOW_CLAW_FAST", "SNARL_FAST"];
3701
+ quickMoves: ["SHADOW_CLAW_FAST", "SNARL_FAST", "SUCKER_PUNCH_FAST"];
3702
3702
  stats: {
3703
3703
  baseAttack: 250;
3704
3704
  baseDefense: 127;
@@ -3766,7 +3766,7 @@ export type PokemonSettingsV0571PokemonZoroarkNormal = S<
3766
3766
  pokedexHeightM: 1.6;
3767
3767
  pokedexWeightKg: 81.1;
3768
3768
  pokemonId: "ZOROARK";
3769
- quickMoves: ["SHADOW_CLAW_FAST", "SNARL_FAST"];
3769
+ quickMoves: ["SHADOW_CLAW_FAST", "SNARL_FAST", "SUCKER_PUNCH_FAST"];
3770
3770
  stats: {
3771
3771
  baseAttack: 250;
3772
3772
  baseDefense: 127;
@@ -6047,7 +6047,7 @@ export type PokemonSettingsV0861PokemonGrimmsnarl = S<
6047
6047
  cylinderHeightM: 1.48;
6048
6048
  cylinderRadiusM: 1;
6049
6049
  };
6050
- cinematicMoves: ["FOUL_PLAY", "DARK_PULSE", "PLAY_ROUGH", "POWER_UP_PUNCH"];
6050
+ cinematicMoves: ["FOUL_PLAY", "DARK_PULSE", "PLAY_ROUGH", "POWER_UP_PUNCH", "DRAINING_KISS"];
6051
6051
  encounter: {
6052
6052
  attackProbability: 0.3;
6053
6053
  bonusCandyCaptureReward: 7;
@@ -6107,7 +6107,7 @@ export type PokemonSettingsV0861PokemonGrimmsnarlNormal = S<
6107
6107
  cylinderHeightM: 1.48;
6108
6108
  cylinderRadiusM: 1;
6109
6109
  };
6110
- cinematicMoves: ["FOUL_PLAY", "DARK_PULSE", "PLAY_ROUGH", "POWER_UP_PUNCH"];
6110
+ cinematicMoves: ["FOUL_PLAY", "DARK_PULSE", "PLAY_ROUGH", "POWER_UP_PUNCH", "DRAINING_KISS"];
6111
6111
  encounter: {
6112
6112
  attackProbability: 0.3;
6113
6113
  bonusCandyCaptureReward: 7;
@@ -6858,7 +6858,7 @@ export type PokemonSettingsV0983PokemonKingambit = S<
6858
6858
  pokedexHeightM: 2;
6859
6859
  pokedexWeightKg: 120;
6860
6860
  pokemonId: "KINGAMBIT";
6861
- quickMoves: ["SNARL_FAST", "METAL_CLAW_FAST", "METAL_SOUND_FAST"];
6861
+ quickMoves: ["SNARL_FAST", "METAL_CLAW_FAST", "METAL_SOUND_FAST", "LOW_KICK_FAST"];
6862
6862
  raidBossDistanceOffset: 4;
6863
6863
  stats: {
6864
6864
  baseAttack: 238;
@@ -6916,7 +6916,7 @@ export type PokemonSettingsV0983PokemonKingambitNormal = S<
6916
6916
  pokedexHeightM: 2;
6917
6917
  pokedexWeightKg: 120;
6918
6918
  pokemonId: "KINGAMBIT";
6919
- quickMoves: ["SNARL_FAST", "METAL_CLAW_FAST", "METAL_SOUND_FAST"];
6919
+ quickMoves: ["SNARL_FAST", "METAL_CLAW_FAST", "METAL_SOUND_FAST", "LOW_KICK_FAST"];
6920
6920
  raidBossDistanceOffset: 4;
6921
6921
  stats: {
6922
6922
  baseAttack: 238;