diff --git a/src/SecExp/rebellionOptions.tw b/src/SecExp/rebellionOptions.tw index c709fd5c0114ce59720e780df8c1ba18148f6245..0bd115bc65fad7c60c395749be8d91d65d560427 100644 --- a/src/SecExp/rebellionOptions.tw +++ b/src/SecExp/rebellionOptions.tw @@ -161,7 +161,7 @@ <<set _count = 0>> <<if $loyalID.length > 0>> <br> - <<if $arcologyUpgrade.drones == 1>>your security drones,<</if>> + <<if $arcologyUpgrade.drones == 1>>Your security drones,<</if>> <<for _i = 0; _i < $militiaUnits.length; _i++>> <<if $militiaUnits[_i].active == 1 && ($loyalID.includes($militiaUnits[_i].ID))>> <<set _count++>> @@ -192,7 +192,7 @@ <</if>> <</if>> <</for>> - <<if $securityForceActive == 1>>and $securityForceName, $securityForcePersonnel strong<</if>> + <<if $securityForceActive == 1>>and $securityForceName, <<print commaNum($securityForcePersonnel)>> strong<</if>> are called to defend the arcology from this menace. <<else>> <<if $arcologyUpgrade.drones == 1>>Your security drones<<if $securityForceActive == 1>>and $securityForceName, <<print commaNum($securityForcePersonnel)>> strong<</if>><</if>> diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw index bae1d58b67102b7c4b25d95b140b01722061b354..b71781c2f883fb7759557b57b73c574987ae47dc 100644 --- a/src/SecExp/rebellionReport.tw +++ b/src/SecExp/rebellionReport.tw @@ -177,7 +177,7 @@ <<set $rebelDefeatAftermath = 5>> <</if>> <<else>> - Today, the _day of _month _year, our arcology was inflamed by the fires of rebellion. $attackTroops rebels from all over the structure dared rise up to dethrone their arcology owner. Our defense force, $troopCount strong, fought with them street by street + Today, the _day of _month _year, our arcology was inflamed by the fires of rebellion. <<print Math.trunc($attackTroops)>> rebels from all over the structure dared rise up to dethrone their arcology owner. Our defense force, <<print commaNum($troopCount)>> strong, fought with them street by street <<if $enemyLosses != $attackTroops>> inflicting <<print $enemyLosses>> casualties, while sustaining <<print $losses>> casualties themselves. <<else>> diff --git a/src/uncategorized/reputation.tw b/src/uncategorized/reputation.tw index 1ad3086271ef854a5f00316b42a09db2d6d32565..690b4d0e5d282a5e7df436230c54934328386dbc 100644 --- a/src/uncategorized/reputation.tw +++ b/src/uncategorized/reputation.tw @@ -578,7 +578,7 @@ On formal occasions, you are announced as $PCTitle. The public @@.green;approves@@ of the way you're providing for $citizenOrphanageTotal of your slaves' children to be raised as citizens. <<FSChange "Paternalist" $citizenOrphanageTotal>> <<if $privateOrphanageTotal > 0>> - Raising $privateOrphanageTotal of your slaves' children privately is considered even more @@.green;impressive.@@ + Raising <<print commaNum($privateOrphanageTotal)>> of your slaves' children privately is considered even more @@.green;impressive.@@ <<set _care = $privateOrphanageTotal*2>> <<FSChange "Paternalist" _care>> <</if>> @@ -586,11 +586,11 @@ On formal occasions, you are announced as $PCTitle. The public @@.red;disapproves@@ of the way you're providing for $citizenOrphanageTotal of your slaves' children to be raised as citizens. <<set _care = -$citizenOrphanageTotal>> <<FSChange "Degradationist" _care>> - <<if $privateOrphanageTotal > 0>>Fortunately your raising slaves' children privately is not publicly known.<</if>> + <<if <<print commaNum($privateOrphanageTotal)>> > 0>>Fortunately your raising slaves' children privately is not publicly known.<</if>> <</if>> <<elseif $privateOrphanageTotal > 0>> <<if $arcologies[0].FSPaternalist != "unset">> - Raising $privateOrphanageTotal of your slaves' children privately is considered extremely @@.green;impressive.@@ + Raising <<print commaNum($privateOrphanageTotal)>> of your slaves' children privately is considered extremely @@.green;impressive.@@ <<set _care = $privateOrphanageTotal*2>> <<FSChange "Paternalist" _care>> <<elseif $arcologies[0].FSDegradationist != "unset">> @@ -598,7 +598,7 @@ On formal occasions, you are announced as $PCTitle. <</if>> <</if>> <<if $breederOrphanageTotal > 0 && $arcologies[0].FSRepopulationFocus != "unset">> - The public @@.green;approves@@ of the way you've dedicated $breederOrphanageTotal of your slaves' children to be raised into future breeders. + The public @@.green;approves@@ of the way you've dedicated <<print commaNum($breederOrphanageTotal)>> of your slaves' children to be raised into future breeders. <<set _futureBreeders = Math.round((($breederOrphanageTotal/100)+1))>> <<FSChange "Repopulationist" _futureBreeders>> <</if>> @@ -755,4 +755,4 @@ On formal occasions, you are announced as $PCTitle. <<elseif $failedElite > 50>> The Societal Elite @@.red;mutter about you@@. <</if>> -<</if>> \ No newline at end of file +<</if>>