From 8cc0484a6079e649d39d1dc9bde33f3ba3732eaf Mon Sep 17 00:00:00 2001 From: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Date: Thu, 10 Apr 2025 23:09:37 +0200 Subject: [PATCH] chore: HeistProfitTakerBountyThree first time completion reward --- src/services/missionInventoryUpdateService.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/services/missionInventoryUpdateService.ts b/src/services/missionInventoryUpdateService.ts index 9ca788af..7e7724a2 100644 --- a/src/services/missionInventoryUpdateService.ts +++ b/src/services/missionInventoryUpdateService.ts @@ -165,6 +165,19 @@ export const addMissionInventoryUpdates = async ( } if (!chain.Jobs.includes(bounty)) { chain.Jobs.push(bounty); + if (bounty == "/Lotus/Types/Gameplay/Venus/Jobs/Heists/HeistProfitTakerBountyThree") { + await createMessage(inventory.accountOwnerId, [ + { + sub: "/Lotus/Language/SolarisHeists/HeavyCatalystInboxTitle", + sndr: "/Lotus/Language/Bosses/Ordis", + msg: "/Lotus/Language/SolarisHeists/HeavyCatalystInboxMessage", + icon: "/Lotus/Interface/Icons/Npcs/Ordis.png", + att: ["/Lotus/Types/Restoratives/HeavyWeaponSummon"], + highPriority: true + } + ]); + await addItem(inventory, "/Lotus/Types/Items/MiscItems/HeavyWeaponCatalyst", 1); + } } } } -- 2.47.2