Meritous: Minor logic change (#584)

This commit is contained in:
Felix R
2022-05-27 19:52:14 -03:00
committed by GitHub
parent 8adc0dd7eb
commit 5d3b4c8efd
3 changed files with 15 additions and 4 deletions

View File

@@ -163,6 +163,8 @@ class MeritousItem(Item):
self.type = name
elif name == "Extra Life":
self.type = "Other"
elif self.advancement:
self.type = "Important Artifact"
else:
self.type = "Artifact"
self.never_exclude = True
@@ -210,5 +212,6 @@ item_groups = {
"Artifacts": ["Map", "Shield Boost", "Crystal Efficiency", "Circuit Booster",
"Metabolism", "Dodge Enhancer", "Ethereal Monocle", "Crystal Gatherer",
"Portable Compass"],
"Important Artifacts": ["Shield Boost", "Circuit Booster", "Metabolism", "Dodge Enhancer"],
"Crystals": ["Crystals x500", "Crystals x1000", "Crystals x2000"]
}