From 0ce21ae5a64429d8e6944bcf404fd77279d80473 Mon Sep 17 00:00:00 2001 From: duckduckdoof Date: Tue, 4 Feb 2025 14:45:56 -0500 Subject: [PATCH] Added foundation tile, adjusted scene constants --- lib/scene/scene_config.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/scene/scene_config.py b/lib/scene/scene_config.py index 235004c..943d64a 100644 --- a/lib/scene/scene_config.py +++ b/lib/scene/scene_config.py @@ -4,7 +4,7 @@ scene_config.py author: Caleb Scott Configuration file for modifying the visual scene of the game. -This is not the same as game_config.py, which is used to adjust +This is not the same as engine/game_config.py, which is used to adjust game objects (apart from their visuals, like sprites) """ @@ -54,14 +54,16 @@ MINER = "MinerTile" FACTORY = "FactoryTile" JUNCTION = "JunctionTile" +FOUNDATION = "FoundationTile" + GROUND = "GroundTile" WATER = "WaterTile" -IRON = "IronTile" +METAL = "MetalTile" TREES = "TreesTile" # Game Starting Resources STARTING_RESOURCES = { - "iron": 50, + "metal": 50, "wood": 100, "people": 10, "food": 200