Skip to content

Commit c69f916

Browse files
feat: update unlockables + storedata to match 3.250
1 parent 11d6621 commit c69f916

5 files changed

Lines changed: 396 additions & 34 deletions

File tree

components/inventory.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {
2222
brokenItems,
2323
CONCRETEART_UNLOCKABLES,
2424
BAIJU_UNLOCKABLES,
25+
BELLINI_UNLOCKABLES,
2526
DELUXE_UNLOCKABLES,
2627
EXECUTIVE_UNLOCKABLES,
2728
FRENCHMARTINI_UNLOCKABLES,
@@ -83,6 +84,7 @@ const DELUXE_DATA = [
8384
...LAMBIC_UNLOCKABLES,
8485
...FRENCHMARTINI_UNLOCKABLES,
8586
...BAIJU_UNLOCKABLES,
87+
...BELLINI_UNLOCKABLES,
8688
]
8789

8890
/**
@@ -459,6 +461,13 @@ function filterAllowedContent(gameVersion: GameVersion, entP: string[]) {
459461
)
460462
}
461463

464+
if (BELLINI_UNLOCKABLES.includes(id)) {
465+
return (
466+
e.includes("0047ddcd5e6846e881f1037c1416e3d9") ||
467+
e.includes("4097630")
468+
)
469+
}
470+
462471
return true
463472
}
464473
}

components/ownership.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,13 @@ export const BAIJU_UNLOCKABLES = [
319319
"TOKEN_PROP_MELEE_SCISSORS_BAIJU",
320320
]
321321

322+
export const BELLINI_UNLOCKABLES = [
323+
"TOKEN_OUTFIT_REWARD_HERO_BELLINI_EMINEM",
324+
"FIREARMS_HERO_PISTOL_BELLINI_A",
325+
"TOKEN_PROP_MELEE_JAR_BELLINI_A",
326+
"PROP_DEVICE_BELLINI_FIGURE_REMOTE_EXPLOSIVE",
327+
]
328+
322329
export const brokenItems = [
323330
// duped dart gun (thanks IOI)
324331
"835ad050-6d19-4e94-80b1-f5cec9815ba3",

components/platformEntitlements.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ export const H3_EPIC_ENTITLEMENTS = [
9393
"256eeeb3d8044aa1840e1606d268e0b2",
9494
// BAIJU:
9595
"04cb1b3e5b424308be25236f6bc1b2fb",
96+
// BELLINI:
97+
"0047ddcd5e6846e881f1037c1416e3d9",
9698
]
9799

98100
export const H2_STEAM_ENTITLEMENTS = [

static/StoreData.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,14 @@
165165
"Name": "celebrity",
166166
"Items": [
167167
{
168-
"ImageUrl": "images/store/addon_et_baiju.jpg",
168+
"ImageUrl": "images/store/addon_et_bellini.jpg",
169169
"Price": null,
170170
"Currency": null,
171-
"Description": "GAME_STORE_METADATA_S3_DLC_ET_BAIJU_DESCRIPTION",
172-
"Name": "GAME_STORE_METADATA_S3_DLC_ET_BAIJU_TITLE_SHORT",
173-
"ShopId": "https://store.epicgames.com/p/hitman-3--the-bruce-lee-pack",
171+
"Description": "GAME_STORE_METADATA_S3_DLC_ET_BELLINI_DESCRIPTION",
172+
"Name": "GAME_STORE_METADATA_S3_DLC_ET_BELLINI_TITLE_SHORT",
173+
"ShopId": "https://store.epicgames.com/p/hitman-3--the-eminem-vs-slim-shady-pack",
174174
"Categories": ["celebrity"],
175-
"PackageName": "h3ElusiveBaiju",
175+
"PackageName": "h3ElusiveBellini",
176176
"UserWhitelist": null,
177177
"UserBlacklist": null,
178178
"Properties": {
@@ -337,7 +337,8 @@
337337
"LocalizedName": "007 First Light",
338338
"SteamOpenUrl": "https://store.steampowered.com/app/3768760",
339339
"PS5ServiceLabel": 3,
340-
"PS5DiscServiceLabel": 3
340+
"PS5DiscServiceLabel": 3,
341+
"ExcludeMacOS": true
341342
},
342343
"Entitlements": null
343344
}

0 commit comments

Comments
 (0)