diff --git a/binaries/data/mods/public/simulation/data/civs/pers.json b/binaries/data/mods/public/simulation/data/civs/pers.json index cd24f6e7ab..4989fcc3eb 100644 --- a/binaries/data/mods/public/simulation/data/civs/pers.json +++ b/binaries/data/mods/public/simulation/data/civs/pers.json @@ -33,7 +33,7 @@ { "Name": "Time of War", "History": "The Persians were known for their large cavalry contingent.", - "Description": "Stable −10% batch training time per phase advance." + "Description": "The batch training time of units trained in Stables decreases each phase advance." }, { "Name": "Satrapy Tribute", diff --git a/binaries/data/mods/public/simulation/data/technologies/barracks_batch_training.json b/binaries/data/mods/public/simulation/data/technologies/barracks_batch_training.json index 89ec19eb07..fc72fc3b64 100644 --- a/binaries/data/mods/public/simulation/data/technologies/barracks_batch_training.json +++ b/binaries/data/mods/public/simulation/data/technologies/barracks_batch_training.json @@ -1,6 +1,6 @@ { "genericName": "Conscription", - "description": "Significantly increase training speed of infantry by training them in large batches or companies.", + "description": "Decreases training time of infantry if they are trained in batches or companies. Large batches will benefit more than small batches.\nIn mathematical terms: The training time of one batch gets divided by `batchSize^0.1`.", "cost": { "food": 500 }, @@ -13,7 +13,7 @@ "requirementsTooltip": "Unlocked in City Phase.", "icon": "fist_spear_fire.png", "researchTime": 40, - "tooltip": "Barracks −10% batch training time.", + "tooltip": "Decreases batch training time of units trained in Barracks.", "modifications": [ { "value": "Trainer/BatchTimeModifier", "add": -0.1 } ], diff --git a/binaries/data/mods/public/simulation/data/technologies/phase_city_pers.json b/binaries/data/mods/public/simulation/data/technologies/phase_city_pers.json index 6e02e16e79..099eb401e7 100644 --- a/binaries/data/mods/public/simulation/data/technologies/phase_city_pers.json +++ b/binaries/data/mods/public/simulation/data/technologies/phase_city_pers.json @@ -1,6 +1,6 @@ { "genericName": "City Phase", - "description": "Advances from a bustling town to a veritable metropolis, full of the wonders of modern technology. This is the Persian city phase, where stable training rates are decreased because of the 'Times of War' bonus.", + "description": "Advances from a bustling town to a veritable metropolis, full of the wonders of modern technology. This is the Persian city phase.\nThe 'Times of War' bonus dercreases the batch training time in Stables. Large batches will benefit more than small batches.\nIn mathematical terms: The training time of one batch gets divided by `batchSize^0.1`.", "cost": { "stone": 750, "metal": 750 @@ -16,7 +16,7 @@ "replaces": ["phase_city"], "icon": "city_phase.png", "researchTime": 60, - "tooltip": "Advance to City Phase, which unlocks more entities and technologies. Civic Centers +25% territory influence radius. Structures +1 capture points regeneration rate for garrisoned units. Stable −10% batch training time.", + "tooltip": "Advance to City Phase, which unlocks more entities and technologies. Civic Centers +25% territory influence radius. Structures +1 capture points regeneration rate for garrisoned units. Decrease batch training time of units trained in Stables.", "modifications": [ { "value": "Capturable/GarrisonRegenRate", "add": 1, "affects": "Structure" }, { "value": "Trainer/BatchTimeModifier", "add": -0.1, "affects": "Stable" }, diff --git a/binaries/data/mods/public/simulation/data/technologies/phase_town_pers.json b/binaries/data/mods/public/simulation/data/technologies/phase_town_pers.json index 2bdcbb3adf..2536872873 100644 --- a/binaries/data/mods/public/simulation/data/technologies/phase_town_pers.json +++ b/binaries/data/mods/public/simulation/data/technologies/phase_town_pers.json @@ -1,6 +1,6 @@ { "genericName": "Town Phase", - "description": "Advances from a small village to a bustling town, ready to expand rapidly. This is the Persian town phase, where stable training rates are decreased because of the 'Times of War' bonus.", + "description": "Advances from a small village to a bustling town, ready to expand rapidly. This is the Persian town phase.\nThe 'Times of War' bonus dercreases the batch training time in Stables. Large batches will benefit more than small batches.\nIn mathematical terms: The training time of one batch gets divided by `batchSize^0.1`.", "cost": { "food": 500, "wood": 500 @@ -16,7 +16,7 @@ "replaces": ["phase_town"], "icon": "town_phase.png", "researchTime": 30, - "tooltip": "Advance to Town Phase, which unlocks more entities and technologies. Civic Centers +25% territory influence radius. Structures +0.5 capture points regeneration rate for garrisoned units. Stable −10% batch training time.", + "tooltip": "Advance to Town Phase, which unlocks more entities and technologies. Civic Centers +25% territory influence radius. Structures +0.5 capture points regeneration rate for garrisoned units. Decrease batch training time of units trained in Stables.", "modifications": [ { "value": "Capturable/GarrisonRegenRate", "add": 0.5, "affects": "Structure" }, { "value": "Trainer/BatchTimeModifier", "add": -0.1, "affects": "Stable" }, diff --git a/binaries/data/mods/public/simulation/data/technologies/stable_batch_training.json b/binaries/data/mods/public/simulation/data/technologies/stable_batch_training.json index 5a93bfa1be..92dcf124a6 100644 --- a/binaries/data/mods/public/simulation/data/technologies/stable_batch_training.json +++ b/binaries/data/mods/public/simulation/data/technologies/stable_batch_training.json @@ -1,6 +1,6 @@ { "genericName": "Conscription", - "description": "Significantly increase training speed of cavalry by training them in large batches or squadrons.", + "description": "Decreases training time of cavalry if they are trained in batches or squadrons. Large batches will benefit more than small batches.\nIn mathematical terms: The training time of one batch gets divided by `batchSize^0.1`.", "cost": { "food": 500 }, @@ -13,7 +13,7 @@ "requirementsTooltip": "Unlocked in City Phase.", "icon": "horseshoe_gold.png", "researchTime": 40, - "tooltip": "Stables −10% batch training time.", + "tooltip": "Decrease batch training time of units trained in Stables.", "modifications": [ { "value": "Trainer/BatchTimeModifier", "add": -0.1 } ], diff --git a/binaries/data/mods/public/simulation/templates/structures/han/civil_centre_court.xml b/binaries/data/mods/public/simulation/templates/structures/han/civil_centre_court.xml index 8253e94023..c2f81bae78 100644 --- a/binaries/data/mods/public/simulation/templates/structures/han/civil_centre_court.xml +++ b/binaries/data/mods/public/simulation/templates/structures/han/civil_centre_court.xml @@ -32,7 +32,7 @@ - 0.75 + -0.2 units/{civ}/hero_han_xin_horse units/{civ}/hero_liu_bang_horse