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

Rep decay returned to active duty

parent 8fd48f0c
No related branches found
No related tags found
1 merge request!3679Scaling repX tweaks
...@@ -46,7 +46,6 @@ On formal occasions, you are announced as $PCTitle. ...@@ -46,7 +46,6 @@ On formal occasions, you are announced as $PCTitle.
<</if>> <</if>>
<</if>> <</if>>
/*Let's get rid of decay for a bit, rep gain scaling should be fine on its own
<<set $repDecay = 0.05>> <<set $repDecay = 0.05>>
<<if $arcologies[0].FSChattelReligionistLaw == 1>> <<if $arcologies[0].FSChattelReligionistLaw == 1>>
<<set _repLoss = 0, $PC.degeneracy = 0>> <<set _repLoss = 0, $PC.degeneracy = 0>>
...@@ -118,16 +117,13 @@ On formal occasions, you are announced as $PCTitle. ...@@ -118,16 +117,13 @@ On formal occasions, you are announced as $PCTitle.
You have been a figure of regard for long enough that your reputation does not decay past its present level. You have been a figure of regard for long enough that your reputation does not decay past its present level.
<</if>> <</if>>
<</if>> <</if>>
*/
/*play games with overflow. Gains are calculated (and then sadly rounded) on previous pages but losses are calculated here, after the overflow happened. Let's borrow from the past.*/ /*play games with overflow. Gains are calculated (and then sadly rounded) on previous pages but losses are calculated here, after the overflow happened. Let's borrow from the past.*/
<<if $lastWeeksRepExpenses.overflow < 0>> <<if $lastWeeksRepExpenses.overflow < 0>>
<<set $rep += Math.abs($lastWeeksRepExpenses.overflow)>> <<set $rep += Math.abs($lastWeeksRepExpenses.overflow)>>
<<set $lastWeeksRepExpenses.overflow = 0>> <<set $lastWeeksRepExpenses.overflow = 0>>
<</if>> <</if>>
/*This looks to be a part of the rep decay code, so also commented out
<<run repX(forceNeg(_repLoss), "multiplier")>> <<run repX(forceNeg(_repLoss), "multiplier")>>
*/
<<if ($weatherAwareness == 0) && ($weatherCladding == 2)>> <<if ($weatherAwareness == 0) && ($weatherCladding == 2)>>
The public @@.green;is awestruck@@ of the beautiful weather hardening you have applied to the arcology's exterior, though they do not understand why you would waste so much money first ruining your arcology's appearance before doing this. The public @@.green;is awestruck@@ of the beautiful weather hardening you have applied to the arcology's exterior, though they do not understand why you would waste so much money first ruining your arcology's appearance before doing this.
......
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