mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Doom 2, Heretic: fix missing items (Doom2 Megasphere, Heretic Torch) (#3561)
for doom 2, some of the armor and health weights were nudged down to compensate for the addition of the megasphere for heretic, the torch was just added without changing anything else, as I felt doing so would negatively impact the distribution of artifacts (and personally I already feel there's too few in a game)
This commit is contained in:
@@ -71,6 +71,7 @@ class HereticWorld(World):
|
||||
"Tome of Power": 16,
|
||||
"Silver Shield": 10,
|
||||
"Enchanted Shield": 5,
|
||||
"Torch": 5,
|
||||
"Morph Ovum": 3,
|
||||
"Mystic Urn": 2,
|
||||
"Chaos Device": 1,
|
||||
@@ -242,6 +243,7 @@ class HereticWorld(World):
|
||||
self.create_ratioed_items("Mystic Urn", itempool)
|
||||
self.create_ratioed_items("Ring of Invincibility", itempool)
|
||||
self.create_ratioed_items("Shadowsphere", itempool)
|
||||
self.create_ratioed_items("Torch", itempool)
|
||||
self.create_ratioed_items("Timebomb of the Ancients", itempool)
|
||||
self.create_ratioed_items("Tome of Power", itempool)
|
||||
self.create_ratioed_items("Silver Shield", itempool)
|
||||
|
Reference in New Issue
Block a user