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

fixes and breaks

parent 7648c6e7
No related branches found
No related tags found
No related merge requests found
...@@ -1019,32 +1019,28 @@ Routine upkeep of your demesne costs @@.yellow;<<print cashFormat($costs)>>.@@ ...@@ -1019,32 +1019,28 @@ Routine upkeep of your demesne costs @@.yellow;<<print cashFormat($costs)>>.@@
<<set $menialSupplyFactor = Math.clamp($menialSupplyFactor,-50000,50000)>> <<set $menialSupplyFactor = Math.clamp($menialSupplyFactor,-50000,50000)>>
<</if>> <</if>>
<br>
/* Menial and regular slave markets are part of the same market, e.a. if (menial)slave supply goes up, all slave prices fall. /* Menial and regular slave markets are part of the same market, e.a. if (menial)slave supply goes up, all slave prices fall.
The RomanFS may need further tweaking (it probably got weaker). Could increase the slave supply cap if this FS is chosen to fix. */ The RomanFS may need further tweaking (it probably got weaker). Could increase the slave supply cap if this FS is chosen to fix. */
<<set $slaveCostFactor = menialSlaveCost()/1000>> <<set $slaveCostFactor = menialSlaveCost()/1000>>
<<if $arcologies[0].FSRomanRevivalist > random(1,150)>> <<if $arcologies[0].FSRomanRevivalist > random(1,150)>>
<<if $slaveCostFactor > 0.8>> <<if $slaveCostFactor > 0.8>>
@@.yellow;Your Roman Revivalism is having an effect on the slave market and has driven local prices down@@ by convincing slave traders that this is a staunchly pro-slavery area.<br> <br><br>@@.yellow;Your Roman Revivalism is having an effect on the slave market and has driven local prices down@@ by convincing slave traders that this is a staunchly pro-slavery area.<br>
<<set $menialSupplyFactor += 2000>> <<set $menialSupplyFactor += 2000>>
<<else>> <<else>>
@@.yellow;Your Roman Revivalism is having an effect on the slave market and is holding local prices down@@ by convincing slave traders that this is a staunchly pro-slavery area.<br> <br><br>@@.yellow;Your Roman Revivalism is having an effect on the slave market and is holding local prices down@@ by convincing slave traders that this is a staunchly pro-slavery area.<br>
<</if>> <</if>>
<</if>> <</if>>
<br>
<<if $difficultySwitch == 1>> <<if $difficultySwitch == 1>>
<<if $weatherToday.severity > 2>> <<if $weatherToday.severity == 2>>
<<set $localEcon -= 2>> <<set $localEcon -= 2>>
This week's terrible weather did a number on the region, @@.red;hurting the local economy.@@ <br><br>This week's terrible weather did a number on the region, @@.red;hurting the local economy.@@
<<elseif $weatherToday.severity > 3>> <<elseif $weatherToday.severity > 2>>
<<set $localEcon -= 5>> <<set $localEcon -= 5>>
This week's extreme weather ravaged the region, @@.red;the local economy is seriously disrupted.@@ <br><br>This week's extreme weather ravaged the region, @@.red;the local economy is seriously disrupted.@@
<</if>> <</if>>
<</if>> <</if>>
<br>
......
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