Apples/BeeTraps/Fairies now spawn automatically under pots
This commit is contained in:
2
Rom.py
2
Rom.py
@@ -38,7 +38,7 @@ from source.dungeon.RoomList import Room0127
|
|||||||
|
|
||||||
|
|
||||||
JAP10HASH = '03a63945398191337e896e5771f77173'
|
JAP10HASH = '03a63945398191337e896e5771f77173'
|
||||||
RANDOMIZERBASEHASH = '3c651a38ea79504029c71b382c9c17da'
|
RANDOMIZERBASEHASH = '08f762abe1d3687e07eb584ef962b9c0'
|
||||||
|
|
||||||
|
|
||||||
class JsonRom(object):
|
class JsonRom(object):
|
||||||
|
|||||||
Binary file not shown.
@@ -835,9 +835,10 @@ pot_items = {
|
|||||||
PotItem.OneRupee: 'Rupee (1)',
|
PotItem.OneRupee: 'Rupee (1)',
|
||||||
PotItem.FiveRupees: 'Rupees (5)',
|
PotItem.FiveRupees: 'Rupees (5)',
|
||||||
PotItem.Heart: 'Small Heart',
|
PotItem.Heart: 'Small Heart',
|
||||||
PotItem.BigMagic: 'Big Magic', # fast fill
|
PotItem.BigMagic: 'Big Magic',
|
||||||
PotItem.SmallMagic: 'Small Magic',
|
PotItem.SmallMagic: 'Small Magic',
|
||||||
PotItem.Chicken: 'Chicken' # fast fill
|
PotItem.Chicken: 'Chicken',
|
||||||
|
PotItem.Fairy: 'Fairy'
|
||||||
}
|
}
|
||||||
|
|
||||||
valid_pot_items = {y: x for x, y in pot_items.items()}
|
valid_pot_items = {y: x for x, y in pot_items.items()}
|
||||||
|
|||||||
Reference in New Issue
Block a user