From 176aa6aaa1286c18144e6c02024de14061870592 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20Lach?= Date: Thu, 22 Jun 2023 18:17:37 +0200 Subject: [PATCH 3/3] =?UTF-8?q?!OSDN:#47828:S=C5=82awomir=20Lach?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit User counter type test. diff --git a/data/sandbox/effects.ruleset b/data/sandbox/effects.ruleset index 9a9dbc14d8..00fc530a67 100644 --- a/data/sandbox/effects.ruleset +++ b/data/sandbox/effects.ruleset @@ -5398,3 +5398,11 @@ reqs = "Counter", "Turn_Owned2", "City", TRUE "Counter", "Turn_of_Celebration", "City", TRUE } + +[effect_happy_by_convenience] +type = "Make_Content" +value = 1 +reqs = +{ "type", "name", "range", "present" + "Counter", "buildings", "City", TRUE +} diff --git a/data/sandbox/game.ruleset b/data/sandbox/game.ruleset index f9064a0d5d..c98c7aca69 100644 --- a/data/sandbox/game.ruleset +++ b/data/sandbox/game.ruleset @@ -835,6 +835,12 @@ checkpoint = 3 def = 0 type = "Disorder" +[counter_city_advance] +name = "buildings" +checkpoint = 2 +def = 0 +type = "User" + [playercolors] background.r = 86 background.g = 86 diff --git a/data/sandbox/script.lua b/data/sandbox/script.lua index 7796252164..51441c8232 100644 --- a/data/sandbox/script.lua +++ b/data/sandbox/script.lua @@ -525,5 +525,23 @@ function action_started_unit_tile_callback(action, actor, target) end end +function city_advance(building_type, city) + local counter = find.counter('buildings') + counter:increase(city) +end + +function do_not_love_new_ruler(city, looser, winner, reason) + if reason == "conquest" then + local counter = find.counter('buildings') + counter:zero(city) + end +end + signal.connect("action_started_unit_tile", "action_started_unit_tile_callback") + +signal.connect('building_built', +'city_advance') + +signal.connect('city_transferred', +'do_not_love_new_ruler') -- 2.41.0