feat: classic lich regalia rewards (#2073)
Closes #2068 Reviewed-on: #2073 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
This commit is contained in:
parent
8fb676c906
commit
f724073d93
@ -686,9 +686,34 @@ export const addMissionInventoryUpdates = async (
|
|||||||
addSkin(inventory, profile.ephemera);
|
addSkin(inventory, profile.ephemera);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TOVERIFY: Is the inbox message also sent when converting a lich? If not, how are the rewards given?
|
switch (inventory.Nemesis.Faction) {
|
||||||
if (inventory.Nemesis.Faction == "FC_INFESTATION") {
|
case "FC_GRINEER":
|
||||||
await sendCodaFinishedMessage(inventory, inventory.Nemesis.fp, value.nemesisName, value.killed);
|
addSkin(
|
||||||
|
inventory,
|
||||||
|
value.killed
|
||||||
|
? "/Lotus/Upgrades/Skins/Clan/LichKillerBadgeItem"
|
||||||
|
: "/Lotus/Upgrades/Skins/Sigils/KuvaLichSigil"
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "FC_CORPUS":
|
||||||
|
addSkin(
|
||||||
|
inventory,
|
||||||
|
value.killed
|
||||||
|
? "/Lotus/Upgrades/Skins/Clan/CorpusLichBadgeItem"
|
||||||
|
: "/Lotus/Upgrades/Skins/Sigils/CorpusLichSigil"
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "FC_INFESTATION":
|
||||||
|
// TOVERIFY: Is the inbox message also sent when converting a lich? If not, how are the rewards given?
|
||||||
|
await sendCodaFinishedMessage(
|
||||||
|
inventory,
|
||||||
|
inventory.Nemesis.fp,
|
||||||
|
value.nemesisName,
|
||||||
|
value.killed
|
||||||
|
);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
inventory.Nemesis = undefined;
|
inventory.Nemesis = undefined;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user