Skip to content

Commit

Permalink
super hexagon nerfs
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrochu committed Jan 8, 2025
1 parent a3b04a5 commit fdca24c
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions worlds/keymasters_keep/games/super_hexagon_game.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,6 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
is_difficult=False,
weight=2,
),
GameObjectiveTemplate(
label="Complete the STAGE stage",
data={"STAGE": (self.stages_hyper, 1)},
is_time_consuming=False,
is_difficult=True,
weight=1,
),
GameObjectiveTemplate(
label="Survive for TIME seconds in STAGE",
data={
Expand Down Expand Up @@ -187,19 +180,19 @@ def stages_hyper() -> List[str]:

@staticmethod
def survival_time_range_low() -> range:
return range(20, 60)
return range(10, 26)

@staticmethod
def survival_time_range_high() -> range:
return range(61, 91)
return range(26, 51)

@staticmethod
def survival_time_range_hyper_low() -> range:
return range(10, 26)
return range(5, 11)

@staticmethod
def survival_time_range_hyper_high() -> range:
return range(26, 41)
return range(11, 21)


# Archipelago Options
Expand Down

0 comments on commit fdca24c

Please sign in to comment.