Enable bombs in escape assist with an enemized standard start so you can beat the game

This commit is contained in:
Bonta-kun
2019-12-16 09:59:16 +01:00
parent 261e9c40f9
commit d33582a3a2
3 changed files with 6 additions and 1 deletions

View File

@@ -56,6 +56,8 @@ def main(args, seed=None):
logger.info('ALttP Entrance Randomizer Version %s - Seed: %s\n\n', __version__, world.seed)
world.difficulty_requirements = difficulties[world.difficulty]
if world.mode == 'standard' and (args.shuffleenemies != 'none' or args.enemy_health not in ['default', 'easy']):
world.escape_assist.append(['bombs']) # enemized escape assumes infinite bombs available and will likely be unbeatable without it
if world.mode != 'inverted':
for player in range(1, world.players + 1):