code
stringlengths
0
56.1M
repo_name
stringclasses
515 values
path
stringlengths
2
147
language
stringclasses
447 values
license
stringclasses
7 values
size
int64
0
56.8M
:: miscSecExpWidgets [widget nobr] <<widget "calcInitialTrade">> <<set _initialTrade = random(20,30)>> <<if $terrain == "urban">> <<set _initialTrade += random(10)>> <</if>> <<if $terrain == "ravine">> <<set _initialTrade -= random(5)>> <</if>> <<if $PC.career == "wealth" || $PC.career == "capitalist" || $PC.career == "celebrity" || $PC.career == "BlackHat">> <<set _initialTrade += random(5)>> <<elseif $PC.career == "escort" || $PC.career == "servant" || $PC.career == "gang">> <<set _initialTrade -= random(5)>> <</if>> <<set $trade = _initialTrade>> <</widget>> <<widget "recalcManpower">> <<if $wasToggledBefore == 0>> <<if $mercenaries == 1>> <<set $mercFreeManpower = random(5,20)>> <<elseif $mercenaries > 1>> <<set $mercFreeManpower = random(10,30)>> <</if>> <</if>> <<set _correctEmployedMP = 0>> <<for _i = 0; _i < $slaveUnits.length; _i++>> <<set _correctEmployedMP += $slaveUnits[_i].troops>> <</for>> <<if $slavesEmployedManpower != _correctEmployedMP>> <<set $slavesEmployedManpower = _correctEmployedMP>> <</if>> <<set _correctEmployedMP = 0>> <<for _i = 0; _i < $militiaUnits.length; _i++>> <<set _correctEmployedMP += $militiaUnits[_i].troops>> <</for>> <<if $militiaEmployedManpower != _correctEmployedMP>> <<set $militiaEmployedManpower = _correctEmployedMP>> <</if>> <<set _correctEmployedMP = 0>> <<for _i = 0; _i < $mercUnits.length; _i++>> <<set _correctEmployedMP += $mercUnits[_i].troops>> <</for>> <<if $mercEmployedManpower != _correctEmployedMP>> <<set $mercEmployedManpower = _correctEmployedMP>> <</if>> <<set $militiaTotalManpower = $militiaEmployedManpower + $militiaFreeManpower>> <<set $mercTotalManpower = $mercEmployedManpower + $mercFreeManpower>> <</widget>> <<widget "recalcSecRestPoint">> <<set _newRest = 0>> <<set _baseRest = 30>> <<if $secUpgrades.nanoCams == 1>> <<set _newRest += 15>> <</if>> <<if $secUpgrades.cyberBots == 1>> <<set _newRest += 15>> <</if>> <<if $secUpgrades.eyeScan == 1>> <<set _newRest += 20>> <</if>> <<if $secUpgrades.cryptoAnalyzer == 1>> <<set _newRest += 20>> <</if>> <<set _newRest += _baseRest>> <<set $secRestPoint = _newRest>> <</widget>> <<widget "recalcCrimeCap">> <<set _baseCap = 100>> <<set _newCap = _baseCap>> <<if $crimeUpgrades.autoTrial == 1>> <<set _newCap -= 10>> <</if>> <<if $crimeUpgrades.autoArchive == 1>> <<set _newCap -= 10>> <</if>> <<if $crimeUpgrades.worldProfiler == 1>> <<set _newCap -= 15>> <</if>> <<if $crimeUpgrades.advForensic == 1>> <<set _newCap -= 15>> <</if>> <<set $crimeCap = _newCap>> <</widget>> <<widget "recalcReqHelots">> <<set _newReq = 0>> <<set _baseReq = 20>> <<if $secUpgrades.nanoCams == 1>> <<set _newReq += 5>> <</if>> <<if $secUpgrades.cyberBots == 1>> <<set _newReq += 5>> <</if>> <<if $secUpgrades.eyeScan == 1>> <<set _newReq += 10>> <</if>> <<if $secUpgrades.cryptoAnalyzer == 1>> <<set _newReq += 10>> <</if>> <<if $crimeUpgrades.autoTrial == 1>> <<set _newReq += 5>> <</if>> <<if $crimeUpgrades.autoArchive == 1>> <<set _newReq += 5>> <</if>> <<if $crimeUpgrades.worldProfiler == 1>> <<set _newReq += 10>> <</if>> <<if $crimeUpgrades.advForensic == 1>> <<set _newReq += 10>> <</if>> <<if $intelUpgrades.sensors == 1>> <<set _newReq += 5>> <</if>> <<if $intelUpgrades.signalIntercept == 1>> <<set _newReq += 5>> <</if>> <<if $intelUpgrades.radar == 1>> <<set _newReq += 10>> <</if>> <<if $readinessUpgrades.rapidVehicles == 1>> <<set _newReq += 5>> <</if>> <<if $readinessUpgrades.rapidPlatforms == 1>> <<set _newReq += 10>> <</if>> <<if $readinessUpgrades.earlyWarn == 1>> <<set _newReq += 10>> <</if>> <<if $SFSupportLevel >= 1>> <<set _newReq -= 5 * $SFSupportLevel>> <</if>> <<if $secUpgrades.coldstorage >= 1>> <<set _newReq -= 10 * $secUpgrades.coldstorage>> <</if>> <<set _newReq += _baseReq>> <<set $reqHelots = _newReq>> <</widget>> <<widget "recalcEdictsUpkeep">> /* authority cost */ <<set _newAuthUpkeep = 0>> <<if $sellData == 1>> <<set _newAuthUpkeep += 10>> <</if>> <<if $slaveSoldierPrivilege == 1>> <<set _newAuthUpkeep += 10>> <</if>> <<if $weaponsLaw == 0>> <<set _newAuthUpkeep += 30>> <<elseif $weaponsLaw == 2>> <<set _newAuthUpkeep += 10>> <<elseif $weaponsLaw == 1>> <<set _newAuthUpkeep += 20>> <</if>> <<if $slavesOfficers == 1>> <<set _newAuthUpkeep += 10>> <</if>> /* cash cost */ <<set _newUpkeep = 0>> <<if $slaveWatch == 1>> <<set _newUpkeep += 1000>> <</if>> <<if $subsidyChurch == 1>> <<set _newUpkeep += 1000>> <</if>> <<if $martialSchool == 1>> <<set _newUpkeep += 1000>> <</if>> <<if $legionTradition == 1>> <<set _newUpkeep += 1000>> <</if>> <<if $pharaonTradition == 1>> <<set _newUpkeep += 1000>> <</if>> <<if $eagleWarriors == 1>> <<set _newUpkeep += 1000>> <</if>> <<if $ronin == 1>> <<set _newUpkeep += 1000>> <</if>> <<if $mamluks == 1>> <<set _newUpkeep += 1000>> <</if>> <<if $sunTzu == 1>> <<set _newUpkeep += 1000>> <</if>> <<if $tradeLegalAid == 1>> <<set _newUpkeep += 1000>> <</if>> <<set $edictsUpkeep = _newUpkeep>> <<set $edictsAuthUpkeep = _newAuthUpkeep>> <</widget>> <<widget "recalcUnits">> <<set $maxUnits = 6 + $secBarracksUpgrades.size * 2>> <<set $activeUnits = $militiaUnits.length + $slaveUnits.length + $mercUnits.length>> <</widget>> <<widget "fixBrokenUnits">> <<if ndef $secBots.ID>> <<set $secBots.ID = -1>> <</if>> <<if $secBots.maxTroops < 30>> <br>Fixed security bots wrong max troop count. <<set $secBots.maxTroops = 30>> <</if>> <<if !isInt($secBots.troops)>> <br>Fixed security bots wrong max troop count. <<set $secBots.troops = $secBots.maxTroops>> <</if>> <<if $secBots.troops > 0 && $secBots.active != 1>> <br>Fixed security bots wrong "active" flag. <<set $secBots.active = 1>> <</if>> <<for _i = 0; _i < $militiaUnits.length; _i++>> <<if ndef $militiaUnits[_i].SF>> <br>Set militia missing flag <<set $militiaUnits[_i].SF = 0>> <</if>> <<if ndef $militiaUnits[_i].ID>> <br>Set militia missing ID <<generateUnitID $militiaUnits[_i]>> <</if>> <<if ndef $militiaUnits[_i].cyber>> <br>Set militia missing flag <<set $militiaUnits[_i].cyber = 0>> <</if>> <<if ndef $militiaUnits[_i].commissars>> <br>Set militia missing flag <<set $militiaUnits[_i].commissars = 0>> <</if>> <<if $militiaUnits[_i].maxTroops < 30>> <br>Fixed militia unit wrong max troop count. <<set $militiaUnits[_i].maxTroops = 30>> <</if>> <<if !isInt($militiaUnits[_i].troops)>> <<set $militiaUnits[_i].troops = $militiaUnits[_i].maxTroops>> <br>Fixed militia unit wrong troop count. <</if>> <<if $militiaUnits[_i].troops > 0 && $militiaUnits[_i].active != 1>> <br>Fixed militia unit wrong "active" flag. <<set $militiaUnits[_i].active = 1>> <</if>> <</for>> <<for _i = 0; _i < $slaveUnits.length; _i++>> <<if ndef $slaveUnits[_i].SF>> <br>Set slave missing flag <<set $slaveUnits[_i].SF = 0>> <</if>> <<if ndef $slaveUnits[_i].ID>> <br>Set slave missing ID <<generateUnitID $slaveUnits[_i]>> <</if>> <<if ndef $slaveUnits[_i].cyber>> <br>Set slave missing flag <<set $slaveUnits[_i].cyber = 0>> <</if>> <<if ndef $slaveUnits[_i].commissars>> <br>Set slave missing flag <<set $slaveUnits[_i].commissars = 0>> <</if>> <<if $slaveUnits[_i].maxTroops < 30>> <br>Fixed slave unit wrong max troop count. <<set $slaveUnits[_i].maxTroops = 30>> <</if>> <<if !isInt($slaveUnits[_i].troops)>> <<set $slaveUnits[_i].troops = $slaveUnits[_i].maxTroops>> <br>Fixed slave unit wrong troop count. <</if>> <<if $slaveUnits[_i].troops > 0 && $slaveUnits[_i].active != 1>> <br>Fixed slave unit wrong "active" flag. <<set $slaveUnits[_i].active = 1>> <</if>> <</for>> <<for _i = 0; _i < $mercUnits.length; _i++>> <<if ndef $mercUnits[_i].SF>> <br>Set merc missing flag <<set $mercUnits[_i].SF = 0>> <</if>> <<if ndef $mercUnits[_i].ID>> <br>Set merc missing ID <<generateUnitID $mercUnits[_i]>> <</if>> <<if ndef $mercUnits[_i].cyber>> <br>Set merc missing flag <<set $mercUnits[_i].cyber = 0>> <</if>> <<if ndef $mercUnits[_i].commissars>> <br>Set merc missing flag <<set $mercUnits[_i].commissars = 0>> <</if>> <<if $mercUnits[_i].maxTroops < 30>> <br>Fixed merc unit wrong max troop count. <<set $mercUnits[_i].maxTroops = 30>> <</if>> <<if !isInt($mercUnits[_i].troops)>> <<set $mercUnits[_i].troops = $mercUnits[_i].maxTroops>> <br>Fixed merc unit wrong troop count. <</if>> <<if $mercUnits[_i].troops > 0 && $mercUnits[_i].active != 1>> <br>Fixed merc unit wrong "active" flag. <<set $mercUnits[_i].active = 1>> <</if>> <</for>> <</widget>> <<widget "fixBrokenStats">> <<if !isInt($totalKills)>> <<set $totalKills = 0>> <</if>> <<if !isInt($mercTotalCasualties)>> <<set $mercTotalCasualties = 0>> <</if>> <<if !isInt($mercEmployedManpower)>> <<set $mercEmployedManpower = 0>> <</if>> <<if !isInt($mercTotalManpower)>> <<set $mercTotalManpower = 0>> <</if>> <<if !isInt($slavesTotalCasualties)>> <<set $slavesTotalCasualties = 0>> <</if>> <<if !isInt($slavesEmployedManpower)>> <<set $slavesEmployedManpower = 0>> <</if>> <<if !isInt($militiaTotalCasualties)>> <<set $militiaTotalCasualties = 0>> <</if>> <<if !isInt($militiaEmployedManpower)>> <<set $militiaEmployedManpower = 0>> <</if>> <<if !isInt($militiaFreeManpower)>> <<set $militiaFreeManpower = 0>> <</if>> <<if !isInt($militiaTotalManpower)>> <<set $militiaTotalManpower = 0>> <</if>> <<if !isInt($battlesCount)>> <<set $battlesCount = 0>> <</if>> <</widget>> <<widget "fixBrokenFS">> <<if $arcologies[0].FSSubjugationist !== "unset" && !Number.isFinite($arcologies[0].FSSubjugationist)>> <<set $arcologies[0].FSSubjugationist = 10>> <br>Fixed NaN FS value for FSSubjugationist <</if>> <<if $arcologies[0].FSGenderRadicalist !== "unset" && !Number.isFinite($arcologies[0].FSGenderRadicalist)>> <<set $arcologies[0].FSGenderRadicalist = 10>> <br>Fixed NaN FS value for FSGenderRadicalist <</if>> <<if $arcologies[0].FSRestart !== "unset" && !Number.isFinite($arcologies[0].FSRestart)>> <<set $arcologies[0].FSRestart = 10>> <br>Fixed NaN FS value for FSRestart <</if>> <<if $arcologies[0].FSRepopulationFocus !== "unset" && !Number.isFinite($arcologies[0].FSRepopulationFocus)>> <<set $arcologies[0].FSRepopulationFocus = 10>> <br>Fixed NaN FS value for FSRepopulationFocus <</if>> <<if $arcologies[0].FSSupremacist !== "unset" && !Number.isFinite($arcologies[0].FSSupremacist)>> <<set $arcologies[0].FSSupremacist = 10>> <br>Fixed NaN FS value for FSSupremacist <</if>> <<if $arcologies[0].FSBodyPurist !== "unset" && !Number.isFinite($arcologies[0].FSBodyPurist)>> <<set $arcologies[0].FSBodyPurist = 10>> <br>Fixed NaN FS value for FSBodyPurist <</if>> <<if $arcologies[0].FSPaternalist !== "unset" && !Number.isFinite($arcologies[0].FSPaternalist)>> <<set $arcologies[0].FSPaternalist = 10>> <br>Fixed NaN FS value for FSPaternalist <</if>> <<if $arcologies[0].FSSlimnessEnthusiast !== "unset" && !Number.isFinite($arcologies[0].FSSlimnessEnthusiast)>> <<set $arcologies[0].FSSlimnessEnthusiast = 10>> <br>Fixed NaN FS value for FSSlimnessEnthusiast <</if>> <<if $arcologies[0].FSGenderFundamentalist !== "unset" && !Number.isFinite($arcologies[0].FSGenderFundamentalist)>> <<set $arcologies[0].FSGenderFundamentalist = 10>> <br>Fixed NaN FS value for FSGenderFundamentalist <</if>> <<if $arcologies[0].FSMaturityPreferentialist !== "unset" && !Number.isFinite($arcologies[0].FSMaturityPreferentialist)>> <<set $arcologies[0].FSMaturityPreferentialist = 10>> <br>Fixed NaN FS value for FSMaturityPreferentialist <</if>> <<if $arcologies[0].FSYouthPreferentialist !== "unset" && !Number.isFinite($arcologies[0].FSYouthPreferentialist)>> <<set $arcologies[0].FSYouthPreferentialist = 10>> <br>Fixed NaN FS value for FSYouthPreferentialist <</if>> <<if $arcologies[0].FSTransformationFetishist !== "unset" && !Number.isFinite($arcologies[0].FSTransformationFetishist)>> <<set $arcologies[0].FSTransformationFetishist = 10>> <br>Fixed NaN FS value for FSTransformationFetishist <</if>> <<if $arcologies[0].FSHedonisticDecadence !== "unset" && !Number.isFinite($arcologies[0].FSHedonisticDecadence)>> <<set $arcologies[0].FSHedonisticDecadence = 10>> <br>Fixed NaN FS value for FSHedonisticDecadence <</if>> <<if $arcologies[0].FSPhysicalIdealist !== "unset" && !Number.isFinite($arcologies[0].FSPhysicalIdealist)>> <<set $arcologies[0].FSPhysicalIdealist = 10>> <br>Fixed NaN FS value for FSPhysicalIdealist <</if>> <<if $arcologies[0].FSPastoralist !== "unset" && !Number.isFinite($arcologies[0].FSPastoralist)>> <<set $arcologies[0].FSPastoralist = 10>> <br>Fixed NaN FS value for FSPastoralist <</if>> <<if $arcologies[0].FSAssetExpansionist !== "unset" && !Number.isFinite($arcologies[0].FSAssetExpansionist)>> <<set $arcologies[0].FSAssetExpansionist = 10>> <br>Fixed NaN FS value for FSAssetExpansionist <</if>> <<if $arcologies[0].FSDegradationist !== "unset" && !Number.isFinite($arcologies[0].FSDegradationist)>> <<set $arcologies[0].FSDegradationist = 10>> <br>Fixed NaN FS value for FSDegradationist <</if>> <<if $arcologies[0].FSRomanRevivalist !== "unset" && !Number.isFinite($arcologies[0].FSRomanRevivalist)>> <<set $arcologies[0].FSRomanRevivalist = 10>> <br>Fixed NaN FS value for FSRomanRevivalist <</if>> <<if $arcologies[0].FSChattelReligionist !== "unset" && !Number.isFinite($arcologies[0].FSChattelReligionist)>> <<set $arcologies[0].FSChattelReligionist = 10>> <br>Fixed NaN FS value for FSChattelReligionist <</if>> <<if $arcologies[0].FSChineseRevivalist !== "unset" && !Number.isFinite($arcologies[0].FSChineseRevivalist)>> <<set $arcologies[0].FSChineseRevivalist = 10>> <br>Fixed NaN FS value for FSChineseRevivalist <</if>> <<if $arcologies[0].FSArabianRevivalist !== "unset" && !Number.isFinite($arcologies[0].FSArabianRevivalist)>> <<set $arcologies[0].FSArabianRevivalist = 10>> <br>Fixed NaN FS value for FSArabianRevivalist <</if>> <<if $arcologies[0].FSEdoRevivalist !== "unset" && !Number.isFinite($arcologies[0].FSEdoRevivalist)>> <<set $arcologies[0].FSEdoRevivalist = 10>> <br>Fixed NaN FS value for FSEdoRevivalist <</if>> <<if $arcologies[0].FSEgyptianRevivalist !== "unset" && !Number.isFinite($arcologies[0].FSEgyptianRevivalist)>> <<set $arcologies[0].FSEgyptianRevivalist = 10>> <br>Fixed NaN FS value for FSEgyptianRevivalist <</if>> <<if $arcologies[0].FSAztecRevivalist !== "unset" && !Number.isFinite($arcologies[0].FSAztecRevivalist)>> <<set $arcologies[0].FSAztecRevivalist = 10>> <br>Fixed NaN FS value for FSAztecRevivalist <</if>> <</widget>> <<widget "recalcBaseStats">> <<if $secBotsBaseAttack != 7 + $droneUpgrades.attack>> <<set $secBotsBaseAttack = 7 + $droneUpgrades.attack>> <</if>> <<if $secBotsBaseDefense != 3 + $droneUpgrades.defense>> <<set $secBotsBaseDefense = 3 + $droneUpgrades.defense>> <</if>> <<if $secBotsMorale != 200>> <<set $secBotsMorale = 200>> <</if>> <<if $secBotsBaseHp != 3 + $droneUpgrades.hp>> <<set $secBotsBaseHp = 3 + $droneUpgrades.hp>> <</if>> <<if $militiaBaseAttack != 7 + $humanUpgrade.attack>> <<set $militiaBaseAttack = 7 + $humanUpgrade.attack>> <</if>> <<if $militiaBaseDefense != 5 + $humanUpgrade.defense>> <<set $militiaBaseDefense = 5 + $humanUpgrade.defense>> <</if>> <<if $militiaBaseMorale != 140 + $humanUpgrade.morale>> <<set $militiaBaseMorale = 140 + $humanUpgrade.morale>> <</if>> <<if $militiaBaseHp != 3 + $humanUpgrade.hp>> <<set $militiaBaseHp = 3 + $humanUpgrade.hp>> <</if>> <<if $slaveBaseAttack != 8 + $humanUpgrade.attack>> <<set $slaveBaseAttack = 8 + $humanUpgrade.attack>> <</if>> <<if $slaveBaseDefense != 3 + $humanUpgrade.defense>> <<set $slaveBaseDefense = 3 + $humanUpgrade.defense>> <</if>> <<if $slaveBaseMorale != 110 + $humanUpgrade.morale>> <<set $slaveBaseMorale = 110 + $humanUpgrade.morale>> <</if>> <<if $slaveBaseHp != 3 + $humanUpgrade.hp>> <<set $slaveBaseHp = 3 + $humanUpgrade.hp>> <</if>> <<if $mercBaseAttack != 8 + $humanUpgrade.attack>> <<set $mercBaseAttack = 8 + $humanUpgrade.attack>> <</if>> <<if $mercBaseDefense != 4 + $humanUpgrade.defense>> <<set $mercBaseDefense = 4 + $humanUpgrade.defense>> <</if>> <<if $mercBaseMorale != 125 + $humanUpgrade.morale>> <<set $mercBaseMorale = 125 + $humanUpgrade.morale>> <</if>> <<if $mercBaseHp != 4 + $humanUpgrade.hp>> <<set $mercBaseHp = 4 + $humanUpgrade.hp>> <</if>> <<if $SFBaseAttack != 8 + $humanUpgrade.attack>> <<set $SFBaseAttack = 8 + $humanUpgrade.attack>> <</if>> <<if $SFBaseDefense != 4 + $humanUpgrade.defense>> <<set $SFBaseDefense = 4 + $humanUpgrade.defense>> <</if>> <<if $SFBaseMorale != 140 + $humanUpgrade.morale>> <<set $SFBaseMorale = 140 + $humanUpgrade.morale>> <</if>> <<if $SFBaseHp != 4 + $humanUpgrade.hp>> <<set $SFBaseHp = 4 + $humanUpgrade.hp>> <</if>> <</widget>> <<widget "replenishAllUnits">> <<set _hasLossesM = 0>> <<set _hasLossesS = 0>> <<set _hasLossesMe = 0>> <<for _i = 0; _i < $militiaUnits.length; _i++>> <<if $militiaUnits[_i].troops < $militiaUnits[_i].maxTroops && $militiaFreeManpower > 0>> <<set _hasLossesM = 1>> <<break>> <</if>> <</for>> <<for _i = 0; _i < $slaveUnits.length; _i++>> <<if $slaveUnits[_i].troops < $slaveUnits[_i].maxTroops && $helots > 0>> <<set _hasLossesS = 1>> <<break>> <</if>> <</for>> <<for _i = 0; _i < $mercUnits.length; _i++>> <<if $mercUnits[_i].troops < $mercUnits[_i].maxTroops && $mercFreeManpower > 0>> <<set _hasLossesMe = 1>> <<break>> <</if>> <</for>> <<if _hasLossesM == 1 && $militiaFreeManpower > 0 || _hasLossesS == 1 && $helots > 0 || _hasLossesMe == 1 && $mercFreeManpower > 0>> <<link "Replenish all units">> <<if _hasLossesM == 1>> <<for _i = 0; _i < $militiaUnits.length; _i++>> <<if $militiaUnits[_i].troops < $militiaUnits[_i].maxTroops && $militiaFreeManpower > 0>> <<if $militiaFreeManpower >= $militiaUnits[_i].maxTroops - $militiaUnits[_i].troops>> <<set $militiaFreeManpower -= $militiaUnits[_i].maxTroops - $militiaUnits[_i].troops>> <<set $militiaEmployedManpower += $militiaUnits[_i].maxTroops - $militiaUnits[_i].troops>> <<set _expLoss = ($militiaUnits[_i].maxTroops - $militiaUnits[_i].troops) / $militiaUnits[_i].troops>> <<set $militiaUnits[_i].training -= $militiaUnits[_i].training * _expLoss>> <<set $militiaUnits[_i].troops = $militiaUnits[_i].maxTroops>> <<else>> <<set $militiaEmployedManpower += $militiaFreeManpower>> <<set _expLoss = $militiaFreeManpower / $militiaUnits[_i].troops>> <<set $militiaUnits[_i].training -= $militiaUnits[_i].training * _expLoss>> <<set $militiaUnits[_i].troops += $militiaFreeManpower>> <<set $militiaFreeManpower = 0>> <</if>> <</if>> <</for>> <</if>> <<if _hasLossesS == 1>> <<for _i = 0; _i < $slaveUnits.length; _i++>> <<if $slaveUnits[_i].troops < $slaveUnits[_i].maxTroops && $helots > 0>> <<if $helots >= $slaveUnits[_i].maxTroops - $slaveUnits[_i].troops>> <<set $helots -= $slaveUnits[_i].maxTroops - $slaveUnits[_i].troops>> <<set $slavesEmployedManpower += $slaveUnits[_i].maxTroops - $slaveUnits[_i].troops>> <<set _expLoss = ($slaveUnits[_i].maxTroops - $slaveUnits[_i].troops) / $slaveUnits[_i].troops>> <<set $slaveUnits[_i].training -= $slaveUnits[_i].training * _expLoss>> <<set $slaveUnits[_i].troops = $slaveUnits[_i].maxTroops>> <<else>> <<set $slavesEmployedManpower += $helots>> <<set _expLoss = $helots / $slaveUnits[_i].troops>> <<set $slaveUnits[_i].training -= $slaveUnits[_i].training * _expLoss>> <<set $slaveUnits[_i].troops += $helots>> <<set $helots = 0>> <</if>> <</if>> <</for>> <</if>> <<if _hasLossesMe == 1>> <<for _i = 0; _i < $mercUnits.length; _i++>> <<if $mercUnits[_i].troops < $mercUnits[_i].maxTroops && $mercFreeManpower > 0>> <<if $mercFreeManpower >= $mercUnits[_i].maxTroops - $mercUnits[_i].troops>> <<set $mercFreeManpower -= $mercUnits[_i].maxTroops - $mercUnits[_i].troops>> <<set $mercEmployedManpower += $mercUnits[_i].maxTroops - $mercUnits[_i].troops>> <<set _expLoss = ($mercUnits[_i].maxTroops - $mercUnits[_i].troops) / $mercUnits[_i].troops>> <<set $mercUnits[_i].training -= $mercUnits[_i].training * _expLoss>> <<set $mercUnits[_i].troops = $mercUnits[_i].maxTroops>> <<else>> <<set $mercEmployedManpower += $mercFreeManpower>> <<set _expLoss = $mercFreeManpower / $mercUnits[_i].troops>> <<set $mercUnits[_i].training -= $mercUnits[_i].training * _expLoss>> <<set $mercUnits[_i].troops += $mercFreeManpower>> <<set $mercFreeManpower = 0>> <</if>> <</if>> <</for>> <</if>> <<if $slaveRebellion == 1 || $citizenRebellion == 1>> <<goto "rebellionOptions">> <<elseif $attackThisWeek == 1>> <<goto "attackOptions">> <<else>> <<goto "secBarracks">> <</if>> <</link>> <br>//Will replenish units as long as manpower is available <</if>> <</widget>>
AshVaris/fc
src/SecExp/widgets/miscSecExpWidgets.tw
tw
mit
21,510
:: unitsWidgets [widget nobr] <<widget "militiaUnitsDescription">> <<if $args[0].active == 1>> <strong>$args[0].platoonName</strong> <<if $args[0].battlesFought > 1>> participated in $args[0].battlesFought battles and is ready to face the enemy once more at your command.<<elseif $args[0].battlesFought == 1>>is ready to face the enemy once more at your command.<<else>>is ready to face the enemy in battle.<</if>> Its $args[0].troops men and women are all proud citizens of your arcology, willing to put their lives on the line to protect their home. <<if $args[0].troops < $args[0].maxTroops>> The unit is not at its full strength of $args[0].maxTroops operatives.<</if>> <<if $args[0].equip == 0>> They are issued with simple, yet effective equipment: firearms, a few explosives and standard uniforms, nothing more. <<elseif $args[0].equip == 1>> They are issued with good, modern equipment: firearms, explosives and a few specialized weapons like sniper rifles and machine guns. They also carry simple body armor. <<elseif $args[0].equip == 2>> They are issued with excellent, high tech equipment: modern firearms, explosives, specialized weaponry and modern body armor. They are also issued with modern instruments like night vision and portable radars. <<else>> They are equipped with the best the modern world has to offer: modern firearms, explosives, specialized weaponry, experimental railguns, adaptive body armor and high tech recon equipment. <</if>> <<if $args[0].training <= 33>> They lack the experience to be considered consumed professionals, but their eagerness to defend the arcology makes up for it. <<elseif $args[0].training <= 66>> They have trained <<if $args[0].battlesFought > 0>>and fought<</if>> enough to be considered disciplined, professional soldiers, ready to face the battlefield. <<else>> They are consumed veterans, with a wealth of experience and perfectly trained. On the battlefield they are a well oiled war machine capable of facing pretty much anything. <</if>> <<if $args[0].loyalty < 10>> The unit is extremely disloyal. Careful monitoring of their activities and relationships should be implemented. <<elseif $args[0].loyalty < 33>> Their loyalty is low. Careful monitoring of their activities and relationships is advised. <<elseif $args[0].loyalty < 66>> Their loyalty is not as high as it can be, but they are not actively working against their arcology owner. <<elseif $args[0].loyalty < 90>> Their loyalty is high and strong. The likelihood of this unit betraying the arcology is low to non-existent. <<else>> The unit is fanatically loyal. They would prefer death over betrayal. <</if>> <<if $args[0].cyber == 1>> The soldiers of the unit have been enhanced with numerous cyberaugmentations which greatly increase their raw power. <</if>> <<if $args[0].medics == 1>> The unit has a dedicated squad of medics that will follow them in battle. <</if>> <<if $args[0].SF == 1>> The unit has attached advisors from $securityForceName that will help the squad remain tactically aware and active. <</if>> <<else>> $args[0].platoonName lost too many operatives in the $args[0].battlesFought it fought and can no longer be considered a unit at all. <</if>> <</widget>> <<widget "slaveUnitsDescription">> <<if $args[0].active == 1>> <strong>$args[0].platoonName</strong> <<if $args[0].battlesFought > 1>> participated in $args[0].battlesFought battles and is ready to face the enemy once more at your command.<<elseif $args[0].battlesFought == 1>>is ready to face the enemy once more at your command.<<else>>is ready to face the enemy in battle.<</if>> Its $args[0].troops men and women are slaves in your possession, tasked with the protection of their owner and their arcology. <<if $args[0].troops < $args[0].maxTroops>> The unit is not at its full strength of $args[0].maxTroops operatives.<</if>> <<if $args[0].equip == 0>> They are issued with simple, yet effective equipment: firearms, a few explosives and standard uniforms, nothing more. <<elseif $args[0].equip == 1>> They are issued with good, modern equipment: firearms, explosives and a few specialized weapons like sniper rifles and machine guns. They also carry simple body armor. <<elseif $args[0].equip == 2>> They are issued with excellent, high tech equipment: modern firearms, explosives, specialized weaponry and modern body armor. They are also issued with modern instruments like night vision and portable radars. <<else>> They are equipped with the best the modern world has to offer: modern firearms, explosives, specialized weaponry, experimental railguns, adaptive body armor and high tech recon equipment. <</if>> <<if $args[0].training <= 33>> They lack the experience to be considered professionals, but their eagerness to prove themselves makes up for it. <<elseif $args[0].training <= 66>> They have trained <<if $args[0].battlesFought > 0>>and fought<</if>> enough to be considered disciplined, professional soldiers, ready to face the battlefield. <<else>> They are consumed veterans, with a wealth of experience and perfectly trained. On the battlefield they are a well oiled war machine capable of facing pretty much anything. <</if>> <<if $args[0].loyalty < 10>> The unit is extremely disloyal. Careful monitoring of their activities and relationships should be implemented. <<elseif $args[0].loyalty < 33>> Their loyalty is low. Careful monitoring of their activities and relationships is advised. <<elseif $args[0].loyalty < 66>> Their loyalty is not as high as it can be, but they are not actively working against their arcology owner. <<elseif $args[0].loyalty < 90>> Their loyalty is high and strong. The likelihood of this unit betraying the arcology is low to non-existent. <<else>> The unit is fanatically loyal. They would prefer death over betrayal. <</if>> <<if $args[0].cyber == 1>> The soldiers of the unit have been enhanced with numerous cyberaugmentations which greatly increase their raw power. <</if>> <<if $args[0].medics == 1>> The unit has a dedicated squad of medics that will follow them in battle. <</if>> <<if $args[0].SF == 1>> The unit has attached advisors from $securityForceName that will help the squad remain tactically aware and active. <</if>> <<else>> $args[0].platoonName lost too many operatives in the $args[0].battlesFought it fought and can no longer be considered a unit at all. <</if>> <</widget>> <<widget "mercUnitsDescription">> <<if $args[0].active == 1>> <strong>$args[0].platoonName</strong> <<if $args[0].battlesFought > 1>> participated in $args[0].battlesFought battles and is ready to face the enemy once more at your command.<<elseif $args[0].battlesFought == 1>>is ready to face the enemy once more at your command.<<else>>is ready to face the enemy in battle.<</if>> Its $args[0].troops men and women are mercenaries contracted to defend the arcology against external threats. <<if $args[0].troops < $args[0].maxTroops>> The unit is not at its full strength of $args[0].maxTroops operatives.<</if>> <<if $args[0].equip == 0>> They are issued with simple, yet effective equipment: firearms, a few explosives and standard uniforms, nothing more. <<elseif $args[0].equip == 1>> They are issued with good, modern equipment: firearms, explosives and a few specialized weapons like sniper rifles and machine guns. They also carry simple body armor. <<elseif $args[0].equip == 2>> They are issued with excellent, high tech equipment: modern firearms, explosives, specialized weaponry and modern body armor. They are also issued with modern instruments like night vision and portable radars. <<else>> They are equipped with the best the modern world has to offer: modern firearms, explosives, specialized weaponry, experimental railguns, adaptive body armor and high tech recon equipment. <</if>> <<if $args[0].training <= 33>> They lack the experience to be considered professionals, but they're trained more than enough to still be an effective unit. <<elseif $args[0].training <= 66>> They have trained <<if $args[0].battlesFought > 0>>and fought<</if>> enough to be considered disciplined, professional soldiers, ready to face the battlefield. <<else>> They are consumed veterans, with a wealth of experience and perfectly trained. On the battlefield they are a well oiled war machine capable of facing pretty much anything. <</if>> <<if $args[0].loyalty < 10>> The unit is extremely disloyal. Careful monitoring of their activities and relationships should be implemented. <<elseif $args[0].loyalty < 33>> Their loyalty is low. Careful monitoring of their activities and relationships is advised. <<elseif $args[0].loyalty < 66>> Their loyalty is not as high as it can be, but they are not actively working against their arcology owner. <<elseif $args[0].loyalty < 90>> Their loyalty is high and strong. The likelihood of this unit betraying the arcology is low to non-existent. <<else>> The unit is fanatically loyal. They would prefer death over betrayal. <</if>> <<if $args[0].cyber == 1>> The soldiers of the unit have been enhanced with numerous cyberaugmentations which greatly increase their raw power. <</if>> <<if $args[0].medics == 1>> The unit has a dedicated squad of medics that will follow them in battle. <</if>> <<if $args[0].SF == 1>> The unit has attached advisors from $securityForceName that will help the squad remain tactically aware and active. <</if>> <<else>> $args[0].platoonName lost too many operatives in the $args[0].battlesFought it fought and can no longer be considered a unit at all. <</if>> <</widget>> <<widget "secBotsDescription">> <<if $secBots.active == 1>> <strong>The <<print $secBots.troops>> security drones</strong> are assembled in an ordered line in front of you, absolutely silent and ready to receive their orders. <<if $secBots.troops < $secBots.maxTroops>> The unit is not at its full strength of $secBots.maxTroops drones.<</if>> <<if $secBots.equip == 0>> They are equipped with light weaponry, mainly anti-riot non lethal weapons. Not particularly effective in battle. <<elseif $secBots.equip == 1>> They are equipped with light firearms, not an overwhelming amount of firepower, but with their mobility good enough to be effective. <<elseif $secBots.equip == 2>> They are equipped with powerful, modern firearms and simple armor mounted around their frames. They do not make for a pretty sight, but on the battlefield they are a dangerous weapon. <<else>> They are equipped with high energy railguns and adaptive armor. They are a formidable force on the battlefield, even for experienced soldiers. <</if>> <<else>> There are too few security drones left to be able to deploy them on the battlefield. <</if>> <</widget>> <<widget "generateUnitID">> <<set _newID = 0>> <<for _i = 0; _i < $militiaUnits.length; _i++>> <<if $militiaUnits[_i].ID >= _newID>> <<set _newID = $militiaUnits[_i].ID + 1>> <</if>> <</for>> <<for _i = 0; _i < $slaveUnits.length; _i++>> <<if $slaveUnits[_i].ID >= _newID>> <<set _newID = $slaveUnits[_i].ID + 1>> <</if>> <</for>> <<for _i = 0; _i < $mercUnits.length; _i++>> <<if $mercUnits[_i].ID >= _newID>> <<set _newID = $mercUnits[_i].ID + 1>> <</if>> <</for>> <<set $args[0].ID = _newID>> <</widget>>
AshVaris/fc
src/SecExp/widgets/unitsWidgets.tw
tw
mit
11,533
:: art widgets [nobr widget] /% Call as <<AssistantArt>> Displays assistant images. Currently passage-based. $args[0]: Image size/center. 3: Large, right. Example: description. 2: Medium, right. Example: random events. %/ <<widget "AssistantArt">> <<if $imageChoice == 0>> /* RENDERED IMAGES BY SHOKUSHU */ <<switch $assistantAppearance>> <<case "monstergirl">> <<set _fileName = "'resources/renders/assistant monstergirl.png' ">> <<case "shemale">> <<set _fileName = "'resources/renders/assistant shemale.png' ">> <<case "amazon">> <<set _fileName = "'resources/renders/assistant amazon.png' ">> <<case "businesswoman">> <<set _fileName = "'resources/renders/assistant businesswoman.png' ">> <<case "goddess">> <<set _fileName = "'resources/renders/assistant goddess.png' ">> <<case "schoolgirl">> <<set _fileName = "'resources/renders/assistant schoolgirl.png' ">> <<default>> <<set _fileName = "'resources/renders/assistant default.png' ">> <</switch>> <<if $args[1] == 3>> <<print "<img src=" + _fileName + "style='float:right; border:3px hidden'/>">> <<else>> <<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">> <</if>> <</if>> /* CLOSES IMAGE CHOICE */ <</widget>> /% Call as <<SlaveArt>> Displays slave images. Currently passage-based. $args[0]: Slave. $args[1]: Image size/center. 3: Large, right. Example: long slave description. 2: Medium, right. Example: random events. 1: Small, left. Example: lists. 0: Tiny, left. Example: facilities $args[2]: icon UI Display for vector art, 1 for on. %/ <<widget "SlaveArt">> <<if ndef $args[0].customImage>><<set $args[0].customImage = 0>><</if>> <<if $args[0].customImage != 0>> <<set _fileFormat = ($args[0].customImageFormat || "png"), _fileName = "'resources/" + $args[0].customImage + "." + _fileFormat + "' ", _fileTypeStart = (_fileFormat === "webm" ? "video loop autoplay" : "img"), _fileTypeEnd = (_fileFormat === "webm" ? "</video>" : "")>> <<if $args[1] == 3>> <<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:right; border:3px hidden'>" + _fileTypeEnd>> <<elseif $args[1] == 2>> <<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'>" + _fileTypeEnd>> <<elseif $args[1] == 1>> <<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'>" + _fileTypeEnd>> <<else>> <<print "<" + _fileTypeStart + " src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'>" + _fileTypeEnd>> <</if>> <<elseif $imageChoice == 1>> /* VECTOR ART BY NOX*/ <<if ndef $seeVectorArtHighlights>> <<set $seeVectorArtHighlights = 1>> <</if>> <<set _artSlave to $args[0] >> <<silently>> /* prepare HTML colour codes for slave display */ /* note: latex clothing is mostly emulated by rubber colour for skin (and shoes) */ /* TODO: consistently use american "color" instead of "colour" for all identifiers */ <<include Art_Vector_Set_Colour_Outfit_>> <<include Art_Vector_Set_Colour_Skin_>> <<include Art_Vector_Set_Colour_Hair_>> <<include Art_Vector_Set_Colour_Shoe_>> <</silently>> <<include Art_Vector_Generate_Stylesheet_>> /* each passage adds one layer of vector art vector art added later is drawn over previously added art (what is listed on the bottom in the code appears on the top of the image) */ <<include Art_Vector_Arm_>> <<include Art_Vector_Hair_Back_>> <<include Art_Vector_Butt_>> <<include Art_Vector_Leg_>> <<include Art_Vector_Feet_>> /* includes shoes */ <<include Art_Vector_Torso_>> <<include Art_Vector_Pussy_>> <<include Art_Vector_Pubic_Hair_>> <<include Art_Vector_Pussy_Piercings_>> <<include Art_Vector_Chastity_Belt_>> <<include Art_Vector_Torso_Outfit_>> /* note: clothing covers chastity belts */ <<include Art_Vector_Belly_>> /* includes navel piercing and belly-related clothing options */ <<include Art_Vector_Balls_>> <<include Art_Vector_Penis_>> /* for dicks behind boobs */ <<include Art_Vector_Boob_>> /* includes areolae and piercings */ <<include Art_Vector_Penis_>> /* for dicks in front of boobs */ <<include Art_Vector_Boob_Addons_>> /* piercings always appear in front of boobs AND dick */ <<include Art_Vector_Clavicle>> <<include Art_Vector_Collar_>> <<include Art_Vector_Head_>> /* includes glasses */ <<include Art_Vector_Hair_Fore_>> <<elseif $imageChoice == 2>> /* VECTOR ART BY NOX - Pregmod Legacy Version */ <<SVGFilters>> /* 000-250-006 */ /* <div class="imageRef"> */ /* 000-250-006 */ <<set _folderLoc = "'resources/vector">> <<if $args[2] == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/test ui.svg'" + "/>">> <</if>> /% Set skin colour %/ <<set _skinFilter = "filter: url(#skin-" + _.kebabCase($args[0].skin) + ");">> /% Set hair colour %/ <<set _hairFilter = "filter: url(#hair-" + _.kebabCase($args[0].hColor) + ");">> <<set _underArmFilter = "filter: url(#hair-" + _.kebabCase($args[0].underArmHColor) + ");">> <<set _pubesFilter = "filter: url(#hair-" + _.kebabCase($args[0].pubicHColor) + ");">> <<set _axillaryFilter = "filter: url(#hair-" + _.kebabCase($args[0].underArmHColor) + ");">> <<if $args[0].customHairVector>> <<set _hairStyle = $args[0].customHairVector>> <<else>> <<set _hairStyle = ["neat", "up", "ponytail", "tails", "bun", "luxurious", "messy", "eary", "dreadlocks", "braided", "afro", "strip", "trimmed", "buzzcut"].includes($args[0].hStyle) ? $args[0].hStyle : "neat">> <</if>> <<set _underArmHStyle = $args[0].underArmHStyle>> <<set _imgSkinLoc = _folderLoc + "/body/white">> /% Shoulder width and arm or no arm %/ <<if $args[0].amp != 1>> <<if $args[0].devotion > 50>> <<set _leftArmType = "high">> <<set _rightArmType = "high">> <<elseif $args[0].trust >= -20>> <<if $args[0].devotion < -20>> <<set _leftArmType = "rebel">> <<set _rightArmType = "low">> <<elseif $args[0].devotion <= 20>> <<set _leftArmType = "low">> <<set _rightArmType = "low">> <<else>> <<set _leftArmType = "mid">> <<set _rightArmType = "high">> <</if>> <<else>> <<set _leftArmType = "mid">> <<set _rightArmType = "mid">> <</if>> <<if $args[0].fuckdoll == 0 && $args[0].clothes != "restrictive latex" && $args[0].clothes != "a latex catsuit">> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/arm right " + _rightArmType + ".svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].underArmHStyle == "bushy">> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/underArm " + _underArmHStyle + " right.svg'" + " style='" + _underArmFilter + "'/>">> <</if>> <<else>> <<if $args[0].fuckdoll != 0>> <<set _rightArmType = "mid">> <</if>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/arm right " + _rightArmType + " latex.svg'" + "/>">> <</if>> <<else>> <<if $args[0].fuckdoll == 0 && $args[0].clothes != "restrictive latex" && $args[0].clothes != "a latex catsuit" && $args[0].underArmHStyle == "bushy">> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/underArm " + _underArmHStyle + " right.svg'" + " style='" + _underArmFilter + "'/>">> <</if>> <</if>> /% Hair Aft %/ <<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0>> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/" + _hairStyle + " back.svg'" + " style='" + _hairFilter + "'/>">> <</if>> /% Tailed Plug %/ <<if $args[0].buttplugAttachment == "tail">> <<= "<img class='paperdoll' src=" + _folderLoc + "/outfit/tail plug.svg'" + " style='" + _hairFilter + "'/>">> <</if>> /% Butt %/ <<if $args[0].amp != 1>> <<if $args[0].butt > 6>> <<set _buttSize = 3>> <<elseif $args[0].butt > 4>> <<set _buttSize = 2>> <<elseif $args[0].butt > 2>> <<set _buttSize = 1>> <<else>> <<set _buttSize = 0>> <</if>> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _buttSize = _buttSize + " latex">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/butt " + _buttSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/butt " + _buttSize + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> <</if>> /% Leg + 1 size up when chubby or fat%/ <<if $args[0].hips < 0>> <<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%/ <<set _legSize = "wide">> <<else>> <<set _legSize = "normal">> <</if>> <<elseif $args[0].hips > 0>> <<set _legSize = "wide">> <</if>> <<if $args[0].amp == 1>> <<set _legSize = "stump " + _legSize>> <</if>> <<if ($args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit") && $args[0].amp != 1>> <<set _legSize = _legSize + " latex">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/leg " + _legSize + ".svg'" + "/>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/leg " + _legSize + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> /% Feet %/ <<if $args[0].amp != 1>> <<if $args[0].shoes == "heels">> <<set _shoesType = "heel">> <<elseif $args[0].shoes == "extreme heels">> <<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%/ <<set _shoesType = "boot wide">> <<else>> <<set _shoesType = "boot">> <</if>> <<elseif $args[0].shoes == "flats">> <<set _shoesType = "flat">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/feet.svg'" + " style='"+ _skinFilter + "'>">> <</if>> <<if $args[0].shoes == "extreme heels" or $args[0].shoes == "boots">> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _shoesType = _shoesType + " latex">> <</if>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">> <</if>> <<if $args[0].shoes == "heels" or $args[0].shoes == "flats">> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _shoesType = _shoesType + " latex">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + _shoesType + ".svg'" + "/>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/" + _shoesType + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> <</if>> <</if>> /% Torso %/ <<if $args[0].waist < -40>>/*Unnatural*/ <<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%/ <<set _torsoSize = "normal">> <<else>> <<set _torsoSize = "hourglass">> <</if>> <<else>>/*Normal*/ <<set _torsoSize = "normal">> <</if>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/torso " + _torsoSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<set _torsoOutfit = false>> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<set _torsoOutfit = " latex">> <<elseif $args[0].clothes == "uncomfortable straps">> <<set _torsoOutfit = " straps">> <</if>> <<if _torsoOutfit>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/torso " + _torsoSize + _torsoOutfit + ".svg'" + "/>">> <</if>> <<if $args[0].amp != 1>> <<if $args[0].fuckdoll == 0 && $args[0].clothes != "restrictive latex" && $args[0].clothes != "a latex catsuit">> <<if _leftArmType == "high">> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/arm left " + _leftArmType + ".svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].underArmHStyle == "bushy">> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/underArm " + _underArmHStyle + " left.svg'" + " style='" + _underArmFilter + "'/>">> <</if>> <<else>> <<if $args[0].underArmHStyle == "bushy">> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/underArm " + _underArmHStyle + " left.svg'" + " style='" + _underArmFilter + "'/>">> <</if>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/arm left " + _leftArmType + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/arm left " + _leftArmType + ".svg'" + " style='"+ _skinFilter + "'>">> <<else>> <<if $args[0].fuckdoll != 0>> <<set _leftArmType = "mid">> <</if>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/arm left " + _leftArmType + " latex.svg'" + "/>">> <</if>> <<else>> <<if $args[0].fuckdoll == 0 && $args[0].clothes != "restrictive latex" && $args[0].clothes != "a latex catsuit" && $args[0].underArmHStyle == "bushy">> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/underArm " + _underArmHStyle + " left.svg'" + " style='" + _underArmFilter + "'/>">> <</if>> <</if>> /% Vagina %/ <<if $args[0].vagina >= 0>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/vagina.svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].clitPiercing == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing.svg'" + "/>">> <<elseif $args[0].clitPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing heavy.svg'" + "/>">> <<elseif $args[0].clitPiercing == 3>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clit piercing smart.svg'" + "/>">> <</if>> <<if $args[0].vaginaPiercing == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/pussy piercing.svg'" + "/>">> <<elseif $args[0].vaginaPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/pussy piercing heavy.svg'" + "/>">> <</if>> <</if>> /% Collar %/ <<switch $args[0].collar>> <<case "bowtie">> <<case "ancient Egyptian">> <<case "nice retirement counter" "cruel retirement counter" "leather with cowbell" "pretty jewelry" "heavy gold" "satin choker" "stylish leather" "neck corset" "shock punishment" "tight steel" "uncomfortable leather" "dildo gag">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/" + $args[0].collar + ".svg'" + "/>">> <</switch>> /% Head base image %/ <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/head latex.svg'" + "/>">> <<else>> <<print "<img class='paperdoll' src=" +_imgSkinLoc + "/head.svg'" + " style='"+ _skinFilter + "'>">> <</if>> /% Glasses %/ <<if $args[0].eyewear == "corrective glasses" or $args[0].eyewear == "glasses" or $args[0].eyewear == "blurring glasses">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/glasses.svg'" + "/>">> <</if>> /% Chastity belt or Pubic hair %/ <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "anal chastity" || $args[0].dickAccessory == "combined chastity" || $args[0].vaginalAccessory == "chastity belt" || $args[0].vaginalAccessory == "anal chastity" || $args[0].vaginalAccessory == "combined chastity">> <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male aft.svg'" + "/>">> <</if>> <<if $args[0].vaginalAccessory == "chastity belt" || $args[0].vaginalAccessory == "combined chastity">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity female.svg'" + "/>">> <</if>> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity base.svg'" + "/>">> <<else>> <<if $args[0].pubicHStyle != "waxed">> <<set _pubicHStyle = ($args[0].pubicHStyle == "in a strip" ? "strip" : $args[0].pubicHStyle)>> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/pubes " + _pubicHStyle + ".svg' style='" + _pubesFilter + "'/>">> <</if>> <</if>> /%if pregnant or has a belly%/ <<if $args[0].belly >= 5000>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/preg belly 5000.svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].navelPiercing >= 1>>/*Navel Piercing*/ <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing.svg'" + "/>">> <</if>> <<if $args[0].navelPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing heavy.svg'" + "/>">> <</if>> <<elseif $args[0].belly <= -100>> /* condition is currently reversed until the vector can be fixed */ <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/preg belly 100.svg'" + " style='"+ _skinFilter + "'>">> /* <<if $args[0].navelPiercing >= 1>>/Navel Piercing/ <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing.svg'" + "/>">> <</if>> <<if $args[0].navelPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/preg navel piercing heavy.svg'" + "/>">> <</if>> */ <<else>> /*Navel Piercing*/ <<if $args[0].navelPiercing >= 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/navel piercing.svg'" + "/>">> <</if>> <<if $args[0].navelPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/navel piercing heavy.svg'" + "/>">> <</if>> <</if>> /% Boob %/ <<if $args[0].boobs < 300>> <<set _boobSize = 0>> <<elseif $args[0].boobs < 500>> <<set _boobSize = 1>> <<elseif $args[0].boobs < 800>> <<set _boobSize = 2>> <<elseif $args[0].boobs < 1600>> <<set _boobSize = 3>> <<elseif $args[0].boobs < 3200>> <<set _boobSize = 4>> <<elseif $args[0].boobs < 6400>> <<set _boobSize = 5>> <<elseif $args[0].boobs < 12000>> <<set _boobSize = 6>> <<else>> <<set _boobSize = 7>> <</if>> /% Scrotum %/ <<if $args[0].scrotum > 0>> <<if $args[0].scrotum >= 6>> <<set _ballSize = 4>> <<elseif $args[0].scrotum >= 4>> <<set _ballSize = 3>> <<elseif $args[0].scrotum >= 3>> <<set _ballSize = 2>> <<elseif $args[0].scrotum >= 2>> <<set _ballSize = 1>> <<else>> <<set _ballSize = 0>> <</if>> <</if>> /% Penis %/ <<if $args[0].dick > 0>> <<if $args[0].dick >= 8>> <<set _penisSize = 6>> <<elseif $args[0].dick >= 7>> <<set _penisSize = 5>> <<elseif $args[0].dick >= 6>> <<set _penisSize = 4>> <<elseif $args[0].dick >= 5>> <<set _penisSize = 3>> <<elseif $args[0].dick >= 4>> <<set _penisSize = 2>> <<elseif $args[0].dick >= 2>> <<set _penisSize = 1>> <<else>> <<set _penisSize = 0>> <</if>> <</if>> /% Boob %/ <<set _needBoobs = 1>> <<if $args[0].dick > 0>> <<if canAchieveErection($args[0])>> <<if _boobSize < 6>> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> /* normal case: outfit hides boobs */ <<set _boobOutfit = " latex" >> <</if>> <<if _boobOutfit >> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">> <<if $args[0].lactation > 0>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">> <</if>> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + " style='"+ _skinFilter + "'>">> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">> <</if>> /* special case: straps are actually dawn over the boobs */ <<if $args[0].clothes == "uncomfortable straps">> <<set _boobOutfit = " straps" >> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">> <</if>> <<set _needBoobs = 0>> <</if>> <</if>> <</if>> <<if $args[0].vagina > 0>> <<if $args[0].dick > 0>> <div class="highPenis"> <<if $args[0].scrotum > 0>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/ball " + _ballSize + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> <<if canAchieveErection($args[0])>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/penis " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/flaccid " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male fore " + _penisSize + ".svg'" + "/>">> <</if>> <</if>> </div> <</if>> <<else>> <<if $args[0].dick > 0>> <div class="lowPenis"> <<if $args[0].scrotum > 0>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/ball " + _ballSize + ".svg'" + " style='"+ _skinFilter + "'>">> <</if>> <<if canAchieveErection($args[0])>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/penis " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/flaccid " + _penisSize + ".svg'" + " style='"+ _skinFilter + "'>">> <<if $args[0].dickAccessory == "chastity" || $args[0].dickAccessory == "combined chastity">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/chastity male fore " + _penisSize + ".svg'" + "/>">> <</if>> <</if>> </div> <</if>> <</if>> <<if _needBoobs>> <<if $args[0].fuckdoll != 0 || $args[0].clothes == "restrictive latex" || $args[0].clothes == "a latex catsuit">> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize +" latex.svg'" + "/>">> <<if $args[0].lactation > 0>><<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">><</if>> <<else>> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + " style='"+ _skinFilter + "'>">> <<print "<img class='paperdoll' src=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + " style='"+ _skinFilter + "'>">> <</if>> /* special case: straps are actually dawn over the boobs */ <<if $args[0].clothes == "uncomfortable straps">> <<set _boobOutfit = " straps" >> <<print "<img class='paperdoll' src=" + _folderLoc + "/outfit/boob " +_boobSize + _boobOutfit + ".svg'" + "/>">> <</if>> <</if>> /% piercings %/ <<if $args[0].nipplesPiercing == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing.svg'" + "/>">> <<elseif $args[0].nipplesPiercing == 2>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing heavy.svg'" + "/>">> <</if>> <<if $args[0].areolaePiercing == 1>> <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/boob " +_boobSize +" areola piercing.svg'" + "/>">> <</if>> /% clavicle %/ <<print "<img class='paperdoll' src=" + _folderLoc + "/body/addon/clavicle.svg'" + "/>">> /% Hair Foreground %/ <<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0>> <<= "<img class='paperdoll' src=" + _folderLoc + "/hair/" + _hairStyle + " front.svg'" + " style='" + _hairFilter + "'/>">> <</if>> <<elseif $imageChoice == 3>> /* VECTOR ART REVAMP*/ <<include Art_Vector_Revamped_Control_>> <<else>> /* RENDERED IMAGES BY SHOKUSHU */ <<if $args[0].vagina > -1>> <<if $args[0].dick > 0>> <<if $args[0].balls > 0>> <<set _fileName = "futanari">> <<else>> <<set _fileName = "herm">> <</if>> <<else>> <<set _fileName = "female">> <</if>> <<else>> <<if $args[0].balls > 0>> <<set _fileName = "shemale">> <<else>> <<set _fileName = "gelding">> <</if>> <</if>> <<if $args[0].belly > 1500>> <<set _fileName = "preg " + _fileName>> <</if>> <<if $args[0].boobs < 400>> <<set _fileName = _fileName + " small">> <<elseif $args[0].boobs < 800>> <<set _fileName = _fileName + " big">> <<elseif $args[0].boobs < 6000>> <<set _fileName = _fileName + " huge">> <<else>> <<set _fileName = _fileName + " hyper">> <</if>> <<if $args[0].muscles > 30>> <<set _fileName = _fileName + " muscle">> <<else>> <<set _fileName = _fileName + " soft">> <</if>> <<if $args[0].fuckdoll > 0>> <<set _fileName = _fileName + " rebellious">> <<elseif $args[0].devotion <= 20>> <<if $args[0].trust < -20>> <<set _fileName = _fileName + " reluctant">> <<else>> <<set _fileName = _fileName + " rebellious">> <</if>> <<elseif $args[0].fetish == "mindbroken">> <<set _fileName = _fileName + " reluctant">> <<elseif $args[0].devotion <= 50 || $args[0].fetishKnown != 1 || ($seeMainFetishes == 0 && $args[1] < 2)>> <<set _fileName = _fileName + " obedient">> <<else>> <<if $args[0].fetish == "none">> <<set _fileName = _fileName + " obedient">> <<else>> <<set _fileName = _fileName + " " + $args[0].fetish>> <</if>> <</if>> <<set _fileName = "'resources/renders/" + _fileName + ".png' ">> <<if $args[1] == 3>> <<print "<img src=" + _fileName + "style='float:right; border:3px hidden'/>">> <<elseif $args[1] == 2>> <<print "<img src=" + _fileName + "style='float:right; border:3px hidden' width='300' height='300'/>">> <<elseif $args[1] == 1>> <<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='150' height='150'/>">> <<else>> <<print "<img src=" + _fileName + "style='float:left; border:3px hidden' width='120' height='120'/>">> <</if>> <</if>> /* CLOSES IMAGE CHOICE */ <</widget>>
AshVaris/fc
src/art/artWidgets.tw
tw
mit
25,299
:: Art_Vector_Arm_ [nobr] /* Arms position switch courtesy of Nov-X */ <<if $args[0].amp != 1>> <<if $args[0].devotion > 50>> <<set _leftArmType = "High">> <<set _rightArmType = "High">> <<elseif $args[0].trust >= -20>> <<if $args[0].devotion < -20>> <<set _leftArmType = "Rebel">> <<set _rightArmType = "Low">> <<elseif $args[0].devotion <= 20>> <<set _leftArmType = "Low">> <<set _rightArmType = "Low">> <<else>> <<set _leftArmType = "Mid">> <<set _rightArmType = "High">> <</if>> <<else>> <<set _leftArmType = "Mid">> <<set _rightArmType = "Mid">> <</if>> <<set _art = "Art_Vector_Arm_Right_"+_rightArmType >> <<include _art>> <<set _art = "Art_Vector_Arm_Left_"+_leftArmType >> <<include _art>> /* shiny clothings */ <<if $seeVectorArtHighlights == 1>> <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> /* only some arm positions have art (feel free to add more) */ <<switch _leftArmType>> <<case "High">> <<include Art_Vector_Arm_Outfit_Shine_Left_High>> <<case "Mid">> <<include Art_Vector_Arm_Outfit_Shine_Left_Mid>> <<case "Low">> <<include Art_Vector_Arm_Outfit_Shine_Left_Low>> <<default>> /* no art for this arm position */ <</switch>> <</if>> <</if>> <</if>>
AshVaris/fc
src/art/vector/Arm.tw
tw
mit
1,329
:: Art_Vector_Balls_ [nobr] <<if _artSlave.scrotum > 0 && _artSlave.balls > 0 >> <<if _artSlave.scrotum >= 6>> <<set _ballSize = 4>> <<elseif _artSlave.scrotum >= 4>> <<set _ballSize = 3>> <<elseif _artSlave.scrotum >= 3>> <<set _ballSize = 2>> <<elseif _artSlave.scrotum >= 2>> <<set _ballSize = 1>> <<else>> <<set _ballSize = 0>> <</if>> <<set _art = "Art_Vector_Balls_"+_ballSize>> <<include _art>> <</if>>
AshVaris/fc
src/art/vector/Balls.tw
tw
mit
431
:: Art_Vector_Belly_ [nobr] <<set _showNavelPiercings = $showBodyMods == 1 && _artSlave.clothes != "restrictive latex" && _artSlave.clothes != "a latex catsuit">> <<if _artSlave.belly >= 5000>> <<include Art_Vector_Belly>> /* shiny clothings */ <<if $seeVectorArtHighlights == 1>> <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> <<include Art_Vector_Belly_Outfit_Shine>> <</if>> <</if>> /* belly piercings */ <<if _showNavelPiercings >> <<if _artSlave.navelPiercing >= 1>> <<include Art_Vector_Belly_Piercing>> <</if>> <<if _artSlave.navelPiercing == 2>> <<include Art_Vector_Belly_Piercing_Heavy>> <</if>> <</if>> <<else>> /* flat midriff piercings */ <<if _showNavelPiercings >> <<if _artSlave.navelPiercing >= 1>> <<include Art_Vector_Navel_Piercing>> <</if>> <<if _artSlave.navelPiercing == 2>> <<include Art_Vector_Navel_Piercing_Heavy>> <</if>> <</if>> <</if>>
AshVaris/fc
src/art/vector/Belly.tw
tw
mit
988
:: Art_Vector_Body_Clothing_Control_ [nobr] <<set _eyeBallColor = "#ffffff">> <<if _artSlave.eyeColor neq "">> <<if _artSlave.eyeColor.split(" ").length > 1>> <<set _eyeLens = _artSlave.eyeColor.split(" ")[0]>> <<if _eyeLens == "demonic">> <<set _eyeBallColor = _eyeColor>> <<elseif _eyeLens == "devilish">> <<set _eyeBallColor = "#000000">> <</if>> <</if>> <</if>> <<set _muscles_value = _artSlave.muscles + 101>> <<set _art_muscle_visibility = 0.910239*Math.log(0.02*_muscles_value) >> <<set _showEyes = 1>> <<set _showLips = 1>> <<set _showMouth = 1>> <<set _showPubic = 1>> <<set _showPussy = _artSlave.vagina >= 0>> <<set _showArmHair = 1>> <<set _showHair = _artSlave.hStyle != "shaved">> <<set _showBoobs = 1>> <<set _showNipples = 1>> <<set _showArmHighlight = 0>> <<set _showTorsoHighlight = 0>> <<set _showLegHighlight = 0>> <<set _showBoobsHighlight = 0>> <<set _showEyesHighlight = 1>> <<set _showHeadHighlight = 1>> <<set _showBellyPiercings = 1>> <<set _showNipplePiercings = 1>> <<set _chastityAnal = _artSlave.dickAccessory == "anal chastity" || _artSlave.dickAccessory == "combined chastity" || _artSlave.vaginalAccessory == "anal chastity" || _artSlave.vaginalAccessory == "combined chastity" >> <<set _chastityVaginal = _artSlave.vaginalAccessory == "chastity belt" || _artSlave.vaginalAccessory == "combined chastity">> <<if _artSlave.fuckdoll > 0>> <<set _showEyes = 0>> <<set _showPubic = 0>> <<set _showArmHair = 0>> <<set _showHair = 0>> <<set _showArmHighlight = 1>> <<set _showTorsoHighlight = 1>> <<set _showBoobsHighlight = 1>> <<set _showLegHighlight = 1>> <<set _showHeadHighlight = 1>> <</if>> <<if _artSlave.clothes == "a nice maid outfit">> <<set _showPubic = 0>> <<set _showBoobs = 0>> <<set _showBellyPiercings = 0>> <<set _showNipplePiercings = 0>> <<set _showNipples = 0>> <</if>> <<if _artSlave.clothes == "a slutty maid outfit">> <<set _showBellyPiercings = 0>> <</if>> <<if _artSlave.clothes == "restrictive latex">> <<set _showEyes = 0>> <<set _showPubic = 0>> <<set _showArmHair = 0>> <<set _showHair = 0>> <<set _showArmHighlight = 1>> <<set _showTorsoHighlight = 1>> <<set _showLegHighlight = 1>> <<set _showHeadHighlight = 1>> <<set _showBellyPiercings = 0>> <</if>> <<if _artSlave.clothes == "a latex catsuit">> <<set _showPubic = 0>> <<set _showArmHair = 0>> <<set _showArmHighlight = 1>> <<set _showTorsoHighlight = 1>> <<set _showLegHighlight = 1>> <<set _showBoobsHighlight = 1>> <<set _showHeadHighlight = 1>> <<set _showBellyPiercings = 0>> <<set _showNipplePiercings = 0>> <<set _chastityAnal = 0>> <<set _chastityVaginal = 0>> <</if>> <<if $showBodyMods == 0>> <<set _showNipplePiercings = 0>> <</if>> <<if $seeVectorArtHighlights == 1>> <<set _showArmHighlight = 0>> <<set _showTorsoHighlight = 0>> <<set _showLegHighlight = 0>> <<set _showBoobsHighlight = 0>> <</if>>
AshVaris/fc
src/art/vector/Body_Clothing_Control.tw
tw
mit
2,895
:: Art_Vector_Boob_ [nobr] /* BEWARE: _art_have_boobs and _art_scale_factor interfere with Art_Vector_Penis_ */ <<set _art_have_boobs to true>> /* BEWARE: _art_boob_transform is also read by Art_Vector_Boob_Addons_ */ /* Prepare SVG transform matrix for continuous boob scaling. This transform affects boobs, areolae and piercings. The parameters were fit by points (300,1.0) and (15000,2.5). See https://www.wolframalpha.com/input/?i=log+fit+%7B%7B300,1%7D,%7B15000,2.5%7D%7D . Boobs start at 300cc as of "flesh description widgets". Upper value was discussed at https://github.com/Free-Cities/Free-Cities/issues/950#issuecomment-321359466 . */ <<set _art_scale_factor = 0.383433*Math.log(0.0452403*_artSlave.boobs) >> <<set _art_translation_x = -292.841*_art_scale_factor+292.349 >> <<set _art_translation_y = -216.438*_art_scale_factor+216.274 >> <<set _art_boob_transform = "matrix(" + _art_scale_factor +",0,0," + _art_scale_factor + "," + _art_translation_x + "," + _art_translation_y + ")">> /* _art_boob_transform is for internal program usage. _art_transform will affect the display. */ <<set _art_transform = _art_boob_transform>> <<if _artSlave.boobs < 300 >> /* BEWARE: this threshold may be used in other art-related code, too */ /* boobs too small - draw areolae directly onto torso */ <<set _art_scale_factor = 1 >> <<set _art_translation_x = 16 >> /* a little shift to the right is needed due to perspective */ <<set _art_translation_y = 0 >> <<set _art_boob_transform = "matrix(" + _art_scale_factor +",0,0," + _art_scale_factor + "," + _art_translation_x + "," + _art_translation_y + ")">> <<set _art_transform = _art_boob_transform>> <<else>> <<include Art_Vector_Boob>> /* shiny clothings */ <<if $seeVectorArtHighlights == 1>> <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "a latex catsuit">> <<include Art_Vector_Boob_Outfit_Shine>> <</if>> <</if>> <</if>> <<include Art_Vector_Boob_Areola>> /* set _art_transform to empty string so stray SVG groups in other passages are not affected */ <<set _art_transform = "">>
AshVaris/fc
src/art/vector/Boob.tw
tw
mit
2,088
:: Art_Vector_Boob_Addons_ [nobr] /* BEWARE: _art_boob_transform is set by Art_Vector_Boob_ */ /* load _art_transform from _art_boob_transform */ <<set _art_transform = _art_boob_transform>> /* this outfit is worn under the piercings */ <<if _artSlave.clothes == "uncomfortable straps">> <<if _artSlave.boobs < 300 >> /* BEWARE: this threshold should be kept in sync with the one in Art_Vector_Boob_ */ /* boobs too small - have straps on torso only */ <<else>> <<include Art_Vector_Boob_Outfit_Straps>> <</if>> <</if>> <<set _showNipplePiercings = $showBodyMods == 1 && _artSlave.clothes != "restrictive latex" && _artSlave.clothes != "a latex catsuit" >> <<if _showNipplePiercings>> <<if _artSlave.nipplesPiercing == 1>> <<include Art_Vector_Boob_Piercing>> <<elseif _artSlave.nipplesPiercing == 2>> <<include Art_Vector_Boob_Piercing_Heavy>> <</if>> <<if _artSlave.areolaePiercing == 1>> <<include Art_Vector_Boob_Areola_Piercing>> <</if>> <</if>> /* set _art_transform to empty string so stray SVG groups in other passages are not affected */ <<set _art_transform = "">>
AshVaris/fc
src/art/vector/Boob_Addons.tw
tw
mit
1,121
:: Art_Vector_Butt_ [nobr] /* BEWARE: _buttSize is also used in Art_Vector_Leg_ */ <<if _artSlave.amp != 1>> <<if _artSlave.butt > 6>> <<set _buttSize = 3>> <<elseif _artSlave.butt > 4>> <<set _buttSize = 2>> <<elseif _artSlave.butt > 2>> <<set _buttSize = 1>> <<else>> <<set _buttSize = 0>> <</if>> <<set _art = "Art_Vector_Butt_"+_buttSize >> <<include _art >> <</if>>
AshVaris/fc
src/art/vector/Butt.tw
tw
mit
403
:: Art_Vector_Chastity_Belt_ [nobr] /* note: penile chastity is handled by penis display */ <<set _chastityAnal = _artSlave.dickAccessory == "anal chastity" || _artSlave.dickAccessory == "combined chastity" || _artSlave.vaginalAccessory == "anal chastity" || _artSlave.vaginalAccessory == "combined chastity" >> <<set _chastityVaginal = _artSlave.vaginalAccessory == "chastity belt" || _artSlave.vaginalAccessory == "combined chastity">> <<if _artSlave.clothes != "a latex catsuit" >> <<if _chastityAnal>> <<include Art_Vector_Chastity_Anus>> <</if>> <<if _chastityVaginal>> <<include Art_Vector_Chastity_Vagina>> <</if>> <<if _chastityAnal || _chastityVaginal >> <<include Art_Vector_Chastity_Base>> <</if>> <</if>>
AshVaris/fc
src/art/vector/Chastity_Belt.tw
tw
mit
749
:: Art_Vector_Collar_ [nobr] /* TODO: find out where "uncomfortable leather" collar art went */ <<switch _artSlave.collar>> <<case "leather with cowbell">> <<include Art_Vector_Collar_Cowbell >> <<case "heavy gold">> <<include Art_Vector_Collar_Gold_Heavy >> <<case "neck corset">> <<include Art_Vector_Collar_Neck_Corset >> <<case "pretty jewelry">> <<include Art_Vector_Collar_Pretty_Jewelry >> <<case "cruel retirement counter">> <<include Art_Vector_Collar_Retirement_Cruel >> <<case "nice retirement counter">> <<include Art_Vector_Collar_Retirement_Nice >> <<case "satin choker">> <<include Art_Vector_Collar_Satin_Choker >> <<case "shock punishment">> <<include Art_Vector_Collar_Shock_Punishment >> <<case "stylish leather">> <<include Art_Vector_Collar_Stylish_Leather >> <<case "tight steel">> <<include Art_Vector_Collar_Tight_Steel >> <<default>> /* collar not supported - don't display anything */ <</switch>>
AshVaris/fc
src/art/vector/Collar.tw
tw
mit
925
:: Art_Vector_Feet_ [nobr] /* BEWARE: Uses _legSize set by Art_Vector_Leg_ */ <<if _artSlave.amp != 1>> <<switch _artSlave.shoes>> <<case "heels">> <<include Art_Vector_Shoes_Heel>> <<case "extreme heels">> <<include Art_Vector_Shoes_Exterme_Heel>> <<if _legSize == "Wide">> <<include Art_Vector_Shoes_Exterme_Heel_Wide>> <</if>> <<case "boots">> <<include Art_Vector_Shoes_Boot>> <<if _legSize == "Wide">> <<include Art_Vector_Shoes_Boot_Wide>> <</if>> <<case "flats">> <<include Art_Vector_Shoes_Flat>> <<case "pumps">> <<include Art_Vector_Shoes_Pump>> <<default>> <<include Art_Vector_Feet>> <</switch>> <</if>> /* shiny clothings */ <<if $seeVectorArtHighlights == 1>> /* this one is leg and partly butt-related, but needs to be here as shoes are drawn over legs and butt */ <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> <<if _artSlave.amp != 1>> <<set _art = "Art_Vector_Butt_Outfit_Shine_"+_buttSize >> <<include _art >> <<set _art = "Art_Vector_Leg_Outfit_Shine_"+_legSize >> <<else>> <<set _art = "Art_Vector_Leg_Outfit_Shine_Stump" >> <</if>> <<include _art >> <</if>> <</if>>
AshVaris/fc
src/art/vector/Feet.tw
tw
mit
1,311
:: Art_Vector_Generate_Stylesheet_ [nobr] /* _art_display_class is the style class for this display */ <<if _art_display_id > 0 >> <<set _art_display_id += 1>> <<else>> <<set _art_display_id = 1>> <</if>> <<set _art_display_class = "ad"+_art_display_id >> <<print "<style>."+_art_display_class+" { position: absolute; height: 100%; margin-left: auto; margin-right: auto; left: 0; right: 0; } ."+_art_display_class+" .white { fill:#FFFFFF; } ."+_art_display_class+" .skin { fill:"+_skinColour+"; } ."+_art_display_class+" .head { "+_headSkinStyle+"; } ."+_art_display_class+" .torso { "+_torsoSkinStyle+"; } ."+_art_display_class+" .boob { "+_boobSkinStyle+"; } ."+_art_display_class+" .penis { "+_penisSkinStyle+"; } ."+_art_display_class+" .scrotum { "+_scrotumSkinStyle+"; } ."+_art_display_class+" .areola { "+_areolaStyle+"; } ."+_art_display_class+" .labia { "+_labiaStyle+"; } ."+_art_display_class+" .hair { fill:"+_hairColour+"; } ."+_art_display_class+" .shoe { fill:"+_shoeColour+"; } ."+_art_display_class+" .shoe_shadow { fill:"+_shoeShadowColour+"; } ."+_art_display_class+" .smart_piercing { fill:#4DB748; } ."+_art_display_class+" .steel_piercing { fill:#787878; } ."+_art_display_class+" .steel_chastity { fill:#BABABA; } ."+_art_display_class+" .outfit_base { fill:"+_outfitBaseColour+"; } ."+_art_display_class+" .gag { fill:#BF2126; } ."+_art_display_class+" .shadow { fill:#010101; } ."+_art_display_class+" .glasses { fill:#010101; } </style>" >>
AshVaris/fc
src/art/vector/Generate_Stylesheet.tw
tw
mit
1,529
:: Art_Vector_Hair_Back_ [nobr] /* note: latex clothing actually shows some hair, but there is no appropriate art for it */ <<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0 && _artSlave.clothes != "restrictive latex" >> <<include Art_Vector_Hair_Back>> <</if>>
AshVaris/fc
src/art/vector/Hair_Back.tw
tw
mit
273
:: Art_Vector_Hair_Fore_ [nobr] /* note: latex clothing actually shows some hair, but there is no appropriate art for it */ <<if $args[0].hStyle != "shaved" && $args[0].fuckdoll == 0 && _artSlave.clothes != "restrictive latex" >> <<include Art_Vector_Hair_Fore>> <</if>>
AshVaris/fc
src/art/vector/Hair_Fore.tw
tw
mit
273
:: Art_Vector_Head_ [nobr] <<include Art_Vector_Head>> /* shiny clothings */ <<if $seeVectorArtHighlights == 1>> <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> <<include Art_Vector_Head_Outfit_Shine>> <</if>> <</if>> /* ADDONS */ <<if _artSlave.collar == "dildo gag">> <<include Art_Vector_Gag>> <</if>> <<if _artSlave.eyewear == "corrective glasses" or _artSlave.eyewear == "glasses" or _artSlave.eyewear == "blurring glasses">> <<include Art_Vector_Glasses>> <</if>>
AshVaris/fc
src/art/vector/Head.tw
tw
mit
556
:: Art_Vector_Leg_ [nobr] /* Leg wideness switch courtesy of Nov-X */ /* BEWARE: _legSize is also used in Art_Vector_Feet_ */ /* BEWARE: _buttSize set by Art_Vector_Butt_ */ <<if _artSlave.amp != 1>> <<set _legSize = "Normal">> <<if _artSlave.hips < 0>> <<if _artSlave.weight > 95>> <<set _legSize = "Normal">> <<else>> <<set _legSize = "Narrow">> <</if>> <<elseif _artSlave.hips == 0>> <<if _artSlave.weight > 95>> <<set _legSize = "Wide">> <<else>> <<set _legSize = "Normal">> <</if>> <<elseif _artSlave.hips > 0>> <<set _legSize = "Wide">> <</if>> <<set _art = "Art_Vector_Leg_"+_legSize >> <<else>> <<set _art = "Art_Vector_Stump" >> <</if>> <<include _art >>
AshVaris/fc
src/art/vector/Leg.tw
tw
mit
733
:: Art_Vector_Penis_ [nobr] /* BEWARE: _art_have_boobs and _art_scale_factor interfere with Art_Vector_Boob_ */ <<if _artSlave.dick >= 8>> <<set _penisSize = 6>> <<elseif _artSlave.dick >= 7>> <<set _penisSize = 5>> <<elseif _artSlave.dick >= 6>> <<set _penisSize = 4>> <<elseif _artSlave.dick >= 5>> <<set _penisSize = 3>> <<elseif _artSlave.dick >= 4>> <<set _penisSize = 2>> <<elseif _artSlave.dick >= 2>> <<set _penisSize = 1>> <<elseif _artSlave.dick >= 1>> <<set _penisSize = 0>> <<else>> <<set _penisSize = -1>> <</if>> <<if _penisSize >= 0>> <<if canAchieveErection(_artSlave) && (_artSlave.dickAccessory != "chastity") && (_artSlave.dickAccessory != "combined chastity") >> <<if (def _art_have_boobs) && (_art_scale_factor < 2.6)>> /* only draw erect penis over boobs if boobs do not hide the penis' base */ <<set _art = "Art_Vector_Penis_"+_penisSize>> <<include _art>> <</if>> <<else>> <<if ndef _art_have_boobs >> /* flaccid penises are always drawn behind the boobs */ <<set _art = "Art_Vector_Flaccid_"+_penisSize>> <<include _art>> <<if (_artSlave.dickAccessory == "chastity") || (_artSlave.dickAccessory == "combined chastity") >> /* this draws chastity OVER latex catsuit. prndev finds this alright. */ <<set _art = "Art_Vector_Chastity_Cage_"+_penisSize>> <<include _art>> <</if>> <</if>> <</if>> <</if>> /* unset the variable for the next display */ <<unset _art_have_boobs >>
AshVaris/fc
src/art/vector/Penis.tw
tw
mit
1,511
:: Art_Vector_Pubic_Hair_ [nobr] <<if _artSlave.fuckdoll != 0 || _artSlave.clothes != "a latex catsuit">> <<if $showBodyMods == 1>> <<if _artSlave.vaginaTat == "rude words">> <<if _artSlave.dick != 0>> <<set _art_pussy_tattoo_text to "Useless" >> <<else>> <<set _art_pussy_tattoo_text to "Fucktoy" >> <</if>> <<include Art_Vector_Pussy_Tattoo>> <</if>> <</if>> <<switch _artSlave.pubicHStyle>> <<case "strip" "in a strip">> <<include Art_Vector_Pubic_Hair_Strip >> <<case "bush" "bushy in the front and neat in the rear">> <<include Art_Vector_Pubic_Hair_Bush >> <<case "neat">> <<include Art_Vector_Pubic_Hair_Neat >> <<case "waxed">> /* no hair to display */ <<default>> /* pubic hair style not supported - don't display anything*/ <</switch>> <</if>>
AshVaris/fc
src/art/vector/Pubic_Hair.tw
tw
mit
864
:: Art_Vector_Pussy_ [nobr] <<if _artSlave.vagina >= 0>> <<include Art_Vector_Pussy>> <</if>>
AshVaris/fc
src/art/vector/Pussy.tw
tw
mit
98
:: Art_Vector_Pussy_Piercings_ [nobr] <<if _artSlave.clothes != "a latex catsuit">> /* catsuit covers crotch */ <<if $showBodyMods == 1>> <<if _artSlave.vaginaPiercing == 1>> <<include Art_Vector_Pussy_Piercing>> <<elseif _artSlave.vaginaPiercing == 2>> <<include Art_Vector_Pussy_Piercing_Heavy>> <</if>> <<if _artSlave.clitPiercing == 1>> <<include Art_Vector_Clit_Piercing>> <<elseif _artSlave.clitPiercing == 2>> <<include Art_Vector_Clit_Piercing_Heavy>> <<elseif _artSlave.clitPiercing == 3>> <<include Art_Vector_Clit_Piercing_Smart>> <</if>> <</if>> <</if>>
AshVaris/fc
src/art/vector/Pussy_Piercings.tw
tw
mit
630
:: Art_Vector_Set_Colour_Hair_ [nobr] /* "Free-Cities Dyes (taken from Cosmetic Rules Assistant Settings)"- to-"HTML Color"-Map courtesy of Nov-X */ <<switch _artSlave.hColor>> <<case "auburn">> <<set _hairColour to "#7e543e">> <<case "black">> <<set _hairColour to "#3F4040">> <<case "blonde">> <<set _hairColour to "#F4F1A3">> <<case "blue">> <<set _hairColour to "#4685C5">> <<case "brown">> <<set _hairColour to "#8D4F21">> <<case "burgundy">> <<set _hairColour to "#5f3946">> <<case "chestnut">> <<set _hairColour to "#663622">> <<case "chocolate">> <<set _hairColour to "#6e4937">> <<case "copper">> <<set _hairColour to "#a16145">> <<case "dark brown">> <<set _hairColour to "#463325">> <<case "ginger">> <<set _hairColour to "#da822d">> <<case "golden">> <<set _hairColour to "#ffdf31">> <<case "green">> <<set _hairColour to "#5FBA46">> <<case "grey">> <<set _hairColour to "#9e9fa4">> <<case "hazel">> <<set _hairColour to "#8d6f1f">> <<case "pink">> <<set _hairColour to "#D18CBC">> <<case "platinum blonde">> <<set _hairColour to "#fcf3c1">> <<case "red">> <<set _hairColour to "#BB2027">> <<case "silver">> <<set _hairColour to "#cdc9c6">> <<case "strawberry-blonde">> <<set _hairColour to "#e5a88c">> <<case "blazing red">> <<set _hairColour to "#E00E2B">> <<case "neon green">> <<set _hairColour to "#25d12b">> <<case "neon blue">> <<set _hairColour to "#2284C3">> <<case "neon pink">> <<set _hairColour to "#cc26aa">> <<default>> /* everything else: assume it already is HTML compliant color name or value */ <<set _hairColour to extractHairColor(_artSlave.hColor) >> <</switch>>
AshVaris/fc
src/art/vector/Set_Colour_Hair.tw
tw
mit
1,652
:: Art_Vector_Set_Colour_Outfit_ /* BEWARE: _outfitBaseColour is used by Art_Vector_Set_Colour_Skin_ */ /* BEWARE: _outfitBaseColour is read by Wardrobe Use */ <<unset _outfitBaseColour>> <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> <<set _outfitBaseColour = "#515351" >> /* standard "black rubber" latex colour */ <<if def _artSlave.clothingBaseColor>> <<set _outfitBaseColour = _artSlave.clothingBaseColor >> /* latex colour selected by user */ /* TODO: rewrite all textual descriptions not to explicitly mention the latex being of black colour. */ <</if>> <</if>>
AshVaris/fc
src/art/vector/Set_Colour_Outfit.tw
tw
mit
657
:: Art_Vector_Set_Colour_Shoe_ [nobr] /* courtesy of Nov-X */ /* BEWARE: _shoeColour is read by Wardrobe Use */ /* note: only heels use this shadow */ <<set _shoeShadowColour to "#15406D">> <<switch _artSlave.shoes>> <<case "heels" "extreme heels">> <<set _shoeColour to "#3E65B0">> <<case "boots">> <<set _shoeColour to "#8F8F8E">> <<case "flats">> <<set _shoeColour to "#65AD45">> <<case "pumps">> <<set _shoeColour to "#4F6AB2">> <<default>> /* use colour for "heels" by default */ <<set _shoeColour to "#3E65B0">> <</switch>> <<if def _artSlave.shoeColor>> <<set _shoeColour = _artSlave.shoeColor >> /* shoe colour selected by user */ <<set _shoeShadowColour to _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */ <</if>> /* override colour in case of full body latex outfit */ <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" >> <<set _shoeColour to _skinColour>> <<set _shoeShadowColour to _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */ <</if>>
AshVaris/fc
src/art/vector/Set_Colour_Shoe.tw
tw
mit
1,230
:: Art_Vector_Set_Colour_Skin_ /* BEWARE: _outfitBaseColour is set by Art_Vector_Set_Colour_Outfit_ */ <<set _areolaStyle to "fill:#d76b93;" >> /* this is the default and can be customized later */ <<set _labiaStyle to _areolaStyle >> /* this is the default and can be customized later */ /* todo: introduce one "flesh" CSS class */ <<unset _headSkinStyle>> <<unset _torsoSkinStyle >> <<unset _boobSkinStyle>> <<unset _penisSkinStyle>> <<unset _scrotumSkinStyle>> <<switch _artSlave.skin>> <<case "light" "white" "fair" "lightened" >> <<set _skinColour to "#F6E0E8">> <<case "extremely pale">> <<set _skinColour to "#f4eaf0">> <<case "pale">> <<set _skinColour to "#f9ebf0">> <<case "tanned" "natural">> <<set _skinColour to "#F4C7A5">> <<case "olive">> <<set _skinColour to "#a07c48">> <<case "light brown" "dark">> <<set _skinColour to "#C97631">> /* darker areolae and labia for more contrast to skin */ <<set _areolaStyle to "fill:#ba3549;" >> <<set _labiaStyle to _areolaStyle >> <<case "brown" >> <<set _skinColour to "#763818">> <<case "black">> <<set _skinColour to "#3f3b3a">> <<case "camouflage patterned">> <<set _skinColour to "#78875a">> <<case "red dyed" "dyed red">> <<set _skinColour to "#bc4949">> <<case "green dyed" "dyed green">> <<set _skinColour to "#A6C373">> <<case "blue dyed" "dyed blue">> <<set _skinColour to "#5b8eb7">> <<case "tiger striped">> <<set _skinColour to "#e2d75d">> <<default>> <<set _skinColour to _artSlave.skin>> <</switch>> /* BEGIN SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */ <<if _artSlave.fuckdoll != 0>> /* slave is a fuckdoll - display all skin as if it was black rubber */ <<set _skinColour to _outfitBaseColour>> <<set _areolaStyle to "fill:rgba(0,0,0,0.3);">> <<set _labiaStyle to _areolaStyle >> <</if>> /* slave wears restrictive latex - display most skin as if it was rubber */ <<if _artSlave.clothes == "restrictive latex">> /* nice latex does not cover any privates. */ <<set _torsoSkinStyle to "fill:"+_skinColour+";">> <<set _boobSkinStyle to _torsoSkinStyle>> <<set _penisSkinStyle to _torsoSkinStyle>> <<set _scrotumSkinStyle to _torsoSkinStyle>> /* rest of body is covered in latex */ <<set _skinColour to _outfitBaseColour>> <</if>> <<if _artSlave.clothes == "a latex catsuit">> /* nice latex does not cover head. */ <<set _headSkinStyle to "fill:"+_skinColour+";">> /* rest of body is covered in latex */ <<set _skinColour to _outfitBaseColour>> /* catsuit covers areolae and crotch, too */ <<set _areolaStyle to "fill:rgba(0,0,0,0.3);">> /* areolae are represented by a darker area */ /* todo: gain control over piercings to do the same with them ^^ */ <<set _labiaStyle to _areolaStyle >> <</if>> /* END SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */
AshVaris/fc
src/art/vector/Set_Colour_Skin.tw
tw
mit
2,817
:: Art_Vector_Torso_ [nobr] /* Torso size switch courtesy of Nov-X */ /* BEWARE: _torsoSize might be used in torso outfit */ <<if _artSlave.waist < -40>> <<if _artSlave.weight > 30>> <<set _torsoSize = "Hourglass">> <<else>> <<set _torsoSize = "Unnatural">> <</if>> <<elseif _artSlave.waist <= 10>> <<if _artSlave.weight > 30>> <<set _torsoSize = "Normal">> <<else>> <<set _torsoSize = "Hourglass">> <</if>> <<else>> <<set _torsoSize = "Normal">> <</if>> <<set _art = "Art_Vector_Torso_"+_torsoSize >> <<include _art >>
AshVaris/fc
src/art/vector/Torso.tw
tw
mit
539
:: Art_Vector_Torso_Outfit_ [nobr] /* BEWARE: _torsoSize is set by Art_Vector_Torso_ */ /* TODO: latex catsuit should cover vagina and its piercings, too */ <<set _art = false >> <<switch _artSlave.clothes>> <<case "restrictive latex">> <<set _art = "Art_Vector_Torso_Outfit_Latex_" >> <<case "uncomfortable straps">> <<set _art = "Art_Vector_Torso_Outfit_Straps_" >> <<default>> /* do nothing */ <</switch>> <<if _art >> <<set _art = _art+_torsoSize >> <<include _art >> <</if>> /* shiny clothings */ <<if $seeVectorArtHighlights == 1>> <<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" || _artSlave.clothes == "a latex catsuit">> <<if _artSlave.amp != 0>> /* this shiny shoulder only looks sensible on amputees */ <<include Art_Vector_Torso_Outfit_Shine_Shoulder>> <</if>> <<if _artSlave.preg <= 0>> /* the hip can be hidden by pregnant belly */ <<set _art = "Art_Vector_Torso_Outfit_Shine_"+_torsoSize >> <<include _art >> <</if>> <</if>> <</if>>
AshVaris/fc
src/art/vector/Torso_Outfit.tw
tw
mit
1,015
:: Art_Vector_Arm_Left_High [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 359.7,208 c 33,6 81.8,-36.8 94.5,-39.6 -28.1,-11.8 -37.6,-29.6 -84.3,-61.1 0,0 -42,18 -43.4,2.2 C 323,69.600003 357.6,87.000003 374.9,99.600003 389.7,100.8 486.3,157.4 482.3,170.9 c -6.1,20.6 -84.8,65.8 -114.7,81.4 -49.9,-6.5 -28.8,-47.8 -7.9,-44.3" class="skin" id="L_2_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Arm_Left_High.tw
tw
mit
412
:: Art_Vector_Arm_Left_Low [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 353.4,255 c 33,-6 29.6,56.1 37.5,74.3 -5,16.2 -6.6,41.9 -36.3,87.2 0,0 -42,-18 -43.4,-2.2 -3.5,39.9 28.5,17.8 48.4,9.9 12.4,-4.9 45.3,-83.4 49.9,-100.1 3.1,-11.3 -13.8,-86.7 -31.5,-104.1 -8.1,-7.9 -9.6,-4.9 -16.6,-9.2 -50.1,6.3 -29,47.7 -8,44.2" class="skin" id="L"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Arm_Left_Low.tw
tw
mit
404
:: Art_Vector_Arm_Left_Mid [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 358.1,257 c 28.8,-6 21.8,49.7 28.7,67.6 -18.6,0.4 -50.5,-7.6 -103.8,-11.1 0,0 -36.7,-17.8 -37.9,-2.2 -3,39.3 20.4,22.7 37.9,14.8 14.6,-2 120.8,33 124.8,16.6 2.8,-11.1 -12.7,-103.2 -28.2,-120.3 -7.1,-7.8 -8.4,-4.8 -14.5,-9.1 -43.7,6.4 -25.3,47.1 -7,43.7" class="skin" id="L_1_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Arm_Left_Mid.tw
tw
mit
415
:: Art_Vector_Arm_Left_Rebel [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 361.3,240.3 c 9.9,3.7 6.2,3.3 36.3,17.8 8.3,4 20.5,9.8 35.5,16.5 11.8,9.2 22.4,13.4 30,15.5 18.5,5.1 33.2,1.6 40.4,11.9 3.9,5.5 4.9,11.6 4.9,11.6 1.8,3.2 3.7,7.7 4.7,13.4 0.9,5.3 0.4,8.9 1.3,9.1 1.1,0.2 3.7,-4.2 3.9,-9.1 0.2,-5.5 -2.7,-8.8 -1.3,-10.3 1.3,-1.3 3.7,1 6.5,0.1 5.7,-1.8 6.1,-14.6 6.2,-16.1 0.1,-4.7 0.3,-10.6 -3.3,-14 -4.4,-4.1 -10.6,-1 -20,-0.7 -9.4,0.4 -20.9,-4.8 -43.8,-15 -10.4,-4.6 -15.5,-6.9 -22.5,-11 -13.4,-7.8 -23.2,-16.1 -29.5,-22 -26.2,-19 -35.6,-24.7 -38.3,-25.4 -0.4,-0.1 -3.1,-0.8 -6.5,-2.3 -0.9,-0.4 -2,-0.9 -3.2,-1.6 -11.7,3 -19,6.2 -23.5,9.2 -3.9,2.7 -6.8,5.7 -6.5,8.7 0.5,5.6 11.9,7.3 28.7,13.7 z" class="skin" id="path4819"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Arm_Left_Rebel.tw
tw
mit
796
:: Art_Vector_Arm_Left_Thumb_Down [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 354.7,252.8 c 25.1,-5.4 9.1,67.7 17,85.9 13.9,6.4 20.4,-4.7 50.5,-19.5 0,0 16.4,-37 9.2,-40 -1.7,-0.7 -6.6,-1.2 -6.6,-1.2 0,-7.6 0.8,-25.2 -2.1,-24.8 -2.4,0.4 -1.4,17.3 -2.9,24.7 -14,1.9 -7.6,20.6 -6.9,30.8 -9.3,8 -15.3,10.8 -24.4,12.1 3.1,-11.3 8.6,-85.7 -9.2,-103 -8.1,-7.9 -9.6,-4.9 -16.6,-9.2 -50,6.3 -29,47.6 -8,44.2" class="skin" id="path4821"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Arm_Left_Thumb_Down.tw
tw
mit
495
:: Art_Vector_Arm_Right_High [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 281.8,204.7 c -21.8,3.4 -60,-36.9 -82.3,-50.2 28.1,-11.8 29.5,-16.2 76.2,-47.7 0,0 42,18 43.4,2.2 3.5,-39.9 -31.1,-22.5 -48.4,-9.9 -14.8,1.2 -92.9,44.3 -88.9,57.8 6.1,20.6 48.4,58 75.4,76 8.9,4.4 28.5,-13.6 24.6,-28.2" class="skin" id="R_2_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Arm_Right_High.tw
tw
mit
382
:: Art_Vector_Arm_Right_Low [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 266.2,253.7 c -28.3,-5.9 -25.4,54.5 -32.3,72.2 4.3,15.6 5.7,40.7 31.3,84.7 0,0 36.2,-17.5 37.3,-2.1 3,38.7 -24.5,17.2 -41.7,9.6 -10.7,-4.8 -39,-81 -42.9,-97.1 -2.7,-10.9 11.8,-84.2 27.1,-101.1 6.9,-7.7 8.3,-4.7 14.3,-8.9 43,6 24.9,46 6.9,42.7" class="skin" id="R"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Arm_Right_Low.tw
tw
mit
403
:: Art_Vector_Arm_Right_Mid [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 267.4,253.7 c -28.3,-5.9 -22.8,53.7 -29.6,71.4 18.2,0.4 51.1,-12.2 103.6,-15.7 0,0 36.2,-17.5 37.3,-2.1 3,38.7 -20.2,22.3 -37.3,14.6 -14.3,-2 -119,32.5 -122.9,16.4 -2.7,-10.9 12.4,-101.7 27.7,-118.5 6.9,-7.7 8.3,-4.7 14.3,-8.9 43.1,6.1 25,46.1 6.9,42.8" class="skin" id="R_1_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Arm_Right_Mid.tw
tw
mit
416
:: Art_Vector_Balls_0 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 252.8,446.8 c 0.7,2 1.6,2.3 2.3,2.5 1.4,0.4 2.2,-0.1 4.6,0.6 1.1,0.4 1.8,1.2 3.6,1.2 0.4,0 2.9,0.4 5,-1.5 1.3,-1.2 1.2,-3 1.2,-5.7 0,-2 -0.4,-3.3 -0.7,-4.1 -0.5,-1.3 -0.8,-2.1 -1.5,-2.6 -1.7,-1.1 -4.2,0.1 -5.5,0.7 -1.4,0.7 -3.1,-0.2 -4.7,1.3 -2.6,2.1 -5.2,5.2 -4.3,7.6 z" class="shadow" id="XMLID_876_"/><path d="m 252.9,444.7 c -0.1,1.2 0.4,2.7 1.5,3.5 1.2,0.9 2,0.1 4.5,0.7 2,0.5 1.9,1.2 3.5,1.3 0.4,0.1 3.3,0.4 5.1,-1.3 1.3,-1.3 1.2,-3.2 1.2,-5.9 0,-2 -0.4,-3.4 -0.7,-4.2 -0.5,-1.4 -0.8,-2.2 -1.6,-2.7 -1.7,-1.2 -4.4,0.1 -5.6,0.7 -1.4,0.7 -2.3,1.4 -3.9,2.9 -2.7,2.3 -3.9,3.5 -4,5 z" class="skin scrotum" id="XMLID_877_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Balls_0.tw
tw
mit
756
:: Art_Vector_Balls_1 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 243.7,452.6 c 1.2,3.4 2.8,3.9 3.9,4.3 2.5,0.7 3.8,-0.3 7.9,1.1 1.9,0.5 3.1,2.1 6.3,2.1 0.6,0 5,0.8 8.5,-2.7 2.2,-2.2 2.1,-5.3 2,-9.9 -0.1,-3.4 -0.8,-5.7 -1.2,-7 -0.9,-2.3 -1.3,-3.6 -2.7,-4.5 -2.9,-1.9 -7.3,0.2 -9.5,1.2 -2.4,1.2 -4.7,-0.7 -7.5,1.8 -4,3.8 -9.1,9.6 -7.7,13.6 z" class="shadow" id="XMLID_874_"/><path d="m 243.7,449.5 c -0.2,2.1 0.7,4.7 2.6,6.1 2.1,1.5 3.6,0.2 8.1,1.3 3.5,0.9 3.4,2 6.1,2.4 0.6,0.1 5.8,0.8 8.9,-2.4 2.3,-2.4 2.2,-5.6 2.1,-10.5 -0.1,-3.6 -0.8,-6 -1.3,-7.4 -0.9,-2.5 -1.4,-3.9 -2.8,-4.8 -3.1,-2 -7.7,0.2 -10,1.3 -2.6,1.2 -4,2.6 -6.9,5.2 -4.4,4 -6.6,6.1 -6.8,8.8 z" class="skin scrotum" id="XMLID_875_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Balls_1.tw
tw
mit
763
:: Art_Vector_Balls_2 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 236.7,459.4 c 2,5.2 4.4,6.1 6.1,6.7 3.9,1.2 6,-0.4 12.4,1.6 2.9,0.9 4.9,3.3 9.8,3.3 0.9,0 7.8,1.3 13.3,-4.1 3.5,-3.4 3.3,-8.3 3.2,-15.5 -0.1,-5.3 -1.2,-8.9 -2,-10.9 -1.3,-3.6 -2.1,-5.8 -4.2,-7.1 -4.5,-2.9 -11.4,0.3 -14.8,2 -3.7,1.8 -6.8,-0.8 -11.2,3.2 -6.3,5.8 -14.9,14.5 -12.6,20.8 z" class="shadow" id="XMLID_872_"/><path d="m 236.7,454.8 c -0.2,3.4 1.2,7.6 4.2,9.7 3.3,2.4 5.8,0.3 12.8,2 5.5,1.4 5.3,3.1 9.7,3.8 1,0.2 9.2,1.3 14.2,-3.8 3.6,-3.7 3.6,-8.9 3.5,-16.6 -0.1,-5.7 -1.2,-9.6 -2,-11.7 -1.4,-3.9 -2.3,-6.1 -4.5,-7.6 -4.9,-3.2 -12.3,0.4 -15.9,2 -4.1,2 -6.4,4.1 -11.1,8.3 -7.1,6.4 -10.7,9.6 -10.9,13.9 z" class="skin scrotum" id="XMLID_873_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Balls_2.tw
tw
mit
783
:: Art_Vector_Balls_3 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 229.9,468.6 c 2.5,6.8 5.7,8 8,8.7 5.1,1.5 7.8,-0.5 16.1,2.1 3.8,1.2 6.4,4.3 12.7,4.3 1.2,0 10.2,1.7 17.4,-5.3 4.5,-4.4 4.3,-10.8 4.2,-20.2 -0.1,-7 -1.5,-11.6 -2.5,-14.3 -1.7,-4.8 -2.8,-7.5 -5.4,-9.3 -5.9,-3.8 -14.8,0.3 -19.4,2.5 -4.9,2.3 -8.9,-1 -14.6,4.2 -8.3,7.7 -19.5,19 -16.5,27.3 z" class="shadow" id="XMLID_870_"/><path d="m 229.9,462.5 c -0.2,4.4 1.5,9.9 5.4,12.6 4.3,3.1 7.5,0.3 16.7,2.7 7.2,1.9 7,4.1 12.6,5 1.3,0.2 12.1,1.7 18.5,-5 4.8,-4.9 4.6,-11.6 4.5,-21.7 -0.1,-7.4 -1.6,-12.5 -2.7,-15.3 -1.9,-5.1 -3,-8 -5.9,-10 -6.4,-4.2 -16,0.5 -20.7,2.7 -5.3,2.5 -8.3,5.3 -14.5,10.8 -8.9,8.5 -13.5,12.7 -13.9,18.2 z" class="skin scrotum" id="XMLID_871_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Balls_3.tw
tw
mit
789
:: Art_Vector_Balls_4 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 221.1,480.5 c 3.3,8.9 7.4,10.4 10.4,11.3 6.6,2 10.1,-0.6 21,2.7 5,1.5 8.3,5.6 16.6,5.6 1.5,0 13.3,2.3 22.7,-7 5.9,-5.7 5.6,-14.1 5.4,-26.3 -0.2,-9.1 -2,-15.1 -3.3,-18.6 -2.3,-6.2 -3.6,-9.8 -7.1,-12.1 -7.7,-5 -19.3,0.5 -25.2,3.3 -6.3,3 -11.6,-1.4 -19,5.4 -10.8,10.2 -25.4,25 -21.5,35.7 z" class="shadow" id="XMLID_868_"/><path d="m 221.1,472.7 c -0.3,5.7 2,12.8 7.1,16.5 5.6,4.1 9.8,0.5 21.8,3.5 9.4,2.4 9.1,5.3 16.5,6.5 1.7,0.3 15.7,2.3 24.2,-6.5 6.2,-6.3 6,-15.1 5.9,-28.3 -0.2,-9.7 -2.1,-16.3 -3.5,-19.9 -2.4,-6.6 -3.9,-10.4 -7.7,-13 -8.3,-5.4 -20.9,0.6 -27.1,3.5 -7,3.3 -10.9,7 -18.9,14.1 -11.8,10.9 -17.8,16.3 -18.3,23.6 z" class="skin scrotum" id="XMLID_869_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Balls_4.tw
tw
mit
798
:: Art_Vector_Belly [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 274.8,433.8 c 20.7,-1.5 47.7,-4.5 61.9,-42.4 13.1,-44.3 -27.8,-99.6 -59.9,-101.5 -40.1,6.2 -61.8,42.8 -63.9,96.9 2.2,31 33.1,49 61.9,47 z" class="shadow" id="XMLID_543_"/><path d="m 274.8,433.8 c 20.8,0.1 49.4,-13 61.9,-42.4 12.5,-29.4 -18.5,-83.4 -46,-101.7 -6.5,-4.3 -38.7,-8.2 -40.4,0 -2.6,11.6 -44.9,33.3 -41.4,96.8 1.8,34.8 45.1,47.2 65.9,47.3 z" class="skin" id="XMLID_544_"/><path class="areola" d="m 249.83484,395.7339 a 3.0999447,2.7999501 78.497917 0 1 -2.12558,3.59601 3.0999447,2.7999501 78.497917 0 1 -3.36186,-2.47937 3.0999447,2.7999501 78.497917 0 1 2.12558,-3.59601 3.0999447,2.7999501 78.497917 0 1 3.36186,2.47937 z" id="XMLID_545_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Belly.tw
tw
mit
783
:: Art_Vector_Belly_Outfit_Shine [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-9" d="m 290.74565,341.76682 c 5.2665,4.35178 5.56841,11.52129 5.82323,18.71753 -2.56499,-6.10053 -4.50607,-12.3397 -5.82323,-18.71753 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.12775385;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(2.806394,-0.28790498,0.2559876,2.4952748,-620.76047,-450.58168)"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Belly_Outfit_Shine.tw
tw
mit
880
:: Art_Vector_Belly_Piercing [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle id="XMLID_547_" class="steel_piercing" cx="246.89999" cy="390.89999" r="1.2"/><circle id="XMLID_548_" class="steel_piercing" cx="246.89999" cy="395" r="1.2"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Belly_Piercing.tw
tw
mit
294
:: Art_Vector_Belly_Piercing_Heavy [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 247,396.1 c -0.2,0 -1.6,2.1 -1.5,11.7 0.1,12.7 1.5,13.2 1.7,13.2 0.4,0 1.5,-7.4 1.2,-15.9 -0.4,-4.6 -1.1,-9.1 -1.4,-9 z" class="steel_piercing" id="XMLID_549_"/><path d="m 247.1,421.1 c -0.5,0 -1,2.4 -0.8,4.4 0.2,1.3 0.6,3 1.2,3 0.4,0 0.7,-1.8 0.8,-3 -0.1,-2 -0.7,-4.4 -1.2,-4.4 z" class="steel_piercing" id="XMLID_550_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Belly_Piercing_Heavy.tw
tw
mit
467
:: Art_Vector_Boob_Areola [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4371"><path id="XMLID_592_" class="areola" d="m 232.2,271.7 c 1.3,-0.4 2.9,1.2 3.5,3.5 0.5,2.3 -0.1,4.5 -1.3,4.9 -1.3,0.4 -2.9,-1.2 -3.5,-3.5 -0.6,-2.3 0,-4.5 1.3,-4.9 z"/><path id="XMLID_593_" d="m 295.53296,285.16067 a 6.1000179,4.9000146 86.283549 0 1 -5.28511,-5.76958 6.1000179,4.9000146 86.283549 0 1 4.49431,-6.4048 6.1000179,4.9000146 86.283549 0 1 5.28511,5.76958 6.1000179,4.9000146 86.283549 0 1 -4.49431,6.4048 z" class="areola"/></g></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Boob_Areola.tw
tw
mit
609
:: Art_Vector_Boob_Piercing [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><g transform="'+_art_transform+'"id="g4871"><circle r="1" cy="279" cx="292.40002" class="steel_piercing" id="XMLID_622_"/><circle r="1" cy="279" cx="296.79999" class="steel_piercing" id="XMLID_623_"/><ellipse ry="0.80001432" rx="0.60001075" cy="-316.29102" cx="-176.88219" class="steel_piercing" transform="matrix(-0.98098244,0.19409652,-0.19409652,-0.98098244,0,0)" id="XMLID_625_"/><ellipse ry="0.80002308" rx="0.60001731" cy="-212.46971" cx="-291.39941" class="steel_piercing" transform="matrix(-0.97097202,-0.23919311,0.23919311,-0.97097202,0,0)" id="XMLID_626_"/></g></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Boob_Piercing.tw
tw
mit
699
:: Art_Vector_Butt_0 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 335.8,402.6 c 10.1,-2.9 25.4,17.5 31.8,30.1 10.4,20.9 7,41.9 5.3,52.2 -2.1,13.3 -5.7,22.8 -9.5,32.6 -7.8,19.7 -15.6,39.6 -21.9,39.1 -16.7,-1.3 -30.4,-146.9 -5.7,-154 z" class="skin" id="path54"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Butt_0.tw
tw
mit
326
:: Art_Vector_Butt_1 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 327.3,389.8 c 1.7,-0.5 6.3,2.7 15.5,9 4.2,2.9 9.2,7.9 21.1,16.9 8.7,6.6 15.4,11.6 20.6,19.1 0,0 13.7,19.8 6.6,48.5 -0.6,2.7 -1.5,5.2 -1.5,5.2 -1.2,3.6 -2.9,6.4 -5.9,12.7 -4.4,9.3 -4.7,11.3 -6.4,14.7 -4.4,8.9 -8.5,11.2 -15.6,19.8 -4.1,5 -6.9,9.3 -9,12.9 -5.5,9.6 -6,11.3 -7,11.4 -9.9,0.8 -36.6,-165.3 -18.4,-170.2 z" class="skin" id="path51"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Butt_1.tw
tw
mit
473
:: Art_Vector_Butt_2 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 328,389.8 c 1.9,-0.5 7,2.9 17.2,9.8 4.7,3.1 10.2,8.6 23.4,18.3 9.7,7.1 17,12.5 22.9,20.7 0,0 15.2,21.5 7.3,52.6 -0.7,2.9 -1.7,5.7 -1.7,5.7 -1.4,3.9 -3.3,6.9 -6.5,13.8 -4.8,10.1 -5.2,12.2 -7.1,15.9 -4.9,9.6 -9.5,12.1 -17.3,21.5 -4.6,5.4 -7.7,10.1 -9.9,14 -6.1,10.4 -6.6,12.3 -7.8,12.4 -11.1,0.8 -40.7,-179.4 -20.5,-184.7 z" class="skin" id="path48"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Butt_2.tw
tw
mit
480
:: Art_Vector_Butt_3 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 328.6,389.8 c 2.1,-0.5 7.6,3.1 18.7,10.3 5,3.3 11.1,9 25.3,19.2 10.5,7.5 18.5,13.2 24.8,21.8 0,0 16.4,22.6 7.9,55.2 -0.7,3 -1.8,6 -1.8,6 -1.5,4 -3.5,7.3 -7,14.5 -5.2,10.6 -5.7,12.9 -7.7,16.7 -5.3,10.1 -10.2,12.7 -18.8,22.6 -5,5.7 -8.3,10.6 -10.8,14.7 -6.6,11 -7.2,12.9 -8.4,13 -12,0.7 -44.1,-188.5 -22.2,-194 z" class="skin" id="path45"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Butt_3.tw
tw
mit
469
:: Art_Vector_Butt_Outfit_Shine_0 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2-5-2" d="m 374.32263,419.48846 c 9.3676,8.5745 20.75845,16.21829 24.99431,40.75881 -5.80029,-17.86523 -20.76554,-35.0049 -24.99431,-40.75881 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.96251573,0.27122589,-0.27122589,0.96251573,109.72954,-84.004665)"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Butt_Outfit_Shine_0.tw
tw
mit
883
:: Art_Vector_Butt_Outfit_Shine_1 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2-5-3" d="m 369.14719,420.64127 c 12.0312,9.35178 25.93389,15.06548 30.16975,39.606 -5.80029,-17.86523 -25.94098,-33.85209 -30.16975,-39.606 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-30.670201,9.8258533)"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Butt_Outfit_Shine_1.tw
tw
mit
882
:: Art_Vector_Butt_Outfit_Shine_2 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2-5" d="m 369.14719,420.64127 c 12.0312,9.35178 25.93389,15.06548 30.16975,39.606 -5.80029,-17.86523 -25.94098,-33.85209 -30.16975,-39.606 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.99928736,-0.03774624,0.03774624,0.99928736,-22.351298,14.817195)"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Butt_Outfit_Shine_2.tw
tw
mit
880
:: Art_Vector_Butt_Outfit_Shine_3 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-2" d="m 369.14719,420.64127 c 12.0312,9.35178 25.93389,15.06548 30.16975,39.606 -5.80029,-17.86523 -25.94098,-33.85209 -30.16975,-39.606 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(0.99729094,-0.07355799,0.07355799,0.99729094,-31.357293,29.456529)"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Butt_Outfit_Shine_3.tw
tw
mit
878
:: Art_Vector_Chastity_Anus [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 246,405.8 c 6.6,2.1 15.9,4.3 27.1,4.5 15,0.3 26.9,-3.1 34.4,-5.9 -2.3,2 -5.9,5.1 -10.3,8.7 -6.6,5.4 -9.3,7.2 -13.9,11.2 -4.4,3.8 -8.4,7.6 -12.1,11.3 -0.1,0.2 -1.9,3 -5.3,2.9 -2.9,0 -4.6,-2.2 -4.8,-2.4 -1.5,-3.4 -3.1,-6.9 -4.8,-10.4 -3.3,-7 -6.8,-13.7 -10.3,-19.9 z" id="path5-9"/><path class="steel_chastity" d="m 244.1,404 c 7.2,2.2 16.9,4.3 28.3,4.6 15.1,0.5 27.6,-2.1 36,-4.6 -8,5.3 -16.6,11.6 -25.3,19 -4.6,3.9 -8.8,7.7 -12.7,11.5 -0.1,0.2 -2,3 -5.5,3 -3,0 -4.8,-2.2 -5,-2.5 -1.6,-3.5 -3.2,-7.1 -5,-10.7 -3.5,-7.2 -7.2,-14 -10.8,-20.3 z" id="path7-06"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Chastity_Anus.tw
tw
mit
695
:: Art_Vector_Chastity_Vagina [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 233.7,401.7 c 8.8,3.6 21.3,7.4 36.6,8.6 23,1.7 41.4,-3.5 52,-7.4 -7.9,5.3 -20.7,15.5 -31.1,32.6 -7.9,13 -11.5,25.2 -13.2,33.6 -1.4,8.4 -3,10 -4.1,10.1 -2.1,0.2 -3.9,-5.4 -7,-14.5 -2.9,-8.3 -6.1,-16.5 -8.7,-24.9 -2.8,-9.5 -9.1,-22.6 -24.5,-38.1 z" id="path5-7"/><path class="steel_chastity" d="m 232.2,399.9 c 8.9,3.6 21.7,7.5 37.3,8.7 23.4,1.7 42.1,-3.5 53,-7.5 -8,5.4 -21.1,15.7 -31.7,32.8 -8,13.1 -11.7,25.4 -13.5,33.8 -1.2,5.8 -2.3,10 -4.2,10.2 -3.6,0.3 -5.9,-15.7 -17.4,-40.4 -1.4,-3 -3.2,-6.8 -5.8,-11.6 -6.3,-11.5 -12.9,-20.2 -17.7,-26 z" id="path7-68"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Chastity_Vagina.tw
tw
mit
700
:: Art_Vector_Clavicle [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 301.3,220.4 c 3,-2.7 20.4,-6.8 35.2,-9 -11.6,3.4 -30,5.4 -35.2,9 z" class="shadow" id="XMLID_511_"/><path d="m 291.3,220.1 c -2.2,-2.8 -7.6,-5.5 -20.3,-9.3 9.8,4.4 16.3,5.3 20.3,9.3 z" class="shadow" id="XMLID_546_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Clavicle.tw
tw
mit
350
:: Art_Vector_Clit_Piercing [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="435.60001" cx="268.29999" class="steel_piercing" id="XMLID_537_"/><circle r="1.2" cy="436.10001" cx="263.60001" class="steel_piercing" id="XMLID_538_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Clit_Piercing.tw
tw
mit
299
:: Art_Vector_Clit_Piercing_Heavy [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="435.60001" cx="268.29999" class="steel_piercing" id="XMLID_534_"/><circle r="1.2" cy="436.10001" cx="263.60001" class="steel_piercing" id="XMLID_535_"/><path d="m 264,436.4 c -0.1,-0.1 -3.5,1.9 -3.2,5.1 0.3,2.7 2.9,4.5 5.6,4.4 2.6,-0.2 4.9,-2.4 4.9,-4.9 0,-3.2 -3.6,-5 -3.7,-4.8 -0.1,0.2 2.5,2.1 2.1,4.5 -0.2,1.6 -1.9,3.6 -4.1,3.6 -2,-0.1 -3.4,-1.7 -3.6,-3.2 -0.4,-2.6 2.1,-4.7 2,-4.7 z" class="steel_piercing" id="XMLID_536_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Clit_Piercing_Heavy.tw
tw
mit
581
:: Art_Vector_Clit_Piercing_Smart [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="435.60001" cx="268.29999" class="steel_piercing" id="XMLID_539_"/><circle r="1.2" cy="436.10001" cx="263.60001" class="steel_piercing" id="XMLID_540_"/><path d="m 263.8,436.2 c -0.1,-0.1 -2.3,3.3 -1.1,5.5 1.4,2.7 6.4,2.1 7.4,-0.8 0.8,-2.4 -1.6,-5.4 -1.8,-5.3 -0.1,0.1 1.4,2.5 0.5,4.4 -1,2.1 -3.6,2.3 -4.9,0.3 -1.2,-1.8 0,-4 -0.1,-4.1 z" class="steel_piercing" id="XMLID_541_"/><rect height="7.3005033" width="7.3005033" class="smart_piercing" transform="matrix(0.74874839,0.66285431,-0.66285431,0.74874839,0,0)" y="154.21469" x="492.11429" id="XMLID_542_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Clit_Piercing_Smart.tw
tw
mit
710
:: Art_Vector_Collar_Cowbell [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-8" d="m 293.8,189 c 1.8,1 8.4,3.6 18,-1.9 0.3,-0.2 0.6,0 0.7,0.3 l 0.7,3.5 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -9.7,4.3 -13,4.3 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.5 0.6,-0.4 z"/><path transform="translate(-220,-3.8532959e-6)" d="m 514.5,198 10.1,1 5.8,22.7 -22.5,-0.8 -3.7,-5.1 z" id="polygon12"/><path id="path14" d="m 302.8,204.6 -6.8,-0.6 1.1,-11.5 6.8,0.7 -1.1,11.4 z m -5.6,-1.8 4.5,0.4 0.9,-9 -4.5,-0.4 -0.9,9 z"/><path id="path16" d="m 302.3,203.5 -7,-0.7 1,-10.7 7,0.7 -1,10.7 z m -5.7,-1.7 4.6,0.4 0.8,-8.3 -4.6,-0.4 -0.8,8.3 z" class="steel_chastity"/><path transform="translate(-220,-3.8532959e-6)" style="fill:#bababa" d="m 514.4,198 9.6,0.9 4.1,17.9 -23.9,-1 z" id="polygon18"/><path d="m 298.60547,191.26758 -0.29883,3.40039 2.98828,0.26367 0.29883,-3.40039 -2.98828,-0.26367 z" id="line20"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Collar_Cowbell.tw
tw
mit
998
:: Art_Vector_Collar_Neck_Corset [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 342.9,208.1 c -29.1,-3.8 -34.5,-14.5 -29.8,-48.6 0.1,-0.4 -0.3,-0.8 -0.7,-0.8 l -20.6,0.9 c -0.4,0 -0.7,0.4 -0.7,0.9 8.1,42.8 -6.4,40.7 -21,48.6 -0.5,0.3 -0.5,1 0,1.2 l 9.5,6 c 1.1,0.6 1.9,1.6 2.3,2.8 l 4.8,12.7 c 0.2,0.4 0.7,0.6 1,0.4 L 311,219.3 c 1.4,-0.8 2.9,-1.4 4.4,-1.8 l 27.7,-8 c 0.7,-0.2 0.6,-1.3 -0.2,-1.4 z" id="path1012"/><path class="steel_chastity" d="m 299.2,199.9 c -0.7,0 -1.4,-0.2 -2,-0.5 -1.3,-0.7 -2,-2.1 -2,-3.5 0,-0.7 0.2,-1.4 0.5,-2 0.4,-0.7 1,-1.3 1.7,-1.6 0.2,-0.1 0.5,0 0.7,0.2 0.1,0.2 0,0.5 -0.2,0.7 -0.5,0.3 -1,0.7 -1.3,1.2 -0.3,0.5 -0.4,1 -0.4,1.5 0,1.1 0.6,2.1 1.5,2.7 0.5,0.3 1,0.4 1.5,0.4 1.1,0 2.1,-0.6 2.7,-1.5 0.3,-0.5 0.4,-1 0.4,-1.5 0,-1.1 -0.6,-2.1 -1.5,-2.7 -0.2,-0.1 -0.3,-0.4 -0.2,-0.7 0.1,-0.2 0.4,-0.3 0.7,-0.2 1.3,0.7 2,2.1 2,3.5 0,0.7 -0.2,1.4 -0.5,2 -0.8,1.2 -2.2,2 -3.6,2 z" id="path8-4"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Collar_Neck_Corset.tw
tw
mit
980
:: Art_Vector_Collar_Retirement_Cruel [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 313.9,194.52901 c -0.2,0.2 -0.4,0.3 -0.7,0.4 -6,2.3 -10.6,2.9 -14,2.8 -5.9,-0.2 -7.5,-2.3 -7.7,-2.5 -0.7,-0.8 -0.4,-2.1 0.8,-2.6 1.3,-0.5 2.5,-0.5 3.2,0.3 0.2,0.2 3.4,3.4 15.5,-1.1 1.2,-0.5 2.7,-0.1 3.3,0.7 0.5,0.6 0.3,1.4 -0.4,2" id="path11-3"/><path class="steel_chastity" d="m 299.8,197.72901 c -6,0 -7.8,-2 -8,-2.1 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.4,-0.6 3.2,0.2 0.2,0.2 3.8,3.2 15.4,-1.6 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.3,1.9 -0.9,2.3 -5.8,2.3 -10.3,3.1 -13.6,3.1 z" id="path13-33"/><path transform="translate(-220,3.42901)" d="m 516.4,190.9 7.2,0 -0.5,2.9 -6.2,0 z" id="polygon17"/><path id="path19-8" d="m 303.1,194.82901 0,2.4 -6.1,0 0,-2.4 6.1,0 m 0.5,-0.5 -7.3,-0.1 0.2,3 7.1,0 0,-2.9 0,0 z" class="steel_chastity"/><text id="text21" name="Collar_Text" x="297.13312" y="196.96181" style="font-size:1.96150005px;font-family:sans-serif;fill:#ff0000">8888</text></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Collar_Retirement_Cruel.tw
tw
mit
1,026
:: Art_Vector_Collar_Satin_Choker [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-9" d="m 293.7,188.8 c 1.8,1 8.4,3.6 18,-1.9 0.3,-0.2 0.6,0 0.7,0.3 l 0.7,3.5 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -9.7,4.3 -13,4.3 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.6 0.6,-0.4 z"/><path id="path13-6" d="m 292.8,190.1 c 0,0.1 5.6,6.5 19.9,-1.6 l 0.1,0.8 c -5.5,3.1 -9.9,4 -13,4 -5,0 -7.5,-2.3 -7.3,-2.3" class="steel_chastity"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Collar_Satin_Choker.tw
tw
mit
524
:: Art_Vector_Collar_Shock_Punishment [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-4" d="m 299.9,194.4 c -5.4,0 -7.7,-3.1 -7.8,-3.3 -0.5,-0.7 -0.3,-1.6 0.4,-2.1 0.7,-0.5 1.6,-0.3 2.1,0.4 0.2,0.3 4.4,5.6 16.9,-2 0.7,-0.4 1.6,-0.2 2.1,0.5 0.4,0.7 0.2,1.6 -0.5,2.1 -5.7,3.4 -10,4.4 -13.2,4.4 z"/><rect x="308.4668" y="166.71555" transform="matrix(0.99759571,0.06930217,-0.06930217,0.99759571,0,0)" width="6.3000274" height="10.500045" id="rect11"/><rect x="308.4549" y="166.72701" transform="matrix(0.99759571,0.06930217,-0.06930217,0.99759571,0,0)" class="steel_chastity" width="6.0000257" height="10.100043" id="rect13-0"/><circle cx="298.70001" cy="192.8" r="1.3" id="circle15" style="fill:#ce5b5b"/><circle style="fill:#d13737" cx="298.70001" cy="192.7" r="1.2" id="circle17"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Collar_Shock_Punishment.tw
tw
mit
848
:: Art_Vector_Collar_Stylish_Leather [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path id="path9-3" d="m 293.7,188.8 c 1.8,1 8.4,3.6 18,-1.9 0.3,-0.2 0.6,0 0.7,0.3 l 0.7,3.5 c 0,0.2 -0.1,0.4 -0.2,0.5 -5.6,3.3 -9.7,4.3 -13,4.3 -5.2,0 -7.1,-1.8 -7.6,-2.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 l 0.9,-3.4 c 0,-0.4 0.3,-0.6 0.6,-0.4 z"/><path transform="translate(-220,-3.853296e-6)" style="fill:#ffffff" d="m 518.5,195.3 3.4,0 0,-0.6 1,0 0,1.5 -5.4,0 0,-7 5.4,0 0,1.3 -1,0.1 0,-0.5 -3.4,0 z" id="polygon11"/><rect x="-183.11382" y="302.88812" transform="matrix(0.03349876,-0.99943876,0.99943876,0.03349876,0,0)" class="white" width="0.9999612" height="2.499903" id="rect13"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Collar_Stylish_Leather.tw
tw
mit
719
:: Art_Vector_Collar_Tight_Steel [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 313.9,191.1 c -0.2,0.2 -0.4,0.3 -0.7,0.4 -6,2.3 -10.6,2.9 -14,2.8 -5.9,-0.2 -7.5,-2.3 -7.7,-2.5 -0.7,-0.8 -0.4,-2.1 0.8,-2.6 1.3,-0.5 2.5,-0.5 3.2,0.3 0.2,0.2 3.4,3.4 15.5,-1.1 1.2,-0.5 2.7,-0.1 3.3,0.7 0.5,0.6 0.3,1.4 -0.4,2" id="path11-0"/><path class="steel_chastity" d="m 299.7,194.3 c -6,0 -7.8,-2 -8,-2.1 -0.8,-0.8 -0.7,-2 0.5,-2.5 1.2,-0.6 2.4,-0.6 3.2,0.2 0.2,0.2 3.8,3.2 15.4,-1.6 1.2,-0.5 2.7,-0.2 3.4,0.6 0.7,0.8 0.3,1.9 -0.9,2.3 -5.7,2.3 -10.2,3.1 -13.6,3.1 z" id="path13"/><circle r="3.5999207" transform="matrix(0.500011,-0.86601905,0.86601905,0.500011,0,0)" style="fill:none;stroke:#fefff2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:19" cx="-20.265337" cy="357.12662" id="ellipse15"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Collar_Tight_Steel.tw
tw
mit
858
:: Art_Vector_Feet [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 268.6,863.6 c 0.7,1.8 1.5,1.7 2.9,4.2 0,0 2,3.6 2.2,8.1 0.2,5.3 -3.9,7.6 -9.2,15.1 -8.1,11.6 -6.2,17.3 -12.7,20.7 -2.1,1.2 -5,1.6 -10.8,2.7 -0.5,0.1 -3.3,0.3 -9,0.6 -2.4,0.2 -4.6,0.3 -6.3,-1.3 -0.4,-0.4 -1.3,-1.2 -1.2,-2.2 0.2,-1.6 3.1,-1.9 5.7,-3.1 3.6,-1.8 5.5,-4.9 7.3,-7.6 2.8,-4.4 1.8,-6 5.5,-16.4 1.7,-4.6 1.9,-4.4 3,-8.1 1.6,-5 1.6,-6.8 3.1,-12.3 1.9,-7 3.6,-12.8 5.2,-14.4 4.8,-4.9 10.8,-2.8 12.4,1.2 1.5,2.9 0.1,8.2 1.9,12.8 z" class="skin" id="XMLID_463_"/><path d="m 311.5,880.7 c 0.4,-6.6 5.7,-12.8 8.5,-30.2 0.6,-4.1 2.8,-4.8 5.2,-6 3.7,-1.7 10.6,-2.7 11,6 0.4,6.1 -0.6,16.4 0,27.2 0.4,6.5 0.2,11.4 2,21.2 1.9,10 2.8,15.1 6,20.7 3.9,6.9 8.1,9.2 7.3,12.1 -0.6,2.4 -4.1,2.9 -9.2,3.7 -4.8,0.7 -9.6,1.4 -15.1,-1.3 -1.4,-0.7 -4,-2 -6.2,-4.7 -5.2,-6.1 -2.2,-13.2 -4.7,-24.4 -3.5,-15.8 -5.4,-14.9 -4.8,-24.3 z" class="skin" id="XMLID_510_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Feet.tw
tw
mit
976
:: Art_Vector_Gag [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 278,167.3 c 2.6,3.9 7.6,0.9 14,5.1 7.8,5 8.1,14 13.2,14 1.7,0 3.5,-1 4.3,-2.4 4.5,-7.7 -18.1,-34.7 -27.5,-31.1 -4.4,1.7 -6.7,10.2 -4,14.4 z" style="opacity:0.23999999;fill:#bf2126" id="XMLID_867_"/><path transform="translate(-220,0)" style="fill:#070505" d="m 489,163.9 -2.6,-6.8 58.7,0 -3.8,7.9 z" id="XMLID_892_"/><ellipse ry="8.6999998" rx="7.5999999" cy="161.10001" cx="282.79999" class="gag" id="XMLID_893_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Gag.tw
tw
mit
542
:: Art_Vector_Glasses [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path class="glasses" d="m 265.9,131 c -0.2,1 -0.3,3 0.9,4.5 1.2,1.4 3.1,1.6 7.1,1.9 4.4,0.3 6.7,0.4 8.1,-0.8 1.8,-1.5 2,-4.1 2,-5.5 0.9,0 1.7,0 2.6,-0.1 1,0 1.9,0 2.8,0 -0.3,1.5 -0.6,4.5 1.2,6.6 0.8,0.9 2.2,2 11.3,1.7 10.9,-0.3 12.4,-1.8 12.9,-2.7 1.1,-1.8 0.7,-4 0.3,-5.5 5.7,0 11.4,-0.1 17.1,-0.1 l 0,2.1 -15.6,-0.1 c 0.1,1.2 0.1,2.9 -0.9,4.4 -0.6,1 -2.3,2.8 -13.6,2.9 -9.9,0.2 -11.5,-1.2 -12.3,-2.2 -1.4,-1.7 -1.5,-3.9 -1.3,-5.4 -0.9,0 -2.7,0 -3.6,0 -0.1,1.1 -0.4,3 -1.8,4.4 -1.7,1.6 -4.2,1.5 -9.1,1.2 -4.3,-0.3 -6.5,-0.4 -7.7,-2.1 -0.9,-1.2 -0.9,-2.7 -0.8,-3.6 0.1,-0.4 0.2,-0.9 0.4,-1.6 z" id="path654"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Glasses.tw
tw
mit
731
:: Art_Vector_Hair_Back [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 344.6,100.2 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.8 48.3,-130.3 33.3,7.2 33.3,19.5 35.8,36.8" class="hair" id="path36"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Hair_Back.tw
tw
mit
299
:: Art_Vector_Hair_Fore [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 264.6,101.6 c 5.1,7.6 15,14 52.5,7.3 18.7,5.2 2.6,37.9 1.1,61 -1.3,19.3 -7.8,36.4 -18.9,51.5 17.1,-12.2 36.2,-10.4 50.8,-41.2 41.1,-23.4 -1.2,-125.9 -49.9,-115.4 -33,7.1 -33.1,19.4 -35.6,36.8 z" class="hair" id="path1018"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Hair_Fore.tw
tw
mit
357
:: Art_Vector_Head [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 323.2,161.2 c 6,-14.4 8.4,-24.7 10.6,-40.1 4.5,-31.3 -16.1,-52.4 -42.5,-43.9 -38.8,10 -27.5,43.7 -26.2,53.7 -6.7,16.4 6,48.7 20.8,53.5 14.6,-1.9 28.9,-5.9 37.3,-23.2 z" class="shadow" id="Head_Shadow"/><path d="m 323.4,161.2 c 6,-14.4 8.4,-24.7 10.6,-40.1 4.5,-31.3 -16.1,-52.4 -42.5,-43.9 -34.2,11 -29.4,33.1 -26.2,53.7 -6.1,16.8 6.9,48.7 20.7,53.1 10.1,-1.7 28.3,-4.2 37.4,-22.8 z" class="skin head" id="path931"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Head.tw
tw
mit
545
:: Art_Vector_Head_Outfit_Shine [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-75" d="m 308.69363,93.705843 c 6.12129,1.942001 8.41769,9.412737 8.67251,17.211417 -2.56499,-6.10053 -5.64578,-11.737253 -8.67251,-17.211417 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:2.11298418;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)" transform="matrix(1.4598262,0,0,1.3808576,-143.26648,-38.263379)"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Head_Outfit_Shine.tw
tw
mit
869
:: Art_Vector_Leg_Narrow [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 225.9,413.1 c 0,0 -10.3,43.4 -10.6,67.8 -0.5,43.2 14.3,129.1 30.4,183.7 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 2.3,-46.1 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.2 26.4,153.6 -15.6,58 5.7,110.8 6.5,168.9 l 16.3,0 c 0.2,-58.5 15.6,-94.6 7.7,-168.9 12.4,-64.5 12.4,-139.3 11.6,-205.6 -0.3,-26 -5.4,-64.7 -5.4,-64.7 l -124.5,1.9" class="skin" id="XMLID_464_"/><path d="m 288,588.6 c -9.8,-40.3 -16.6,-61.7 -12.6,-107.8 -0.7,44.5 3.5,67.1 12.6,107.8 z" class="shadow" id="XMLID_465_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Leg_Narrow.tw
tw
mit
648
:: Art_Vector_Leg_Normal [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 226,413.2 c 0,0 -17.1,47.4 -18.7,71.7 -3.8,60.3 16.3,123.8 38.4,179.8 7.5,61.7 6.2,123.3 8.8,185.4 l 11.5,-0.3 c 2.2,-51.3 34,-103.9 16.3,-161.5 12.8,-54.2 10,-72.4 5,-160.3 -5.4,94.3 16.6,109.1 26.4,153.5 -15.6,58 5.6,110.9 6.4,169 l 16.3,0 c 0.2,-58.5 15.6,-94.7 7.8,-169 23.8,-69.9 25.5,-131.2 20.7,-194.7 -2,-26 -14.5,-75.6 -14.5,-75.6 l -124.4,2" class="skin" id="XMLID_466_"/><path d="m 293.9,619.8 c -9.8,-40.3 -22.5,-96.7 -18.5,-142.8 -0.8,44.7 9.4,102.1 18.5,142.8 z" class="shadow" id="XMLID_467_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Leg_Normal.tw
tw
mit
644
:: Art_Vector_Leg_Wide [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 225.8,413.1 c 0,0 -26.1,35.9 -27.6,60.3 -3.8,60.3 16.8,135.5 38.9,191.5 7.5,61.7 14.8,123 17.3,185.1 l 11.5,-0.3 c 2.3,-52.9 39.2,-99.2 20.2,-160.8 13.6,-57.7 6.2,-71.9 1,-161 -5.4,94.3 4.4,110.4 14.2,154.8 -15.6,58 17.8,109.6 18.6,167.8 l 16.3,0 c 0.2,-58.5 16.4,-95.2 8.5,-169.5 23.8,-69.9 46.5,-155.6 41.7,-219 -2,-25.9 -36,-50.6 -36,-50.6 l -124.6,1.7" class="skin" id="XMLID_468_"/><path d="M 289.6,630.9 C 279.8,590.6 268.8,530 272.8,483.8 c -0.8,44.7 7.6,106.4 16.8,147.1 z" class="shadow" id="XMLID_469_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Leg_Wide.tw
tw
mit
647
:: Art_Vector_Navel_Piercing [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><circle r="1.2" cy="364.39999" cx="262.29999" class="steel_piercing" id="XMLID_515_"/><circle r="1.2" cy="368.60001" cx="262.29999" class="steel_piercing" id="XMLID_516_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Navel_Piercing.tw
tw
mit
300
:: Art_Vector_Navel_Piercing_Heavy [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 262.3,369.8 c -0.2,0 -1.3,2 -1.2,11.6 0.1,12.7 1.2,13.3 1.4,13.3 0.4,0 1.5,-7.4 1.2,-15.9 -0.5,-4.5 -1.1,-9 -1.4,-9 z" class="steel_piercing" id="XMLID_513_"/><path d="m 262.4,394.9 c -0.5,0 -1,2.4 -0.8,4.4 0.2,1.3 0.6,3 1.2,3 0.4,0 0.7,-1.8 0.8,-3 0,-2.1 -0.7,-4.4 -1.2,-4.4 z" class="steel_piercing" id="XMLID_514_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Navel_Piercing_Heavy.tw
tw
mit
464
:: Art_Vector_Penis_0 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 252.9,426.4 c 0.2,0.1 0.2,0.4 0.2,0.5 0,1 1.5,4.4 3.3,6 4.8,4.2 10.2,6.1 9.7,3.9 -0.1,-0.4 0.4,-0.5 0.4,-0.7 0.6,-2.1 -2.1,-5.3 -5.6,-8.3 -2.9,-2.5 -3.4,-2.2 -4,-2.7 -0.1,-0.1 -0.3,-0.2 -0.3,-0.5 -0.1,-0.3 0.2,-0.5 0.2,-0.7 0.1,-0.8 -0.9,-1.3 -1.9,-1.8 -0.7,-0.4 -2.2,-0.8 -3,-0.2 -1.7,1.3 -0.7,5.3 0.4,4.7 0.2,-0.1 0.4,-0.3 0.6,-0.2 z" class="shadow" id="XMLID_890_"/><path d="m 253,426.5 c 0.2,0.2 0.2,0.4 0.2,0.5 0,0.6 1.6,3.9 4.8,6.6 2.4,2 6.9,5 8.5,3.6 0.3,-0.3 0.4,-0.5 0.4,-0.8 0.7,-2.3 -2.8,-5.2 -3.7,-6.1 -3.3,-2.8 -5.2,-4.5 -6,-5 -0.1,-0.1 -0.4,-0.3 -0.5,-0.6 -0.1,-0.3 0.1,-0.4 0.1,-0.6 0.1,-0.6 -1,-1.3 -1.8,-1.7 -0.6,-0.3 -2,-0.8 -2.8,-0.2 -1.4,1.1 -0.5,4.2 0.2,4.4 0.2,0 0.4,-0.2 0.6,-0.1 z" class="skin penis" id="XMLID_891_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Penis_0.tw
tw
mit
874
:: Art_Vector_Penis_1 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 242.5,418.4 c 0.4,0.3 0.4,0.8 0.4,1 0,1.8 2.4,7.6 6.3,11.2 9.7,8.8 18.8,11.3 17.9,7.1 -0.2,-0.6 0.8,-1 0.9,-1.3 0.8,-3 -4.1,-10 -10.7,-15.3 -5.5,-4.4 -6,-4.3 -7.3,-5.1 -0.2,-0.1 -0.4,-0.3 -0.5,-0.9 -0.1,-0.4 0.3,-1 0.4,-1.3 0.2,-1.4 -1.8,-2.5 -3.6,-3.4 -1.4,-0.7 -4.2,-1.5 -5.6,-0.4 -3.2,2.6 -1.1,9.7 0.7,8.7 0.3,-0.2 0.7,-0.6 1.1,-0.3 z" class="shadow" id="XMLID_888_"/><path d="m 242.5,418.6 c 0.4,0.3 0.4,0.9 0.4,1 0,1.2 3,7.3 9,12.4 4.4,3.9 13.1,9.3 16,6.9 0.5,-0.4 0.7,-1.1 0.8,-1.4 1.3,-4.3 -5.1,-9.9 -7,-11.6 -6.2,-5.4 -9.9,-8.5 -11.2,-9.4 -0.2,-0.1 -0.8,-0.5 -1,-1.2 -0.1,-0.5 0.2,-0.8 0.3,-1.2 0.2,-1.2 -1.9,-2.6 -3.4,-3.2 -1.2,-0.4 -3.6,-1.6 -5.3,-0.4 -2.7,2 -1,7.9 0.4,8.1 0.2,0.1 0.7,-0.3 1,0 z" class="skin penis" id="XMLID_889_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Penis_1.tw
tw
mit
876
:: Art_Vector_Penis_2 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 226.2,405.6 c 0.5,0.4 0.5,1.3 0.5,1.5 0,2.8 5.5,12.7 10.5,17.6 15,14.6 29.9,18.3 28.4,11.7 -0.2,-1 1.2,-1.5 1.4,-2.1 2,-6.3 -7.5,-15.7 -17.9,-24.4 -8.7,-7.3 -9,-6.9 -10.9,-8.3 -0.3,-0.2 -0.7,-0.5 -0.9,-1.5 -0.2,-0.7 0.4,-1.6 0.5,-2.2 0.4,-2.3 -2.8,-4 -5.6,-5.4 -2.2,-1.2 -6.7,-2.5 -9.1,-0.5 -5.2,4.1 -1.2,15.3 1.2,14 0.6,-0.2 1.3,-0.7 1.9,-0.4 z" class="shadow" id="XMLID_886_"/><path d="m 226.5,406.1 c 0.6,0.4 0.5,1.3 0.5,1.5 0,1.9 4.9,11.6 14.3,19.9 7.1,6.2 21,15 25.6,11.1 0.9,-0.7 1.2,-1.7 1.3,-2.3 2.1,-6.9 -8.2,-15.9 -11.3,-18.6 -10,-8.6 -15.7,-13.7 -17.9,-15.1 -0.3,-0.2 -1.3,-0.8 -1.5,-2 -0.2,-0.8 0.3,-1.2 0.4,-2 0.3,-2 -3,-4.2 -5.3,-5.2 -1.8,-0.8 -5.9,-2.6 -8.6,-0.5 -4.3,3.1 -1.5,12.6 0.5,13 0.5,0.3 1.3,-0.2 2,0.2 z" class="skin penis" id="XMLID_887_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Penis_2.tw
tw
mit
898
:: Art_Vector_Penis_3 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 210.3,392.5 c 0.7,0.5 0.8,1.9 0.8,2.1 0,4 7.6,17.9 14.7,24.6 21.1,20.4 41.9,25.7 39.8,16.4 -0.3,-1.4 1.8,-2.1 2,-3 2.7,-8.8 -10.5,-22 -25,-34.2 -12.3,-10.2 -12.5,-9.7 -15.4,-11.6 -0.4,-0.3 -1,-0.7 -1.2,-2 -0.2,-1.1 0.7,-2.2 0.8,-3.1 0.4,-3.2 -3.9,-5.5 -7.9,-7.6 -3.1,-1.6 -9.2,-3.5 -12.6,-0.8 -7.2,5.8 -1.6,21.3 1.6,19.6 0.6,-0.3 1.6,-1 2.4,-0.4 z" class="shadow" id="XMLID_884_"/><path d="m 210.2,392.5 c 0.8,0.6 0.8,2 0.8,2.1 0.1,2.7 6.8,16.4 20.3,28.1 10.1,8.8 29.6,21.2 36.2,15.6 1.2,-1 1.6,-2.3 1.9,-3.2 3,-9.8 -11.6,-22.4 -15.9,-26.2 -14,-12.2 -22.2,-19.3 -25.4,-21.3 -0.4,-0.3 -1.9,-1.2 -2.1,-2.7 -0.2,-1.2 0.4,-1.8 0.5,-2.7 0.4,-2.8 -4.3,-5.9 -7.6,-7.3 -2.6,-1.1 -8.3,-3.6 -12.2,-0.8 -6,4.4 -2.1,17.9 0.8,18.4 0.8,0.1 1.9,-0.7 2.7,0 z" class="skin penis" id="XMLID_885_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Penis_3.tw
tw
mit
912
:: Art_Vector_Penis_4 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 193.3,379.4 c 1,0.6 1,2.4 1,2.7 0,5.1 9.7,22.6 18.6,31.2 26.7,25.9 53,32.5 50.4,20.7 -0.4,-1.8 2.2,-2.8 2.6,-3.8 3.5,-11.1 -13.2,-27.9 -31.6,-43.3 -15.5,-12.9 -15.8,-12.3 -19.4,-14.6 -0.5,-0.4 -1.3,-0.9 -1.6,-2.6 -0.3,-1.3 0.9,-2.8 1,-3.9 0.6,-4 -4.9,-7 -10,-9.6 -3.9,-2 -11.7,-4.4 -16,-1 -9.2,7.3 -2,27 2,24.8 0.8,-0.4 2,-1.3 3,-0.6 z" class="shadow" id="XMLID_882_"/><path d="m 193.1,379.4 c 1.1,0.7 1.1,2.5 1.1,2.8 0.1,3.5 8.8,21.1 25.9,36 12.9,11.2 37.9,27.2 46.4,20.1 1.5,-1.3 2,-3 2.4,-4.2 3.8,-12.5 -14.8,-28.7 -20.4,-33.6 -18,-15.6 -28.5,-24.7 -32.5,-27.4 -0.5,-0.4 -2.4,-1.5 -2.8,-3.5 -0.3,-1.5 0.5,-2.3 0.7,-3.5 0.4,-3.5 -5.4,-7.5 -9.7,-9.3 -3.3,-1.4 -10.7,-4.6 -15.6,-1.1 -7.7,5.6 -2.8,22.8 1.1,23.5 0.9,0.4 2.3,-0.6 3.4,0.2 z" class="skin penis" id="XMLID_883_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Penis_4.tw
tw
mit
907
:: Art_Vector_Penis_5 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 176.6,366.1 c 1.2,0.8 1.2,2.9 1.2,3.2 0,6.2 11.8,27.5 22.6,38 32.5,31.5 64.6,39.6 61.4,25.2 -0.4,-2.2 2.7,-3.4 3.1,-4.7 4.2,-13.5 -16.1,-34 -38.6,-52.7 -18.8,-15.7 -19.3,-14.9 -23.6,-17.8 -0.6,-0.4 -1.6,-1.1 -1.9,-3.1 -0.3,-1.6 1.1,-3.5 1.2,-4.8 0.8,-4.9 -6,-8.6 -12.1,-11.7 -4.8,-2.4 -14.3,-5.3 -19.5,-1.2 -11.2,8.9 -2.4,32.9 2.5,30.2 1,-0.3 2.6,-1.4 3.7,-0.6 z" class="shadow" id="XMLID_880_"/><path d="m 176.4,366.1 c 1.3,0.9 1.3,3 1.3,3.4 0.1,4.2 10.7,25.7 31.6,43.9 15.7,13.6 46.1,33.1 56.5,24.5 1.8,-1.6 2.5,-3.7 2.9,-5.1 4.7,-15.3 -18.1,-35 -24.9,-40.9 -22,-19.1 -34.8,-30.1 -39.6,-33.4 -0.6,-0.4 -2.9,-1.8 -3.4,-4.2 -0.3,-1.8 0.6,-2.8 0.9,-4.2 0.5,-4.2 -6.6,-9.1 -11.8,-11.4 -4,-1.7 -13,-5.6 -19,-1.3 -9.4,6.8 -3.4,27.8 1.3,28.7 1.2,0.3 2.8,-0.9 4.2,0 z" class="skin penis" id="XMLID_881_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Penis_5.tw
tw
mit
931
:: Art_Vector_Penis_6 [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 157.7,353.4 c 1.4,0.9 1.4,3.5 1.4,3.9 0,7.5 14.3,33.3 27.4,46 39.3,38.2 78.2,48 74.4,30.6 -0.5,-2.6 3.3,-4.1 3.8,-5.6 5.1,-16.4 -19.5,-41.2 -46.7,-63.9 -22.8,-19 -23.3,-18.1 -28.6,-21.5 -0.8,-0.5 -2,-1.3 -2.4,-3.8 -0.4,-2 1.3,-4.2 1.4,-5.8 0.9,-5.9 -7.2,-10.4 -14.7,-14.2 -5.8,-2.9 -17.3,-6.4 -23.6,-1.4 -13.5,10.8 -2.9,39.9 3,36.6 1.3,-0.6 3.1,-1.9 4.6,-0.9 z" class="shadow" id="XMLID_878_"/><path d="m 157.4,353.4 c 1.6,1 1.6,3.7 1.6,4.1 0.1,5.1 13,31.1 38.3,53.1 19,16.5 55.9,40.1 68.5,29.6 2.2,-2 3,-4.5 3.5,-6.2 5.6,-18.5 -21.9,-42.4 -30.2,-49.6 -26.6,-23.1 -42.1,-36.5 -48,-40.4 -0.8,-0.5 -3.5,-2.2 -4.1,-5.1 -0.4,-2.2 0.8,-3.4 1,-5.1 0.7,-5.1 -8,-11 -14.3,-13.8 -4.9,-2.1 -15.7,-6.8 -23,-1.6 -11.4,8.3 -4.1,33.7 1.6,34.8 1.4,0.5 3.4,-1 5.1,0.2 z" class="skin penis" id="XMLID_879_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Penis_6.tw
tw
mit
923
:: Art_Vector_Pubic_Hair_Neat [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="M 487.94,432.27" class="hair" id="path225"/><path d="m 264.63236,432.7941 3.08824,-0.44117 c 0.32893,-6.46544 2.86908,-11.82526 5.07352,-17.35295 -5.56875,0.43615 -11.6036,0.4062 -16.47058,1.54412 2.07073,5.53315 5.0715,10.91128 8.30882,16.25 z" id="path5158" sodipodi:nodetypes="ccccc" class="hair"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Pubic_Hair_Neat.tw
tw
mit
439
:: Art_Vector_Pussy [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 266.1,434.3 c 3,13.5 5.9,25.9 9.3,33 -7.6,-8.5 -10.8,-18.9 -9.3,-33 z" class="labia" id="Vagina"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Pussy.tw
tw
mit
228
:: Art_Vector_Pussy_Tattoo [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path style="fill:none;stroke:none" d="m 247.43521,421.40369 c 11.48595,-7.47207 25.83395,-7.39381 43.33727,-0.45163" id="path4363" sodipodi:nodetypes="cc"/><text xml:space="preserve" id="text4365" sodipodi:linespacing="125%" style="font-size:12px;line-height:125%;text-align:center;text-anchor:middle" x="25.568281" y="0"><textPath xlink:href="#path4363" id="textPath4369" style="font-size:12px;text-align:center;text-anchor:middle">'+_art_pussy_tattoo_text+'</textPath></text></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Pussy_Tattoo.tw
tw
mit
604
:: Art_Vector_Shoes_Exterme_Heel [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 248.2,917.5 c -1.2,-9.6 -9.4,-40 1.5,-55.6 5.2,-5.3 2,-109.2 2,-109.2 l 33.1,2.2 c 0,0 -18.6,97.5 -17.9,105.9 2.8,0.4 10.7,8.4 11.9,15.9 -2.8,15.5 -3.1,61.9 -3.9,72 l -0.8,0 c -0.6,-11.2 1.1,-43.9 -1.2,-56.5 -3.4,16.4 -2.8,51.3 -8.4,57.1 -2.5,0.4 -3.2,1.6 -5.4,0.5 -7.8,-16 -10.9,-32.3 -10.9,-32.3 z" class="shoe" id="XMLID_488_"/><path d="m 320.6,865.6 c 0.5,-6.7 -11.3,-107.5 -10.7,-108.1 l 35,-1.6 -7.9,104.2 c 4.7,13.7 8.6,42.3 9.2,52.3 2.2,6.8 -2.8,24.1 -9.2,47 -2.4,3 -6.9,2.3 -10.1,0.4 -6.8,-19 -10.7,-40.8 -8.1,-47.6 -0.8,-14.1 0.1,-26.3 1.8,-46.6 z" class="shoe" id="XMLID_489_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Shoes_Exterme_Heel.tw
tw
mit
732
:: Art_Vector_Shoes_Exterme_Heel_Wide [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 248.2,917.5 c -1.2,-9.6 -9.4,-40 1.5,-55.6 5.2,-5.3 -2.7,-109.7 -2.7,-109.7 l 41.3,2 c 0,0 -18.7,98.1 -17.9,106.5 2.8,0.4 10.7,8.4 11.9,15.9 -2.8,15.5 -3.1,61.9 -3.9,72 l -0.8,0 c -0.6,-11.2 1.1,-43.9 -1.2,-56.5 -3.4,16.4 -2.8,51.3 -8.4,57.1 -2.5,0.4 -3.2,1.6 -5.4,0.5 -8,-15.9 -14.4,-32.2 -14.4,-32.2 z" class="shoe" id="XMLID_490_"/><path d="M 315.5,865.2 C 316,858.5 301.3,756.1 301.9,755.5 l 43.1,0.5 -8,104.1 c 4.7,13.7 8.6,42.3 9.2,52.3 2.2,6.8 -2.8,24.1 -9.2,47 -2.4,3 -12,1.9 -15.2,-0.1 -6.8,-19 -10.7,-40.8 -8.1,-47.6 -0.8,-14.1 0.1,-26.2 1.8,-46.5 z" class="shoe" id="XMLID_491_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Shoes_Exterme_Heel_Wide.tw
tw
mit
739
:: Art_Vector_Shoes_Pump [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path d="m 253.7,861.4 13.3,0 c 3.7,3.2 5.2,18.7 2.6,33.1 -0.4,1.8 -0.4,24.1 -0.4,36.9 l -3.1,0.1 c -0.6,-11.2 1.2,-24.3 -0.9,-36.9 -8.2,7.5 -6.7,40.4 -12.8,39.5 -6,0.1 -8.6,0.2 -12,-0.4 -10.4,-1.9 -13.6,-14 -15,-22.7 3.1,-5.4 4.4,-4.6 10.2,-10 7.1,-12.3 9.6,-22.4 18.1,-39.6 z" class="shoe" id="XMLID_482_"/><path d="m 253.7,861.4 c 7.9,-4 9.2,-0.3 13.3,0 -4.6,22.1 -4.7,36.3 -19.2,40.2 -4.5,1.2 -11.3,2.3 -12.2,-0.6 3.6,-9.7 14,-34.8 18.1,-39.6 z" class="skin" id="XMLID_483_"/><path d="m 317.5,860.8 15.6,0.1 c 4.7,13.7 8.6,42.3 9.2,52.3 4.6,4.1 4.9,8.5 -2.1,32 -2.4,3 -11.1,6 -20.4,0 -7.1,-18.7 -7.6,-24.5 -4.1,-31.5 -0.2,-7.4 -0.1,-10 -1.5,-19.5 -3.4,-15.5 1.9,-24.7 3.3,-33.4 z" class="shoe" id="XMLID_484_"/><path d="m 317.5,860.8 c 5.9,-4.5 10.8,-2.2 15.6,0.1 4.4,9 8.3,30.6 9.2,52.3 -8.7,-2.2 -19.1,-0.4 -22.8,-0.2 -2.8,-3.6 -2.7,-25.8 -2,-52.2 z" class="skin" id="XMLID_485_"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Shoes_Pump.tw
tw
mit
1,011
:: Art_Vector_Stump [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><path class="skin" d="m 226.3,412.5 c 31.3,-22.1 86.4,-32 124.3,-2.1 25.6,20.2 45.7,60.3 31.5,80.6 -10.7,15.2 -39.7,17.8 -60,10 -25.7,-9.9 -26.6,-32.4 -47.3,-34.5 -20,-2 -27.3,18.1 -48.4,14.8 -13.3,-2.1 -26.9,-12.7 -29.3,-25.3 -3.9,-20.2 22.1,-38.5 29.2,-43.5 z" id="path62"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Stump.tw
tw
mit
395
:: Art_Vector_Torso_Outfit_Shine [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#Filter_Shine_Blur)" d="m 343.38233,211.76475 c 7.68861,5.15453 13.5278,12.59965 19.26471,19.70588 0,0 -5.44118,-16.61764 -19.26471,-19.70588 z" id="path4902" sodipodi:nodetypes="ccc"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Torso_Outfit_Shine.tw
tw
mit
718
:: Art_Vector_Torso_Outfit_Shine_Hourglass [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-70-6" d="m 319.74252,375.06332 c 4.22284,7.09969 13.30704,21.13279 19.66871,31.59093 -12.96362,-6.10053 -18.5743,-22.88972 -19.66871,-31.59093 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Torso_Outfit_Shine_Hourglass.tw
tw
mit
807
:: Art_Vector_Torso_Outfit_Shine_Normal [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-70-1" d="m 332.13219,367.13946 c 1.41216,9.42307 -1.43557,29.939 7.27904,39.51479 -12.96362,-6.10053 -10.95321,-29.8094 -7.27904,-39.51479 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Torso_Outfit_Shine_Normal.tw
tw
mit
800
:: Art_Vector_Torso_Outfit_Shine_Shoulder [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#Filter_Shine_Blur)" d="m 343.38233,211.76475 c 7.68861,5.15453 13.5278,12.59965 19.26471,19.70588 0,0 -5.44118,-16.61764 -19.26471,-19.70588 z" id="path4902" sodipodi:nodetypes="ccc"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Torso_Outfit_Shine_Shoulder.tw
tw
mit
727
:: Art_Vector_Torso_Outfit_Shine_Unnatural [nobr] <<print '<html><svg viewBox="0 0 560 1000" class="'+_art_display_class+'"><defs id="defs4360"><filter style="color-interpolation-filters:sRGB" inkscape:label="Filter_Shine_Blur" id="Filter_Shine_Blur" width="4" x="-2" height="4" y="-2"><feGaussianBlur stdDeviation="1.5 1.5" result="blur" id="feGaussianBlur4091-3"/></filter></defs><path sodipodi:nodetypes="ccc" id="path4027-70" d="m 310.91899,377.12214 c 5.98755,6.51146 19.77763,19.95632 28.49224,29.53211 -12.96362,-6.10053 -25.92724,-20.24266 -28.49224,-29.53211 z" style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0;filter:url(#Filter_Shine_Blur)"/></svg></html>' >>
AshVaris/fc
src/art/vector/layers/Torso_Outfit_Shine_Unnatural.tw
tw
mit
806
:: Art_Vector_Revamped_Control_ [nobr] <<if ndef $seeVectorArtHighlights>> <<set $seeVectorArtHighlights = 1>> <</if>> <<set _artSlave to $args[0] >> <<if _art_display_id > 0 >> <<set _art_display_id += 1>> <<else>> <<set _art_display_id = 1>> <</if>> <<set _art_display_class = "ad"+_art_display_id >> /*Using JS from vectorRevampedArtControl.tw*/ <<set _revampedVectorArtControl to getVectorArtRevampedControl(_art_display_class, _artSlave, $seeVectorArtHighlights, $showBodyMods)>> <<print "<style>" + _revampedVectorArtControl.StylesCss + "</style>" >> <<set _revampedArtLayers to _revampedVectorArtControl.Layers>> <<set _art_transform = _revampedVectorArtControl.artTransform>> <<set _boob_right_art_transform = _revampedVectorArtControl.boobRightArtTransform>> <<set _boob_left_art_transform = _revampedVectorArtControl.boobLeftArtTransform>> <<set _boob_outfit_art_transform = _revampedVectorArtControl.boobOutfitArtTransform>> <<set _art_pussy_tattoo_text = _revampedVectorArtControl.pubicTattooText >> <<for _i to 0; _i lt _revampedArtLayers.length; _i++>> <<include _revampedArtLayers[_i]>> <</for>> <<unset _art_transform>>
AshVaris/fc
src/art/vector_revamp/Vector_Revamped_Control_.tw
tw
mit
1,148