Skip to content
Snippets Groups Projects
Commit d01fa266 authored by Jones's avatar Jones
Browse files

Tweaks

parent 387c0774
No related branches found
No related tags found
1 merge request!2854Population Extension
...@@ -317,7 +317,7 @@ More elite citizens require their own slaves and will cause the population of sl ...@@ -317,7 +317,7 @@ More elite citizens require their own slaves and will cause the population of sl
<<if $arcologies[0].FSHedonisticDecadence != "unset">> <<if $arcologies[0].FSHedonisticDecadence != "unset">>
<<set _FSScore += $arcologies[0].FSHedonisticDecadence>> <<set _FSScore += $arcologies[0].FSHedonisticDecadence>>
<</if>> <</if>>
<<set _FSScore = _FSScore / $FSCreditCount>> <<set _FSScore = Math.clamp(_FSScore / $FSCreditCount, 0, 500)>>
<<if $secExp == 1>> <<if $secExp == 1>>
<<if $docks > 0>> <<if $docks > 0>>
<<set _transportHub = 0.7 + $docks / 10 + $airport / 10>> <<set _transportHub = 0.7 + $docks / 10 + $airport / 10>>
...@@ -329,10 +329,10 @@ More elite citizens require their own slaves and will cause the population of sl ...@@ -329,10 +329,10 @@ More elite citizens require their own slaves and will cause the population of sl
<<else>> <<else>>
<<set _transportHub = 1>> <<set _transportHub = 1>>
<</if>> <</if>>
<<set $visitors = Math.trunc((($prosperity + _FSScore * 3) * _transportHub) / (100 / $localEcon))>> <<set $visitors = Math.trunc((($arcologies[0].prosperity + _FSScore) * _transportHub) / (100 / $localEcon))>>
<br>@@.green;<<print $visitors>> Traders and tourists@@ visited your arcology this week. <br>@@.green;<<print $visitors>> Traders and tourists@@ visited your arcology this week.
/*Demand for simple labor*/ /*Demand for simple labor*/
<<set _LSCD = ($LCDemand + ($prosperity * 5) + (($middleClass + $visitors * 0.75) * 2) + (($upperClass + $visitors * 0.25) * 4.5) + ($topClass * 20)>> <<set _LSCD = ($LCDemand + ($arcologies[0].prosperity * 5) + (($middleClass + $visitors * 0.75) * 2) + (($upperClass + $visitors * 0.25) * 4.5) + ($topClass * 20)>>
/*Demand for owning slaves*/ /*Demand for owning slaves*/
<<set _SCD = ($upperClass * $slaveDemandU) + ($topClass * $slaveDemandT)>> <<set _SCD = ($upperClass * $slaveDemandU) + ($topClass * $slaveDemandT)>>
/*More slaves than there is work*/ /*More slaves than there is work*/
...@@ -370,7 +370,7 @@ More elite citizens require their own slaves and will cause the population of sl ...@@ -370,7 +370,7 @@ More elite citizens require their own slaves and will cause the population of sl
<<set $ACitizens -= _enslaved>> <<set $ACitizens -= _enslaved>>
<<set $ASlaves += _enslaved>> <<set $ASlaves += _enslaved>>
/*Work left for lower class citizens*/ /*Work left for lower class citizens*/
<<set _LCD = ($LCDemand + ($prosperity * 5) + ($middleClass * 2) + ($upperClass * 4.5) + ($topClass * 20) - Math.trunc(($ASlaves + $helots) * $slaveProductivity)) * $rentEffectL>> <<set _LCD = ($LCDemand + ($arcologies[0].prosperity * 5) + ($middleClass * 2) + ($upperClass * 4.5) + ($topClass * 20) - Math.trunc(($ASlaves + $helots) * $slaveProductivity)) * $rentEffectL>>
/*Changing population depending on work available*/ /*Changing population depending on work available*/
<<if $ACitizens < _LCD>> <<if $ACitizens < _LCD>>
<<set _ACImmigration = Math.trunc((_LCD - $ACitizens) * 0.3) + 1>> <<set _ACImmigration = Math.trunc((_LCD - $ACitizens) * 0.3) + 1>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment