From 2b85f5abf6c8ddd86cd0761c90e2e28083afe45c Mon Sep 17 00:00:00 2001 From: cube002 Date: Sun, 23 Nov 2025 08:38:20 +0100 Subject: [PATCH] Fix carthage stone bonus Add a civ restriction to make the bonus only apply to Carthage. (cherry picked from commit 8d38ecda26109da7a9ddbe1a747b1d1eb84b6fa3) (cherry picked from commit a03b01c935e36f84a986b7ae1814f7c17c9f0292) (cherry picked from commit f30271e9554312f008789755b9e27ddf6e57240b) (cherry picked from commit 9c836d39e6e67a7b574c3b4a5bec77855c0e6dbb) (cherry picked from commit 91baeeb94e051f200ccaaf9393a58dd43bf3d829) (cherry picked from commit cb3fecfce92220d38a1e15c4e5d06910bdc2b08d) Signed-off-by: phosit --- .../simulation/data/technologies/civbonuses/cart_stone_01.json | 3 ++- .../simulation/data/technologies/civbonuses/cart_stone_02.json | 3 ++- .../simulation/data/technologies/civbonuses/cart_stone_03.json | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_01.json b/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_01.json index c9aa137fd7..ac2aa7bb95 100644 --- a/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_01.json +++ b/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_01.json @@ -4,7 +4,8 @@ "description": "Hire servants to help quarry stone. Increases stone gathering rates.", "requirements": { "all": [ - { "tech": "phase_village" } + { "tech": "phase_village" }, + { "civ": "cart" } ] }, "icon": "mining_stone_01.png", diff --git a/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_02.json b/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_02.json index d2f0fbd043..f6cc1413f8 100644 --- a/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_02.json +++ b/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_02.json @@ -4,7 +4,8 @@ "description": "Hire servants to help quarry stone. Increases stone gathering rates.", "requirements": { "all": [ - { "tech": "phase_town" } + { "tech": "phase_town" }, + { "civ": "cart"} ] }, "icon": "mining_stone_02.png", diff --git a/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_03.json b/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_03.json index 1fee1662f1..192f3a6f04 100644 --- a/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_03.json +++ b/binaries/data/mods/public/simulation/data/technologies/civbonuses/cart_stone_03.json @@ -4,7 +4,8 @@ "description": "Hire servants to help quarry stone. Increases stone gathering rates.", "requirements": { "all": [ - { "tech": "phase_city" } + { "tech": "phase_city" }, + { "civ": "cart"} ] }, "icon": "mining_stone_03.png",