pogo-masterfile-types 0.1.14 → 0.1.16

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 (63) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/badge-settings/entries/event-badge-event-badge-settings.d.ts +29 -1
  3. package/dist/badge-settings/lookup-table.d.ts +4 -0
  4. package/dist/badge-settings/types.d.ts +1 -1
  5. package/dist/code-gate-proto/entries/index.d.ts +1 -3
  6. package/dist/code-gate-proto/lookup-table.d.ts +0 -2
  7. package/dist/code-gate-proto/types.d.ts +1 -1
  8. package/dist/combat-league/entries/default-great.d.ts +16 -0
  9. package/dist/combat-league/entries/no-battle-party-combat-league-template-id.d.ts +36 -2
  10. package/dist/combat-league/lookup-table.d.ts +2 -0
  11. package/dist/combat-league/types.d.ts +1 -1
  12. package/dist/deprecated.d.ts +9 -4
  13. package/dist/entries.d.ts +3 -0
  14. package/dist/event-pass-settings/entries/index.d.ts +95 -0
  15. package/dist/event-pass-settings/index.d.ts +4 -0
  16. package/dist/event-pass-settings/lookup-table.d.ts +8 -0
  17. package/dist/event-pass-settings/types.d.ts +81 -0
  18. package/dist/event-pass-tier-settings/entries/free/index.d.ts +13 -0
  19. package/dist/event-pass-tier-settings/entries/{free.d.ts → free/may2026.d.ts} +424 -424
  20. package/dist/event-pass-tier-settings/entries/free/springmarathon2026.d.ts +1175 -0
  21. package/dist/event-pass-tier-settings/entries/premium/index.d.ts +13 -0
  22. package/dist/event-pass-tier-settings/entries/{premium.d.ts → premium/may2026.d.ts} +424 -424
  23. package/dist/event-pass-tier-settings/entries/premium/springmarathon2026.d.ts +1121 -0
  24. package/dist/event-pass-tier-settings/lookup-table.d.ts +1080 -840
  25. package/dist/event-pass-tier-settings/types.d.ts +61 -6
  26. package/dist/feature-gate/entries/index.d.ts +1 -19
  27. package/dist/feature-gate/lookup-table.d.ts +0 -4
  28. package/dist/feature-gate/types.d.ts +1 -1
  29. package/dist/form-settings/entries/forms.d.ts +4 -0
  30. package/dist/gender-settings/entries/form.d.ts +15 -1
  31. package/dist/gender-settings/lookup-table.d.ts +2 -0
  32. package/dist/gender-settings/types.d.ts +1 -1
  33. package/dist/iap-item-display/entries/bundle.d.ts +7 -17
  34. package/dist/iap-item-display/entries/global-event-ticket.d.ts +57 -82
  35. package/dist/iap-item-display/entries/no-category.d.ts +91 -41
  36. package/dist/iap-item-display/lookup-table.d.ts +12 -8
  37. package/dist/iap-item-display/types.d.ts +16 -16
  38. package/dist/item-expiration-settings/entries/index.d.ts +5 -6
  39. package/dist/item-expiration-settings/types.d.ts +5 -7
  40. package/dist/item-settings/entries/event-pass-point.d.ts +3 -5
  41. package/dist/item-settings/entries/global-event-ticket.d.ts +49 -47
  42. package/dist/item-settings/entries/incense.d.ts +2 -2
  43. package/dist/item-settings/types.d.ts +28 -29
  44. package/dist/lookup-table.d.ts +9 -0
  45. package/dist/pokemon-extended-settings/entries/bread-overrides-form.d.ts +143 -1
  46. package/dist/pokemon-extended-settings/entries/bread-overrides.d.ts +77 -1
  47. package/dist/pokemon-extended-settings/entries/form.d.ts +1 -37
  48. package/dist/pokemon-extended-settings/entries/misc.d.ts +1 -35
  49. package/dist/pokemon-extended-settings/lookup-table.d.ts +2 -0
  50. package/dist/pokemon-extended-settings/types.d.ts +1 -1
  51. package/dist/pokemon-settings/entries/electric.d.ts +71 -1
  52. package/dist/pokemon-settings/entries/fighting.d.ts +6 -6
  53. package/dist/pokemon-settings/lookup-table.d.ts +2 -0
  54. package/dist/pokemon-settings/types.d.ts +1 -1
  55. package/dist/roll-back/entries/index.d.ts +2 -2
  56. package/dist/roll-back/lookup-table.d.ts +2 -2
  57. package/dist/singletons/entries/settings.d.ts +6 -67
  58. package/dist/singletons/lookup-table.d.ts +0 -2
  59. package/dist/singletons/types.d.ts +0 -3
  60. package/dist/types.d.ts +4 -0
  61. package/dist/vs-seeker-loot/entries/index.d.ts +90 -90
  62. package/dist/vs-seeker-pokemon-rewards/types.d.ts +2 -2
  63. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
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.16] - 2026-05-15
6
+
7
+ Automated regeneration from upstream masterfile commit `d5f2d83e76e59ffb463e30cf6542b356f1faab22`.
8
+
9
+ ## [0.1.15] - 2026-05-11
10
+
11
+ Automated regeneration from upstream masterfile commit `d168ac4b7be72e48bd744f51fcb716918e7f687b`.
12
+
5
13
  ## [0.1.14] - 2026-05-10
