Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Also included with the update are randomized debuff severity with sandbox options if you want to adjust it. Each period will be unique, sometimes you'll get severe cramps and become fatigued faster and have trouble sleeping. Other times it'll pass without an issue and everything in between.
Next thing I plan to work on are Moodles and PMS symptoms.
From:
local group = BodyLocations.getGroup("Human")
group:getOrCreateLocation("HygieneItem")
To:
local group = BodyLocations.getGroup("Human")
local bodyLocation = BodyLocation.new(group, "HygieneItem")
group:getAllLocations():add(bodyLocation)
local RandomClothingLocations = {
"HygieneItem",
}
local group = BodyLocations.getGroup("Human")
for _, location in ipairs(RandomClothingLocations) do
local bodyLocation = BodyLocation.new(group, location)
group:getAllLocations():add(bodyLocation)
end