From b1c109a8759a440c9ce73530690eba85734e7959 Mon Sep 17 00:00:00 2001 From: DaPigGuy Date: Sat, 26 Oct 2024 22:08:30 -0700 Subject: [PATCH] Display acquisiton descriptions for Syndicate weapons --- updater/update_items.mjs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/updater/update_items.mjs b/updater/update_items.mjs index c803a00..7662576 100644 --- a/updater/update_items.mjs +++ b/updater/update_items.mjs @@ -178,6 +178,21 @@ class ItemUpdater { processedItem.description = "Acquire by vanquishing a Kuva Lich"; else if (name.startsWith("Dex ")) processedItem.description = "Acquire from yearly anniversary alerts"; + else if (name.startsWith("Vaykor ")) + processedItem.description = + "Purchase from Steel Meridian for 125,000 standing"; + else if (name.startsWith("Rakta ")) + processedItem.description = + "Purchase from Red Veil for 125,000 standing"; + else if (name.startsWith("Secura ")) + processedItem.description = + "Purchase from The Perrin Sequence for 125,000 standing"; + else if (name.startsWith("Sancti ")) + processedItem.description = + "Purchase from New Loka for 125,000 standing"; + else if (name.startsWith("Telos ")) + processedItem.description = + "Purchase from Arbiters of Hexis for 125,000 standing"; if (name.startsWith("Mk1-")) processedItem.wiki = `${WIKI_URL}/${name.replace("Mk1-", "MK1-")}`;