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. // 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 // 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")) const umbraModA = (
.Upgrades![0]; await addItem(
const umbraModB = (await addItem(inventory, "/Lotus/Upgrades/Mods/Sets/Umbra/WarframeUmbraModB")) inventory,
.Upgrades![0]; "/Lotus/Upgrades/Mods/Sets/Umbra/WarframeUmbraModA",
const umbraModC = (await addItem(inventory, "/Lotus/Upgrades/Mods/Sets/Umbra/WarframeUmbraModC")) 1,
.Upgrades![0]; 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 = ( 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]; ).Upgrades![0];
const sacrificeModB = ( 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]; ).Upgrades![0];
InventoryChanges.Upgrades ??= []; InventoryChanges.Upgrades ??= [];
InventoryChanges.Upgrades.push(umbraModA, umbraModB, umbraModC, sacrificeModA, sacrificeModB); InventoryChanges.Upgrades.push(umbraModA, umbraModB, umbraModC, sacrificeModA, sacrificeModB);