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

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

Pregmod v1019-110

See merge request !775
parents 2410015f 79fa106b
No related branches found
No related tags found
2 merge requests!843Delete Please.,!775Pregmod v1019-110
......@@ -196,13 +196,13 @@ vector art added later is drawn over previously added art
/% Leg + 1 size up when chubby or fat%/
<<if $args[0].hips < 0>>
<<if $args[0].weight <= 95>>/%Chubby%/
<<if $args[0].weight > 95>>/%Chubby%/
<<set _legSize = "normal">>
<<else>>
<<set _legSize = "narrow">>
<</if>>
<<elseif $args[0].hips == 0>>
<<if $args[0].weight <= 95>>/%Chubby%/
<<if $args[0].weight > 95>>/%Chubby%/
<<set _legSize = "wide">>
<<else>>
<<set _legSize = "normal">>
......@@ -225,13 +225,13 @@ vector art added later is drawn over previously added art
<<if $args[0].shoes == "heels">>
<<set _shoesType = "heel">>
<<elseif $args[0].shoes == "extreme heels">>
<<if $args[0].weight <= 95>>/%Chubby%/
<<if $args[0].weight > 95>>/%Chubby%/
<<set _shoesType = "extreme heel wide">>
<<else>>
<<set _shoesType = "extreme heel">>
<</if>>
<<elseif $args[0].shoes == "boots">>
<<if $args[0].weight <= 95>>/%Chubby%/
<<if $args[0].weight > 95>>/%Chubby%/
<<set _shoesType = "boot wide">>
<<else>>
<<set _shoesType = "boot">>
......@@ -259,13 +259,13 @@ vector art added later is drawn over previously added art
/% Torso %/
<<if $args[0].waist < -40>>/*Unnatural*/
<<if $args[0].weight <= 30>>/%Chubby%/
<<if $args[0].weight > 30>>/%Chubby%/
<<set _torsoSize = "hourglass">>
<<else>>
<<set _torsoSize = "unnatural">>
<</if>>
<<elseif $args[0].waist <= 10>>/%Hour glass%/
<<if $args[0].weight <= 30>>/%Chubby%/
<<if $args[0].weight > 30>>/%Chubby%/
<<set _torsoSize = "normal">>
<<else>>
<<set _torsoSize = "hourglass">>
......@@ -345,7 +345,7 @@ vector art added later is drawn over previously added art
<</if>>
/%if pregnant%/
<<if $args[0].belly >= 1500>>
<<if $args[0].belly >= 5000>>
<<print "<img class='paperdoll' src=" + _imgSkinLoc + "/preg belly.svg'" + " style='"+ _skinFilter + "'>">>
<<if $args[0].navelPiercing >= 1>>/*Navel Piercing*/
<<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing.svg'" + "/>">>
......
......@@ -2,7 +2,7 @@
<<set _showNavelPiercings = $showBodyMods == 1 && _artSlave.clothes != "restrictive latex" && _artSlave.clothes != "a latex catsuit">>
<<if _artSlave.belly >= 1500>>
<<if _artSlave.belly >= 5000>>
<<include Art_Vector_Belly>>
/* shiny clothings */
......
......@@ -8,13 +8,13 @@
<<if _artSlave.amp != 1>>
<<set _legSize = "Normal">>
<<if _artSlave.hips < 0>>
<<if _artSlave.weight <= 95>>
<<if _artSlave.weight > 95>>
<<set _legSize = "Normal">>
<<else>>
<<set _legSize = "Narrow">>
<</if>>
<<elseif _artSlave.hips == 0>>
<<if _artSlave.weight <= 95>>
<<if _artSlave.weight > 95>>
<<set _legSize = "Wide">>
<<else>>
<<set _legSize = "Normal">>
......
......@@ -5,13 +5,13 @@
/* BEWARE: _torsoSize might be used in torso outfit */
<<if _artSlave.waist < -40>>
<<if _artSlave.weight <= 30>>
<<if _artSlave.weight > 30>>
<<set _torsoSize = "Hourglass">>
<<else>>
<<set _torsoSize = "Unnatural">>
<</if>>
<<elseif _artSlave.waist <= 10>>
<<if _artSlave.weight <= 30>>
<<if _artSlave.weight > 30>>
<<set _torsoSize = "Normal">>
<<else>>
<<set _torsoSize = "Hourglass">>
......
......@@ -995,8 +995,6 @@
<<if def $FSGenderRadicalistLaw>>
<<unset $FSGenderRadicalistLaw>>
<<elseif def $arcologies[0].FSGenderRadicalistLaw>>
<<unset $arcologies[0].FSGenderRadicalistLaw>>
<</if>>
<<if ndef $arcologies[0].FSGenderRadicalistLawBeauty>>
......
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