6
14
 
7
15
  Automated regeneration from upstream masterfile commit `af379b35f08bf90feb0946be90fe1156d2858498`.
@@ -1,4 +1,4 @@
1
- // Generated from Pokémon GO masterfile — group "badgeSettings", split "event-badge-event-badge-settings", 90 entries.
1
+ // Generated from Pokémon GO masterfile — group "badgeSettings", split "event-badge-event-badge-settings", 92 entries.
2
2
 
3
3
  import type { S } from "../../_utils";
4
4
  import type { BadgeSettings } from "../types";
@@ -627,6 +627,19 @@ export type BadgeSettingsEvent0189 = S<
627
627
  }
628
628
  >
629
629
  >;
630
+ export type BadgeSettingsEvent0190 = S<
631
+ BadgeSettings<
632
+ "BADGE_EVENT_0190",
633
+ {
634
+ badgeRank: 2;
635
+ eventBadge: true;
636
+ eventBadgeSettings: {
637
+ obEventBadgeSettingsNumber6: 1;
638
+ };
639
+ targets: [100];
640
+ }
641
+ >
642
+ >;
630
643
  export type BadgeSettingsEvent0193 = S<
631
644
  BadgeSettings<
632
645
  "BADGE_EVENT_0193",
@@ -653,6 +666,19 @@ export type BadgeSettingsEvent0194 = S<
653
666
  }
654
667
  >
655
668
  >;
669
+ export type BadgeSettingsEvent0195 = S<
670
+ BadgeSettings<
671
+ "BADGE_EVENT_0195",
672
+ {
673
+ badgeRank: 2;
674
+ eventBadge: true;
675
+ eventBadgeSettings: {
676
+ obEventBadgeSettingsNumber6: 1;
677
+ };
678
+ targets: [100];
679
+ }
680
+ >
681
+ >;
656
682
  export type BadgeSettingsEvent0196 = S<
657
683
  BadgeSettings<
658
684
  "BADGE_EVENT_0196",
@@ -1223,8 +1249,10 @@ export type BadgeSettingsEventBadgeEventBadgeSettingsMasterfileEntry =
1223
1249
  | BadgeSettingsEvent0187
1224
1250
  | BadgeSettingsEvent0188
1225
1251
  | BadgeSettingsEvent0189
1252
+ | BadgeSettingsEvent0190
1226
1253
  | BadgeSettingsEvent0193
1227
1254
  | BadgeSettingsEvent0194
1255
+ | BadgeSettingsEvent0195
1228
1256
  | BadgeSettingsEvent0196
1229
1257
  | BadgeSettingsEvent0200
1230
1258
  | BadgeSettingsEvent0205
