diff --git a/src/services/inventoryService.ts b/src/services/inventoryService.ts index 269e5faf..d5dd1549 100644 --- a/src/services/inventoryService.ts +++ b/src/services/inventoryService.ts @@ -1391,7 +1391,10 @@ export const addStanding = ( // TODO: AffiliationMods support (Nightwave). export const updateGeneric = async (data: IGenericUpdate, accountId: string): Promise => { - const inventory = await getInventory(accountId, "NodeIntrosCompleted MiscItems ShipDecorations"); + const inventory = await getInventory( + accountId, + "NodeIntrosCompleted MiscItems ShipDecorations FlavourItems WeaponSkins" + ); // Make it an array for easier parsing. if (typeof data.NodeIntrosCompleted === "string") { @@ -1426,6 +1429,13 @@ export const updateGeneric = async (data: IGenericUpdate, accountId: string): Pr await addEmailItem(inventory, "/Lotus/Types/Items/EmailItems/BeatCaliberChicksEmailItem", inventoryChanges); } else if (node == "ClearedFiveLoops") { await addEmailItem(inventory, "/Lotus/Types/Items/EmailItems/ClearedFiveLoopsEmailItem", inventoryChanges); + } else if (node == "NokkoVisions_AllCompleted") { + addCustomization( + inventory, + "/Lotus/Types/StoreItems/AvatarImages/Warframes/NokkoBabySecretGlyph", + inventoryChanges + ); + addSkin(inventory, "/Lotus/Upgrades/Skins/Clan/NokkoBabySecretEmblemItem", inventoryChanges); } } await inventory.save();