feat: give skiajati and umbra mods alongside umbra, with max rank and potatoes #2442

Merged
Sainan merged 3 commits from sacrifice into main 2025-07-08 20:51:18 -07:00
Showing only changes of commit 90d1b7233b - Show all commits

View File

@ -131,17 +131,55 @@ export const claimCompletedRecipeController: RequestHandler = async (req, res) =
// We don't just get Umbra, but also Skiajati and Umbra Mods. Both items are max rank, potatoed, and with the mods are pre-installed.
// Source: https://wiki.warframe.com/w/The_Sacrifice, https://wiki.warframe.com/w/Excalibur/Umbra, https://wiki.warframe.com/w/Skiajati
const umbraModA = (await addItem(inventory, "/Lotus/Upgrades/Mods/Sets/Umbra/WarframeUmbraModA"))
.Upgrades![0];
const umbraModB = (await addItem(inventory, "/Lotus/Upgrades/Mods/Sets/Umbra/WarframeUmbraModB"))
.Upgrades![0];
const umbraModC = (await addItem(inventory, "/Lotus/Upgrades/Mods/Sets/Umbra/WarframeUmbraModC"))
.Upgrades![0];
const umbraModA = (
await addItem(
inventory,
"/Lotus/Upgrades/Mods/Sets/Umbra/WarframeUmbraModA",
1,
false,
undefined,
`{"lvl":5}`
)
).Upgrades![0];
const umbraModB = (
await addItem(
inventory,
"/Lotus/Upgrades/Mods/Sets/Umbra/WarframeUmbraModB",
1,
false,
undefined,
`{"lvl":5}`
)
).Upgrades![0];
const umbraModC = (
await addItem(
inventory,
"/Lotus/Upgrades/Mods/Sets/Umbra/WarframeUmbraModC",
1,
false,
undefined,
`{"lvl":5}`
)
).Upgrades![0];
const sacrificeModA = (
await addItem(inventory, "/Lotus/Upgrades/Mods/Sets/Sacrifice/MeleeSacrificeModA")
await addItem(
inventory,
"/Lotus/Upgrades/Mods/Sets/Sacrifice/MeleeSacrificeModA",
1,
false,
undefined,
`{"lvl":5}`
)
).Upgrades![0];
const sacrificeModB = (
await addItem(inventory, "/Lotus/Upgrades/Mods/Sets/Sacrifice/MeleeSacrificeModB")
await addItem(
inventory,
"/Lotus/Upgrades/Mods/Sets/Sacrifice/MeleeSacrificeModB",
1,
false,
undefined,
`{"lvl":5}`
)
).Upgrades![0];
InventoryChanges.Upgrades ??= [];
InventoryChanges.Upgrades.push(umbraModA, umbraModB, umbraModC, sacrificeModA, sacrificeModB);