@@ -147,8 +147,10 @@ import type {
147
147
  BadgeSettingsEvent0187,
148
148
  BadgeSettingsEvent0188,
149
149
  BadgeSettingsEvent0189,
150
+ BadgeSettingsEvent0190,
150
151
  BadgeSettingsEvent0193,
151
152
  BadgeSettingsEvent0194,
153
+ BadgeSettingsEvent0195,
152
154
  BadgeSettingsEvent0196,
153
155
  BadgeSettingsEvent0200,
154
156
  BadgeSettingsEvent0205,
@@ -1115,8 +1117,10 @@ export interface BadgeSettingsLookup {
1115
1117
  BADGE_EVENT_0187: BadgeSettingsEvent0187;
1116
1118
  BADGE_EVENT_0188: BadgeSettingsEvent0188;
1117
1119
  BADGE_EVENT_0189: BadgeSettingsEvent0189;
1120
+ BADGE_EVENT_0190: BadgeSettingsEvent0190;
1118
1121
  BADGE_EVENT_0193: BadgeSettingsEvent0193;
1119
1122
  BADGE_EVENT_0194: BadgeSettingsEvent0194;
1123
+ BADGE_EVENT_0195: BadgeSettingsEvent0195;
1120
1124
  BADGE_EVENT_0196: BadgeSettingsEvent0196;
1121
1125
  BADGE_EVENT_0200: BadgeSettingsEvent0200;
1122
1126
  BADGE_EVENT_0205: BadgeSettingsEvent0205;
@@ -1,4 +1,4 @@
1
- // Generated from Pokémon GO masterfile — group "badgeSettings", 965 entries (structural types).
1
+ // Generated from Pokémon GO masterfile — group "badgeSettings", 967 entries (structural types).
2
2
 
3
3
  import type { W } from "../_utils";
4
4
 
@@ -1,4 +1,4 @@
1
- // Generated from Pokémon GO masterfile — group "codeGateProto", 13 entries (variant aliases).
1
+ // Generated from Pokémon GO masterfile — group "codeGateProto", 12 entries (variant aliases).
2
2
 
3
3
  import type { S } from "../../_utils";
4
4
  import type { CodeGateProto } from "../types";
@@ -52,7 +52,6 @@ export type CodeGateProtoMapThemeLowPerfCodeGate = S<CodeGateProto<"MAP_THEME_LO
52
52
  export type CodeGateProtoPredictChargeMoveOnSubmitRollBackCodeGate = S<CodeGateProto<"PREDICT_CHARGE_MOVE_ON_SUBMIT_ROLL_BACK_CODE_GATE">>;
53
53
  export type CodeGateProtoPushGatewayMultiActionCodeGate = S<CodeGateProto<"PUSH_GATEWAY_MULTI_ACTION_CODE_GATE">>;
54
54
  export type CodeGateProtoStampCollectionSnapshotEnabledCodeGate = S<CodeGateProto<"STAMP_COLLECTION_SNAPSHOT_ENABLED_CODE_GATE">>;
55
- export type CodeGateProtoTodayViewV3CodeGate = S<CodeGateProto<"TODAY_VIEW_V3_CODE_GATE">>;
56
55
  export type CodeGateProtoUseExtendedSettingsForMaxScaleCodeGate = S<CodeGateProto<"USE_EXTENDED_SETTINGS_FOR_MAX_SCALE_CODE_GATE">>;
57
56
  export type CodeGateProtoUseGmtSkuDataCodeGate = S<CodeGateProto<"USE_GMT_SKU_DATA_CODE_GATE">>;
58
57
 
@@ -67,7 +66,6 @@ export type CodeGateProtoMasterfileEntry =
67
66
  | CodeGateProtoPredictChargeMoveOnSubmitRollBackCodeGate
68
67
  | CodeGateProtoPushGatewayMultiActionCodeGate
69
68
  | CodeGateProtoStampCollectionSnapshotEnabledCodeGate
70
- | CodeGateProtoTodayViewV3CodeGate
71
69
  | CodeGateProtoUseExtendedSettingsForMaxScaleCodeGate
72
70
  | CodeGateProtoUseGmtSkuDataCodeGate;
73
71
 
@@ -11,7 +11,6 @@ import type {
11
11
  CodeGateProtoPredictChargeMoveOnSubmitRollBackCodeGate,
12
12
  CodeGateProtoPushGatewayMultiActionCodeGate,
13
13
  CodeGateProtoStampCollectionSnapshotEnabledCodeGate,
14
- CodeGateProtoTodayViewV3CodeGate,
15
14
  CodeGateProtoUseExtendedSettingsForMaxScaleCodeGate,
16
15
  CodeGateProtoUseGmtSkuDataCodeGate,
17
16
  } from "./entries";
@@ -27,7 +26,6 @@ export interface CodeGateProtoLookup {
27
26
  PREDICT_CHARGE_MOVE_ON_SUBMIT_ROLL_BACK_CODE_GATE: CodeGateProtoPredictChargeMoveOnSubmitRollBackCodeGate;
28
27
  PUSH_GATEWAY_MULTI_ACTION_CODE_GATE: CodeGateProtoPushGatewayMultiActionCodeGate;
29
28
  STAMP_COLLECTION_SNAPSHOT_ENABLED_CODE_GATE: CodeGateProtoStampCollectionSnapshotEnabledCodeGate;
30
- TODAY_VIEW_V3_CODE_GATE: CodeGateProtoTodayViewV3CodeGate;
31
29
  USE_EXTENDED_SETTINGS_FOR_MAX_SCALE_CODE_GATE: CodeGateProtoUseExtendedSettingsForMaxScaleCodeGate;
32
30
  USE_GMT_SKU_DATA_CODE_GATE: CodeGateProtoUseGmtSkuDataCodeGate;
33
31
  }
@@ -1,4 +1,4 @@
1
- // Generated from Pokémon GO masterfile — group "codeGateProto", 13 entries (structural types).
1
+ // Generated from Pokémon GO masterfile — group "codeGateProto", 12 entries (structural types).
2
2
 
3
3
  import type { W } from "../_utils";
4
4
 
@@ -9676,6 +9676,22 @@ export type CombatLeagueVsSeekerGreatCatchS22 = S<
9676
9676
  "VOLCANION",
9677
9677
  "MARSHADOW",
9678
9678
  "MIMIKYU",
9679
+ "XERNEAS",
9680
+ "YVELTAL",
9681
+ "COBALION",
9682
+ "TERRAKION",
9683
+ "VIRIZION",
9684
+ "RESHIRAM",
9685
+ "ZEKROM",
9686
+ "KYUREM",
9687
+ "TAPU_KOKO",
9688
+ "TAPU_LELE",
9689
+ "TAPU_BULU",
9690
+ "SOLGALEO",
9691
+ "LUNALA",
9692
+ "ZACIAN",
9693
+ "ZAMAZENTA",
9694
+ "ENAMORUS",
9679
9695
  ];
9680
9696
  battlePartyCombatLeagueTemplateId: "COMBAT_LEAGUE_DEFAULT_GREAT";
9681
9697
  iconUrl: "https://storage.googleapis.com/prod-public-images/premierball_sprite.png";
@@ -1,4 +1,4 @@
1
- // Generated from Pokémon GO masterfile — group "combatLeague", split "no-battle-party-combat-league-template-id", 3 entries.
1
+ // Generated from Pokémon GO masterfile — group "combatLeague", split "no-battle-party-combat-league-template-id", 4 entries.
2
2
 
3
3
  import type { S } from "../../_utils";
4
4
  import type { CombatLeague } from "../types";
@@ -75,6 +75,36 @@ export type CombatLeagueDefaultMaster = S<
75
75
  }
