Skip to content

Commit

Permalink
Remove Grimoire override
Browse files Browse the repository at this point in the history
  • Loading branch information
DaPigGuy committed Sep 17, 2024
1 parent ac518d1 commit 73b23a0
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions updater/update_items.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,6 @@ const OVERWRITES = {
wiki: `${WIKI_URL}/AX-52`
}
},
SECONDARY: {
Grimoire: {
mr: 10,
components: {
"Entrati Obols": 2000,
Necracoil: 50,
"Echo Voca": 15,
"Entrati Lanthorn": 10
},
buildPrice: 25000
}
},
MELEE: {
"Tenet Agendus": { components: undefined }
},
Expand Down Expand Up @@ -266,10 +254,10 @@ class ItemUpdater {
type = uniqueName.includes("InfestedCatbrow")
? "INFESTED_CAT"
: uniqueName.includes("Catbrow")
? "CAT"
: uniqueName.includes("PredatorKubrow")
? "INFESTED_DOG"
: "DOG";
? "CAT"
: uniqueName.includes("PredatorKubrow")
? "INFESTED_DOG"
: "DOG";
break;
default:
type = {
Expand Down Expand Up @@ -321,8 +309,8 @@ class ItemUpdater {
reward.rarity === "COMMON"
? 0
: reward.rarity === "UNCOMMON"
? 1
: 2
? 1
: 2
};
if (this.vaultedRelics.includes(relic.name))
processedRelic.vaulted = true;
Expand Down

0 comments on commit 73b23a0

Please sign in to comment.