feat: HeistProfitTakerBountyThree first time completion reward (#1552)
All checks were successful
Build Docker image / docker (push) Successful in 58s
Build / build (push) Successful in 49s

Reviewed-on: #1552
Reviewed-by: Sainan <sainan@calamity.inc>
Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
This commit is contained in:
AMelonInsideLemon 2025-04-11 06:54:59 -07:00 committed by Sainan
parent 5149d0e382
commit f0351489be

View File

@ -166,6 +166,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);
}
}
}
}