76
76
  >
77
77
  >;
78
+ export type CombatLeagueDefaultMasterNpc = S<
79
+ CombatLeague<
80
+ "COMBAT_LEAGUE_DEFAULT_MASTER_NPC",
81
+ {
82
+ allowTempEvos: true;
83
+ badgeType: "BADGE_MASTER_LEAGUE";
84
+ iconUrl: "https://storage.googleapis.com/prod-public-images/pogo_master_league.png";
85
+ leagueType: "STANDARD";
86
+ pokemonCondition: [
87
+ {
88
+ type: "WITH_POKEMON_CP_LIMIT";
89
+ withPokemonCpLimit: {
90
+ maxCp: 10000;
91
+ };
92
+ },
93
+ ];
94
+ title: "combat_master_league";
95
+ unlockCondition: [
96
+ {
97
+ minPokemonCount: 3;
98
+ type: "WITH_POKEMON_CP_LIMIT";
99
+ withPokemonCpLimit: {
100
+ maxCp: 50000;
101
+ minCp: 2500;
102
+ };
103
+ },
104
+ ];
105
+ }
106
+ >
107
+ >;
78
108
  export type CombatLeagueDefaultUltra = S<
79
109
  CombatLeague<
80
110
  "COMBAT_LEAGUE_DEFAULT_ULTRA",
@@ -107,4 +137,8 @@ export type CombatLeagueDefaultUltra = S<
107
137
  >
108
138
  >;
109
139
 
