Compare commits
2 Commits
027f58a79b
...
d8fd872aee
Author | SHA1 | Date | |
---|---|---|---|
d8fd872aee | |||
4362a842ff |
@ -198,6 +198,24 @@ const handleQuestCompletion = async (
|
|||||||
): Promise<void> => {
|
): Promise<void> => {
|
||||||
logger.debug(`completed quest ${questKey}`);
|
logger.debug(`completed quest ${questKey}`);
|
||||||
|
|
||||||
|
if (questKey == "/Lotus/Types/Keys/OrokinMoonQuest/OrokinMoonQuestKeyChain") {
|
||||||
|
void createMessage(inventory.accountOwnerId, [
|
||||||
|
{
|
||||||
|
sndr: "/Lotus/Language/Bosses/Ordis",
|
||||||
|
msg: "/Lotus/Language/G1Quests/SecondDreamFinishInboxMessage",
|
||||||
|
att: [
|
||||||
|
"/Lotus/Weapons/Tenno/Melee/Swords/StalkerTwo/StalkerTwoSmallSword",
|
||||||
|
"/Lotus/Upgrades/Skins/Sigils/ScarSigil"
|
||||||
|
],
|
||||||
|
sub: "/Lotus/Language/G1Quests/SecondDreamFinishInboxTitle",
|
||||||
|
icon: "/Lotus/Interface/Icons/Npcs/Ordis.png",
|
||||||
|
highPriority: true
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
} else if (questKey == "/Lotus/Types/Keys/NewWarQuest/NewWarQuestKeyChain") {
|
||||||
|
setupKahlSyndicate(inventory);
|
||||||
|
}
|
||||||
|
|
||||||
const questCompletionItems = getQuestCompletionItems(questKey);
|
const questCompletionItems = getQuestCompletionItems(questKey);
|
||||||
logger.debug(`quest completion items`, questCompletionItems);
|
logger.debug(`quest completion items`, questCompletionItems);
|
||||||
if (questCompletionItems) {
|
if (questCompletionItems) {
|
||||||
@ -205,10 +223,6 @@ const handleQuestCompletion = async (
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (inventory.ActiveQuest == questKey) inventory.ActiveQuest = "";
|
if (inventory.ActiveQuest == questKey) inventory.ActiveQuest = "";
|
||||||
|
|
||||||
if (questKey == "/Lotus/Types/Keys/NewWarQuest/NewWarQuestKeyChain") {
|
|
||||||
setupKahlSyndicate(inventory);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const giveKeyChainItem = async (
|
export const giveKeyChainItem = async (
|
||||||
|
@ -5,5 +5,11 @@
|
|||||||
"ItemCount": 1
|
"ItemCount": 1
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"/Lotus/Types/Keys/InfestedMicroplanetQuest/InfestedMicroplanetQuestKeyChain": [{ "ItemType": "/Lotus/Types/Recipes/WarframeRecipes/BrokenFrameBlueprint", "ItemCount": 1 }]
|
"/Lotus/Types/Keys/InfestedMicroplanetQuest/InfestedMicroplanetQuestKeyChain": [{ "ItemType": "/Lotus/Types/Recipes/WarframeRecipes/BrokenFrameBlueprint", "ItemCount": 1 }],
|
||||||
|
"/Lotus/Types/Keys/OrokinMoonQuest/OrokinMoonQuestKeyChain": [
|
||||||
|
{
|
||||||
|
"ItemType": "/Lotus/Types/Keys/RailJackBuildQuest/RailjackBuildQuestEmailItem",
|
||||||
|
"ItemCount": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user