Skip to content

Commit

Permalink
tweaked weight values
Browse files Browse the repository at this point in the history
  • Loading branch information
Sundia1908 authored Jan 14, 2025
1 parent d2bd67f commit 3c1fd5f
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions worlds/keymasters_keep/games/super_mario_galaxy_game.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
data=dict(),
is_time_consuming=True,
is_difficult=False,
weight=3,
weight=2,
),

GameObjectiveTemplate(
label="Next to the Terrace, complete Rocky Road in Sweet Sweet Galaxy",
data=dict(),
is_time_consuming=False,
is_difficult=False,
weight=3,
weight=2,
),

GameObjectiveTemplate(
Expand All @@ -98,7 +98,7 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
data=dict(),
is_time_consuming=False,
is_difficult=True,
weight=3,
weight=2,
),

GameObjectiveTemplate(
Expand All @@ -114,15 +114,15 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
data=dict(),
is_time_consuming=False,
is_difficult=True,
weight=3,
weight=2,
),

GameObjectiveTemplate(
label="Next to the Kitchen, complete Giant Ell Outbreak in Drip Drop Galaxy",
data=dict(),
is_time_consuming=False,
is_difficult=False,
weight=3,
weight=2,
),

GameObjectiveTemplate(
Expand All @@ -138,15 +138,15 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
data=dict(),
is_time_consuming=True,
is_difficult=False,
weight=3,
weight=2,
),

GameObjectiveTemplate(
label="Next to the Bedroom, complete Bigmouth's Gold Bait in Bigmouth Galaxy",
data=dict(),
is_time_consuming=False,
is_difficult=False,
weight=3,
weight=2,
),

GameObjectiveTemplate(
Expand All @@ -162,15 +162,15 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
data=dict(),
is_time_consuming=True,
is_difficult=False,
weight=3,
weight=2,
),

GameObjectiveTemplate(
label="Next to the Engine Room, complete Choosing a Favorite Snack in Sand Spiral Galaxy",
data=dict(),
is_time_consuming=False,
is_difficult=False,
weight=3,
weight=2,
),

GameObjectiveTemplate(
Expand All @@ -186,31 +186,31 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
data=dict(),
is_time_consuming=False,
is_difficult=True,
weight=3,
weight=2,
),

GameObjectiveTemplate(
label="In the Garden, complete Battlestation's Purple Coins (Star 5) in Dreadnought Galaxy",
data=dict(),
is_time_consuming=False,
is_difficult=True,
weight=3,
weight=2,
),

GameObjectiveTemplate(
label="In the Garden, complete Lava Spire Daredevil Run (Star 4) in Melty Molten Galaxy",
data=dict(),
is_time_consuming=False,
is_difficult=True,
weight=3,
weight=2,
),

GameObjectiveTemplate(
label="Next to the Garden, complete Star Bunnies in the Snow in Snow Cap Galaxy",
data=dict(),
is_time_consuming=False,
is_difficult=False,
weight=3,
weight=2,
),

GameObjectiveTemplate(
Expand All @@ -226,15 +226,15 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
data=dict(),
is_time_consuming=False,
is_difficult=False,
weight=3,
weight=2,
),

GameObjectiveTemplate(
label="At the Planet of Trials, complete LEVEL",
data={"LEVEL": (self.planet_of_trials_levels, 1)},
is_time_consuming=False,
is_difficult=True,
weight=3,
weight=2,
),

GameObjectiveTemplate(
Expand Down Expand Up @@ -399,4 +399,4 @@ def planet_of_trials_levels() -> List[str]:
"The Galaxy's Greatest Wave in Loopdeeswoop Galaxy",
]

# Archipelago Options
# Archipelago Options

0 comments on commit 3c1fd5f

Please sign in to comment.