110
- export type CombatLeagueNoBattlePartyCombatLeagueTemplateIdMasterfileEntry = CombatLeagueDefaultGreat | CombatLeagueDefaultMaster | CombatLeagueDefaultUltra;
140
+ export type CombatLeagueNoBattlePartyCombatLeagueTemplateIdMasterfileEntry =
141
+ | CombatLeagueDefaultGreat
142
+ | CombatLeagueDefaultMaster
143
+ | CombatLeagueDefaultMasterNpc
144
+ | CombatLeagueDefaultUltra;
@@ -3,6 +3,7 @@
3
3
  import type {
4
4
  CombatLeagueDefaultGreat,
5
5
  CombatLeagueDefaultMaster,
6
+ CombatLeagueDefaultMasterNpc,
6
7
  CombatLeagueDefaultUltra,
7
8
  CombatLeagueSafariBarcelona2023Test,
8
9
  CombatLeagueSafariBarcelona202301,
@@ -111,6 +112,7 @@ import type {
111
112
  export interface CombatLeagueLookup {
112
113
  COMBAT_LEAGUE_DEFAULT_GREAT: CombatLeagueDefaultGreat;
113
114
  COMBAT_LEAGUE_DEFAULT_MASTER: CombatLeagueDefaultMaster;
115
+ COMBAT_LEAGUE_DEFAULT_MASTER_NPC: CombatLeagueDefaultMasterNpc;
114
116
  COMBAT_LEAGUE_DEFAULT_ULTRA: CombatLeagueDefaultUltra;
115
117
  COMBAT_LEAGUE_SAFARI_BARCELONA_2023_01: CombatLeagueSafariBarcelona202301;
116
118
  COMBAT_LEAGUE_SAFARI_BARCELONA_2023_02: CombatLeagueSafariBarcelona202302;
@@ -1,4 +1,4 @@
1
- // Generated from Pokémon GO masterfile — group "combatLeague", 105 entries (structural types).
1
+ // Generated from Pokémon GO masterfile — group "combatLeague", 106 entries (structural types).
2
2
 
3
3
  import type { W } from "../_utils";
4
4
  import type { TypeEffectiveTemplateID } from "../type-effective/entries";
@@ -423,7 +423,7 @@ type DeprecatedClientQuestTemplateIds =
423
423
  | "LEVEL_50_CAP_SUB_2"
424
424
  | "LEVEL_50_CAP_SUB_3";
425
425
 
426
- /** @deprecated lastSeen 2026-01-2430 entries */
426
+ /** @deprecated lastSeen 2026-05-1531 entries */
427
427
  type DeprecatedCodeGateProtoIds =
428
428
  | "AGE_CONFIRM_CODE_GATE"
429
429
  | "BF_PLUS_ROLLOUT_CODE_GATE"
@@ -452,6 +452,7 @@ type DeprecatedCodeGateProtoIds =
452
452
  | "SHOW_RAID_GROUP_CODE_GATE"
453
453
  | "SHOW_STAMP_GIFTING_SETTING_CODE_GATE"
454
454
  | "SPECIAL_TRADE_SURFACING_CODE_GATE"
455
+ | "TODAY_VIEW_V3_CODE_GATE"
455
456
  | "TRADE_SPECIAL_BACKGROUND_CODE_GATE"
456
457
  | "USE_ITEM_MOVE_REROLL_CODE_GATE"
457
458
  | "WEEKLY_CHALLENGES_ROLLOUT_CODE_GATE";
@@ -459,7 +460,7 @@ type DeprecatedCodeGateProtoIds =
459
460
  /** @deprecated lastSeen 2025-01-10 — 1 entries */
460
461
  type DeprecatedEggTransparencySettingsIds = "EGG_TRANSPARENCY_SETTINGS";
461
462
 
462
- /** @deprecated lastSeen 2026-05-08 — 26 entries */
463
+ /** @deprecated lastSeen 2026-05-08 — 25 entries */
463
464
  type DeprecatedEventPassSettingsIds =
464
465
  | "EVENT_PASS_30ANNIV2026_EVENT"
465
466
  | "EVENT_PASS_APRIL2025_SEASON"
@@ -479,7 +480,6 @@ type DeprecatedEventPassSettingsIds =
479
480
  | "EVENT_PASS_JUNE2025_SEASON"
480
481
  | "EVENT_PASS_MARCH2026_SEASON"
481
482
  | "EVENT_PASS_MAY2025_SEASON"
482
- | "EVENT_PASS_MAY2026_SEASON"
483
483
  | "EVENT_PASS_NOVEMBER2025_SEASON"
484
484
  | "EVENT_PASS_OCTOBER2025_SEASON"
485
485
  | "EVENT_PASS_SEPTEMBER2025_SEASON"
@@ -12390,6 +12390,9 @@ type DeprecatedEvolvePreviewSettingsIds = "EVOLVE_PREVIEW_SETTINGS";
12390
12390
  /** @deprecated lastSeen 2025-01-10 — 1 entries */
12391
12391
  type DeprecatedExtendedPrimalSettingsIds = "EXTENDED_PRIMAL_SETTINGS";
12392
12392
 
12393
+ /** @deprecated lastSeen 2026-05-15 — 2 entries */
12394
+ type DeprecatedFeatureGateIds = "EVENT_LIST_FEATURE_GATE" | "UPDATE_TICKETS_STRING_FEATURE_GATE";
12395
+
12393
12396
  /** @deprecated lastSeen 2025-01-10 — 1 entries */
12394
12397
  type DeprecatedFormsRefactorSettingsIds = "FORMS_REFACTOR_SETTINGS";
12395
12398
 
@@ -12482,8 +12485,9 @@ type DeprecatedPokemonInfoPanelSettingsIds = "POKEMON_INFO_PANEL_SETTINGS";
12482
12485
  /** @deprecated lastSeen 2025-01-10 — 1 entries */
12483
12486
  type DeprecatedQuestEvolutionSettingsIds = "QUEST_EVOLUTION_SETTINGS";
12484
12487
 
12485
- /** @deprecated lastSeen 2026-04-075 entries */
12488
+ /** @deprecated lastSeen 2026-05-156 entries */
12486
12489
  type DeprecatedRollBackIds =
12490
+ | "BIDIRECTIONAL_FP_WEEKLY_CHALLENGE_REWARD_ROLL_BACK"
12487
12491
  | "DELAYED_NOTIF_ROLL_BACK"
12488
12492
  | "PERIODICALLY_CHECK_FOR_VISIBILITY_ROLL_BACK"
12489
12493
  | "REMOVE_UI_CAM_ROLL_BACK"
@@ -12536,6 +12540,7 @@ export type DeprecatedTemplateId =
12536
12540
  | DeprecatedEvolutionChainDisplaySettingsIds
12537
12541
  | DeprecatedEvolvePreviewSettingsIds
12538
12542
  | DeprecatedExtendedPrimalSettingsIds
12543
+ | DeprecatedFeatureGateIds
12539
12544
  | DeprecatedFormsRefactorSettingsIds
12540
12545
  | DeprecatedFriendProfileSettingsIds
12541
12546
  | DeprecatedGymLevelIds
package/dist/entries.d.ts CHANGED
@@ -16,6 +16,7 @@ import type { CombatNpcPersonalityMasterfileEntry } from "./combat-npc-personali
16
16
  import type { CombatNpcTrainerMasterfileEntry } from "./combat-npc-trainer/entries";
17
17
  import type { CombatRankingProtoSettingsMasterfileEntry } from "./combat-ranking-proto-settings/entries";
18
18
  import type { CombatTypeMasterfileEntry } from "./combat-type/entries";
19
+ import type { EventPassSettingsMasterfileEntry } from "./event-pass-settings/entries";
19
20
  import type { EventPassTierSettingsMasterfileEntry } from "./event-pass-tier-settings/entries";
20
21
  import type { EvolutionChainDisplaySettingsMasterfileEntry } from "./evolution-chain-display-settings/entries";
21
22
  import type { EvolutionQuestTemplateMasterfileEntry } from "./evolution-quest-template/entries";
@@ -76,6 +77,7 @@ export type * from "./combat-npc-personality/entries";
76
77
  export type * from "./combat-npc-trainer/entries";
77
78
  export type * from "./combat-ranking-proto-settings/entries";
78
79
  export type * from "./combat-type/entries";
80
+ export type * from "./event-pass-settings/entries";
79
81
  export type * from "./event-pass-tier-settings/entries";
80
82
  export type * from "./evolution-chain-display-settings/entries";
81
83
  export type * from "./evolution-quest-template/entries";
@@ -137,6 +139,7 @@ export type MasterfileEntry =
137
139
  | CombatNpcTrainerMasterfileEntry
138
140
  | CombatRankingProtoSettingsMasterfileEntry
139
141
  | CombatTypeMasterfileEntry
142
+ | EventPassSettingsMasterfileEntry
140
143
  | EventPassTierSettingsMasterfileEntry
141
144
  | EvolutionChainDisplaySettingsMasterfileEntry
142
145
  | EvolutionQuestTemplateMasterfileEntry
@@ -0,0 +1,95 @@
1
+ // Generated from Pokémon GO masterfile — group "eventPassSettings", 2 entries (variant aliases).
2
+
3
+ import type { S } from "../../_utils";
4
+ import type { EventPassSettings } from "../types";
5
+
6
+ export type EventPassSettingsMay2026Season = S<
7
+ EventPassSettings<
8
+ "EVENT_PASS_MAY2026_SEASON",
9
+ {
10
+ additionalBonusTiersLevel: 101;
11
+ eventPassDisplaySettings: {
12
+ eventPassTitleKey: "season_pass_base_track_title_may";
13
+ eventPassTrackUpgradeDescriptions: [
14
+ {
15
+ detailsLinkKey: "season_pass_details_link_may2026";
16
+ eventDurationKey: "season_pass_may2026_event_duration";
17
+ eventPassTrackToUpgradeTo: "PREMIUM";
18
+ passTrackUpgradeHeaderDescription: "season_pass_may2026_track_upgrade_header_description";
19
+ ranksToHighlightRewards: [94, 99, 100];
20
+ trackUnlockImageUrl: "https://storage.googleapis.com/prod-public-images/ic_eventpass_deluxe.png";
21
+ trackUnlockPlusPointsImageUrl: "https://storage.googleapis.com/prod-public-images/ic_eventpass_deluxe_plus.png";
22
+ trackUnlockPlusPointsSkuId: "pgorelease.month3_deluxe_event_pass_track_unlock_plus_points";
23
+ trackUnlockSkuId: "pgorelease.month3_deluxe_event_pass_track_unlock";
24
+ upgradeDescriptionKey: "season_pass_may2026_upgrade_description";
25
+ },
26
+ ];
27
+ sectionDisplayPriority: 11;
28
+ };
29
+ expirationTime: "2026-06-02T10:00:00";
30
+ gracePeriodEndTime: "2026-06-04T10:00:00";
31
+ maxTierLevel: 200;
32
+ pointsItemId: "ITEM_EVENT_PASS_POINT_MONTHLY_03";
33
+ trackConditions: [
34
+ {
35
+ track: "FREE";
36
+ trackTitleKey: "season_pass_base_track_title_may";
37
+ },
38
+ {
39
+ badge: "BADGE_EVENT_0176";
40
+ track: "PREMIUM";
41
+ trackTitleKey: "season_pass_premium_track_title_may";
42
+ },
43
+ ];
44
+ }
45
+ >
46
+ >;
47
+ export type EventPassSettingsSpringmarathon2026Event = S<
48
+ EventPassSettings<
49
+ "EVENT_PASS_SPRINGMARATHON2026_EVENT",
50
+ {
51
+ additionalBonusTiersLevel: 31;
52
+ eventPassDisplaySettings: {
53
+ eventPassTitleKey: "season_pass_base_track_title_spring_marathon_2026";
54
+ eventPassTrackUpgradeDescriptions: [
55
+ {
56
+ detailsLinkKey: "season_pass_details_link_spring_marathon_2026";
57
+ eventDurationKey: "season_pass_spring_marathon_2026_event_duration";
58
+ eventPassTrackToUpgradeTo: "PREMIUM";
59
+ passTrackUpgradeHeaderDescription: "season_pass_spring_marathon_2026_track_upgrade_header_description";
60
+ ranksToHighlightRewards: [15, 29, 30];
61
+ trackUnlockImageUrl: "https://storage.googleapis.com/prod-public-images/ic_eventpass_deluxe.png";
62
+ trackUnlockPlusPointsImageUrl: "https://storage.googleapis.com/prod-public-images/ic_eventpass_deluxe_plus.png";
63
+ trackUnlockPlusPointsSkuId: "pgorelease.may1_2026_deluxe_event_pass_track_unlock_plus_points";
64
+ trackUnlockSkuId: "pgorelease.may1_2026_deluxe_event_pass_track_unlock";
65
+ upgradeDescriptionKey: "season_pass_spring_marathon_2026_upgrade_description";
66
+ },
67
+ ];
68
+ premiumRewardBannerBottom: "event_pass_premium_reward_banner_bottom_text_spring_marathon_2026";
69
+ premiumRewardBannerImageUrl: "https://pgorelease-assets.nianticstatic.com/GameDesignAssets%2FS22_MemoriesInMotion_Logo.png";
70
+ premiumRewardBannerMiddle: "item_spring_marathon_2026_milestone_name";
71
+ premiumRewardBannerTop: "event_pass_premium_reward_banner_top_text";
72
+ sectionDisplayPriority: 50;
73
+ };
74
+ expirationTime: "2026-05-18T20:00:00";
75
+ gracePeriodEndTime: "2026-05-20T20:00:00";
76
+ maxTierLevel: 60;
77
+ pointsItemId: "ITEM_EVENT_PASS_POINT_LIVE_OPS_01";
78
+ trackConditions: [
79
+ {
80
+ track: "FREE";
81
+ trackTitleKey: "season_pass_base_track_title_spring_marathon_2026";
82
+ },
83
+ {
84
+ badge: "BADGE_EVENT_0193";
85
+ track: "PREMIUM";
86
+ trackTitleKey: "season_pass_premium_track_title_spring_marathon_2026";
87
+ },
88
+ ];
89
+ }
90
+ >
91
+ >;
92
+
93
+ export type EventPassSettingsMasterfileEntry = EventPassSettingsMay2026Season | EventPassSettingsSpringmarathon2026Event;
94
+
95
+ export type EventPassSettingsTemplateID = EventPassSettingsMasterfileEntry["templateId"];
@@ -0,0 +1,4 @@
1
+ // Generated from Pokémon GO masterfile — DO NOT EDIT MANUALLY
2
+
3
+ export type * from "./entries";
4
+ export type * from "./types";
@@ -0,0 +1,8 @@
1
+ // Generated from Pokémon GO masterfile — "eventPassSettings" lookup table.
2
+
3
+ import type { EventPassSettingsMay2026Season, EventPassSettingsSpringmarathon2026Event } from "./entries";
4
+
5
+ export interface EventPassSettingsLookup {
6
+ EVENT_PASS_MAY2026_SEASON: EventPassSettingsMay2026Season;
7
+ EVENT_PASS_SPRINGMARATHON2026_EVENT: EventPassSettingsSpringmarathon2026Event;
8
+ }
@@ -0,0 +1,81 @@
1
+ // Generated from Pokémon GO masterfile — group "eventPassSettings", 2 entries (structural types).
2
+
3
+ import type { W } from "../_utils";
4
+
5
+ export interface EventPassSettings<TemplateID extends string = string, TData extends EventPassSettingsData = EventPassSettingsData> {
6
+ templateId: TemplateID;
7
+ data: {
8
+ templateId: TemplateID;
9
+ eventPassSettings: TData & {
10
+ eventPassDisplaySettings: {
11
+ bonusBoxes: [
12
+ {
13
+ iconType: "SPAWN_UNKNOWN";
14
+ quantity: 5;
15
+ text: "quest_catch_pokemon_singular";
16
+ },
17
+ {
18
+ iconType: "EGG";
19
+ quantity: 40;
20
+ text: "quest_hatch_egg_singular";
21
+ },
22
+ {
23
+ iconType: "RAID";
24
+ quantity: 100;
25
+ text: "quest_win_raid_singular";
26
+ },
27
+ ];
28
+ headerIconUrl: "https://pgorelease-assets.nianticstatic.com/GameDesignAssets%2FS22_MemoriesInMotion_Logo.png";
29
+ premiumRewardsDescription: "season_pass_premium_rewards_desc_monthly_no_disclaimer";
30
+ todayViewSection: "SEASONAL_EVENT_PASS_SECTION";
31
+ };
32
+ prefix: TemplateID;
33
+ };
34
+ };
35
+ }
36
+ export type EventPassSettingsType = W<EventPassSettings>;
37
+
38
+ export interface EventPassSettingsData {
39
+ additionalBonusTiersLevel: number;
40
+ eventPassDisplaySettings: {
41
+ eventPassTitleKey: "season_pass_base_track_title_may" | "season_pass_base_track_title_spring_marathon_2026";
42
+ eventPassTrackUpgradeDescriptions: [
43
+ {
44
+ detailsLinkKey: "season_pass_details_link_may2026" | "season_pass_details_link_spring_marathon_2026";
45
+ eventDurationKey: "season_pass_may2026_event_duration" | "season_pass_spring_marathon_2026_event_duration";
46
+ eventPassTrackToUpgradeTo: "PREMIUM";
47
+ passTrackUpgradeHeaderDescription:
48
+ | "season_pass_may2026_track_upgrade_header_description"
49
+ | "season_pass_spring_marathon_2026_track_upgrade_header_description";
50
+ ranksToHighlightRewards: [number, number, number];
51
+ trackUnlockImageUrl: "https://storage.googleapis.com/prod-public-images/ic_eventpass_deluxe.png";
52
+ trackUnlockPlusPointsImageUrl: "https://storage.googleapis.com/prod-public-images/ic_eventpass_deluxe_plus.png";
53
+ trackUnlockPlusPointsSkuId:
54
+ | "pgorelease.may1_2026_deluxe_event_pass_track_unlock_plus_points"
55
+ | "pgorelease.month3_deluxe_event_pass_track_unlock_plus_points";
56
+ trackUnlockSkuId: "pgorelease.may1_2026_deluxe_event_pass_track_unlock" | "pgorelease.month3_deluxe_event_pass_track_unlock";
57
+ upgradeDescriptionKey: "season_pass_may2026_upgrade_description" | "season_pass_spring_marathon_2026_upgrade_description";
58
+ },
59
+ ];
60
+ premiumRewardBannerBottom?: "event_pass_premium_reward_banner_bottom_text_spring_marathon_2026";
61
+ premiumRewardBannerImageUrl?: "https://pgorelease-assets.nianticstatic.com/GameDesignAssets%2FS22_MemoriesInMotion_Logo.png";
62
+ premiumRewardBannerMiddle?: "item_spring_marathon_2026_milestone_name";
63
+ premiumRewardBannerTop?: "event_pass_premium_reward_banner_top_text";
64
+ sectionDisplayPriority: number;
65
+ };
66
+ expirationTime: "2026-05-18T20:00:00" | "2026-06-02T10:00:00";
67
+ gracePeriodEndTime: "2026-05-20T20:00:00" | "2026-06-04T10:00:00";
68
+ maxTierLevel: number;
69
+ pointsItemId: "ITEM_EVENT_PASS_POINT_LIVE_OPS_01" | "ITEM_EVENT_PASS_POINT_MONTHLY_03";
70
+ trackConditions: [
71
+ {
72
+ track: "FREE";
73
+ trackTitleKey: "season_pass_base_track_title_may" | "season_pass_base_track_title_spring_marathon_2026";
74
+ },
75
+ {
76
+ badge: "BADGE_EVENT_0176" | "BADGE_EVENT_0193";
77
+ track: "PREMIUM";
78
+ trackTitleKey: "season_pass_premium_track_title_may" | "season_pass_premium_track_title_spring_marathon_2026";
79
+ },
80
+ ];
81
+ }
@@ -0,0 +1,13 @@
1
+ // Generated from Pokémon GO masterfile — group "eventPassTierSettings free" entries barrel.
2
+
3
+ import type { EventPassTierSettingsFreeMay2026MasterfileEntry } from "./may2026";
4
+ import type { EventPassTierSettingsFreeSpringmarathon2026MasterfileEntry } from "./springmarathon2026";
5
+
6
+ export type * from "./may2026";
7
+ export type * from "./springmarathon2026";
8
+
9
+ export type EventPassTierSettingsFreeMasterfileEntry =
10
+ | EventPassTierSettingsFreeMay2026MasterfileEntry
11
+ | EventPassTierSettingsFreeSpringmarathon2026MasterfileEntry;
12
+
13
+ export type EventPassTierSettingsFreeTemplateID = EventPassTierSettingsFreeMasterfileEntry["templateId"];