More goals added. Introduced a passive goal system for things that should be accomplished but are less guided and depend more on player style.

This commit is contained in:
Storm Dragon
2026-07-01 09:34:55 -04:00
parent 59352bb0b6
commit e690819071
13 changed files with 129 additions and 12 deletions
+9
View File
@@ -763,6 +763,15 @@ def write_catalog(entries: Dict[str, Dict[str, object]], output_path: Path) -> N
("system.goals.goal.catch_snare.name", "Catch something in a snare."),
("system.goals.goal.butcher_game.name", "Butcher game."),
("system.goals.goal.craft_sling.name", "Craft a sling."),
("system.goals.goal.craft_bow.name", "Craft a bow."),
("system.goals.goal.build_herb_garden.name", "Build an herb garden."),
("system.goals.goal.upgrade_storage_2.name", "Fully upgrade storage."),
("system.goals.goal.build_pasture.name", "Build a pasture."),
("system.goals.goal.build_stable.name", "Build a stable."),
("system.goals.goal.craft_quiver.name", "Craft a quiver."),
("system.goals.goal.craft_arrows.name", "Craft arrows."),
("system.goals.goal.survive_day_9.name", "Survive until day 9."),
("system.goals.goal.tame_pet.name", "Tame a pet."),
("system.goals.goal.unknown.name", "Unknown goal."),
("system.goals.menu.prompt", "Goals. {option}"),
("system.goals.menu.current", "Current goal: {goal}"),