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

Fixes.

parent 70247b3a
No related branches found
No related tags found
No related merge requests found
...@@ -2093,9 +2093,14 @@ inflationType: ...@@ -2093,9 +2093,14 @@ inflationType:
What kind of fluid is in the slave. What kind of fluid is in the slave.
Accepts string Accepts string
"none"
"water" "water"
"cum" "cum"
"milk" "milk"
"food"
"aphrodisiac"
"curative"
"tightener"
inflationMethod: inflationMethod:
......
...@@ -321,21 +321,21 @@ She comes to you for an inspection ...@@ -321,21 +321,21 @@ She comes to you for an inspection
$activeSlave.slaveName<<if $activeSlave.slaveSurname>> $activeSlave.slaveSurname<</if>> $activeSlave.slaveName<<if $activeSlave.slaveSurname>> $activeSlave.slaveSurname<</if>>
<</switch>> <</switch>>
is not her original full name; is not her original full name;
<<if $activeSlave.birthName == "" || $activeSlave.birthSurname == "">> <<if $activeSlave.birthName === "" || $activeSlave.birthSurname === "">>
whatever it was, however, has been lost forever. whatever it was, however, has been lost forever.
<</if>> <</if>>
<<elseif $activeSlave.slaveName != $activeSlave.birthName>> <<elseif $activeSlave.slaveName != $activeSlave.birthName>>
$activeSlave.slaveName is not her original given name; $activeSlave.slaveName is not her original given name;
<<if $activeSlave.birthName == "">> <<if $activeSlave.birthName === "">>
whatever it was, however, has been lost forever. whatever it was, however, has been lost forever.
<</if>> <</if>>
<<elseif $activeSlave.slaveSurname != $activeSlave.birthSurname>> <<elseif $activeSlave.slaveSurname != $activeSlave.birthSurname>>
$activeSlave.slaveSurname is not her original surname; $activeSlave.slaveSurname is not her original surname;
<<if $activeSlave.birthSurname == "">> <<if $activeSlave.birthSurname === "">>
whatever it was, however, has been lost forever. whatever it was, however, has been lost forever.
<</if>> <</if>>
<</if>> <</if>>
<<if $activeSlave.birthName != "" || $activeSlave.birthSurname != "">> <<if $activeSlave.birthName !== "" || $activeSlave.birthSurname !== "">>
<<if $activeSlave.devotion > 95>> <<if $activeSlave.devotion > 95>>
she adores her slave name and affects to have forgotten that she was ever called she adores her slave name and affects to have forgotten that she was ever called
<<elseif $activeSlave.devotion > 50>> <<elseif $activeSlave.devotion > 50>>
...@@ -349,9 +349,9 @@ She comes to you for an inspection ...@@ -349,9 +349,9 @@ She comes to you for an inspection
<<else>> <<else>>
she uses her slave name only when constantly punished, since she feels her real name is she uses her slave name only when constantly punished, since she feels her real name is
<</if>> <</if>>
<<if $activeSlave.birthName == "">> <<if $activeSlave.birthName === "">>
$activeSlave.birthSurname. $activeSlave.birthSurname.
<<elseif $activeSlave.birthSurname == "">> <<elseif $activeSlave.birthSurname === "">>
$activeSlave.birthName. $activeSlave.birthName.
<<else>> <<else>>
<<switch $activeSlave.nationality>> <<switch $activeSlave.nationality>>
......
...@@ -9462,7 +9462,7 @@ $pronounCap has ...@@ -9462,7 +9462,7 @@ $pronounCap has
<<elseif $activeSlave.bellyTat == "a butterfly">> <<elseif $activeSlave.bellyTat == "a butterfly">>
A butterfly is tattooed around $possessive popped navel, though it is rather stretched by $possessive enormous pregnancy. A butterfly is tattooed around $possessive popped navel, though it is rather stretched by $possessive enormous pregnancy.
<</if>> <</if>>
<<elseif HugeBelly($activeSlave)>> <<elseif hugeBelly($activeSlave)>>
<<if $activeSlave.bellyTat == "a heart">> <<if $activeSlave.bellyTat == "a heart">>
A heart is tattooed around $possessive popped navel, only to be truly seen when $pronoun is full-term. A heart is tattooed around $possessive popped navel, only to be truly seen when $pronoun is full-term.
<<elseif $activeSlave.bellyTat == "a star">> <<elseif $activeSlave.bellyTat == "a star">>
......
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