Skip to content
Snippets Groups Projects
Commit 36d13321 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'pregmod-master' into 'pregmod-master'

Pregmod v1026-12

See merge request pregmodfan/fc-pregmod!2359
parents 8baf28b8 c8ffd1b5
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,9 @@
7/30/2018
12
-fixed bugs and typos
11
-more widget to JS conversions
-gingering now works as intended
......
......@@ -11,7 +11,7 @@ __Select an eligible slave:__
<<for _i = 0; _i < $slaves.length; _i++>>
<<if isSlaveAvailable($slaves[_i])>>
<<if $slaves[_i].fuckdoll == 0>>
<<if ($slaves[_i].PLimb == 0) || ($slaves[_i].PLimb == 1 && $slaves[_i].amp == 1)>>
<<if $slaves[_i].amp >= 0)>>
<<if ($slaves[_i].indenture == -1)>>
<<if ($slaves[_i].breedingMark == 0 || $propOutcome == 0)>>
<<if ($slaves[_i].reservedChildren == 0)>>
......
......@@ -762,7 +762,7 @@
<<case "anti-aging cream">>
<<if ($slaves[$i].visualAge <= 18)>>
$His outward age has regressed to the point that the creams will have little effect. Since they can't be improved with further drug treatment, @@.yellow;$his drug regimen has been ended.@@
$His outward age has regressed to the point that the creams will have little effect. Since there is no gain for further treatment, @@.yellow;$his drug regimen has been ended.@@
<<set $slaves[$i].drugs = "no drugs">>
<<else>>
The skin creams @@.lime;soothe $his aging skin@@ leaving $him looking younger, though the effects are only skin deep.
......
......@@ -1353,12 +1353,16 @@ Relationship rules: ''<span id="relationshipRules">$activeSlave.relationshipRule
[[Publicize|Slave Interact][$activeSlave.pornFameSpending += 1000]]
//Will cost <<print cashFormat(1000)>> weekly.//
<<else>>
<<print cashFormat($activeSlave.pornFameSpending)>> weekly is spent to publicize them.
<<textbox "_newPornSpending" $activeSlave.pornFameSpending>> weekly is spent to publicize them. [[Save changes|Slave Interact][$activeSlave.pornFameSpending = Number(_newPornSpending) || 0]] |
[[Halt|Slave Interact][$activeSlave.pornFeed = 0, $activeSlave.pornFameSpending = 0, $activeSlave.pornFocus = "none"]] |
<<if $activeSlave.pornFameSpending < 5000>>
[[Increase|Slave Interact][$activeSlave.pornFameSpending += 1000]] |
<</if>>
[[Decrease|Slave Interact][$activeSlave.pornFameSpending -= 1000]]
<<if $activeSlave.pornFameSpending > 5000>><<set _warn = 1>><</if>>
<<set $activeSlave.pornFameSpending = Number($activeSlave.pornFameSpending) || 0>>
<<set $activeSlave.pornFameSpending = Math.clamp(Math.ceil($activeSlave.pornFameSpending/1000)*1000, 0, 5000)>>
<<if _warn>><br>//Spending more than <<print cashFormat(5000)>> weekly will have no effect.//<</if>>
<</if>>
<<if $studioFeed == 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