feat: HeistProfitTakerBountyThree first time completion reward #1552

Merged
Sainan merged 1 commits from AMelonInsideLemon/SpaceNinjaServer:HeistProfitTakerBountyThree-reward into main 2025-04-11 06:55:00 -07:00

View File

@ -165,6 +165,19 @@ export const addMissionInventoryUpdates = async (
} }
if (!chain.Jobs.includes(bounty)) { if (!chain.Jobs.includes(bounty)) {
chain.Jobs.push(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);
}
} }
} }
} }