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
"Water" = Water quantity of the bucket in liters, max is 30.
"Sugar" = Number of sugar added in the bucket
sugarWineRatio = clamp("Water" / "Sugar", 5, 30)
num1 = "Sugar" * ("Time" / 1000)
num2 = clamp(num1 / "Water", 0, 0.14)
num3 = (num2 / sugarWineRatio) * 5
"Alcohol" = clamp(num3 - "Vinegar", 0, 0.14)
The kilju buyer will pay max price with an "Alcohol" value higher than 0.12, subpar price at higher than 0.07, and nothing if it's below that. (If not taking account the conditions for yeast and vinegar)
Every frame, the bucket will wait for sugar, yeast and water to be inserted in it. Then, 61 seconds later, the bubbling starts.
Every x seconds the "Time" value (which starts at 61) is incremented by 1 and the bucket will make bubble sounds, and once it reaches 680, the bubbling will stop, indicating that the kilju has finished brewing.
The x value is calculated every bubbling with this formula: ("Time" / 340) * 12
If on the next bubbling, the lid is not on, every frame the "Vinegar" value is added by 0.0004/sec until the lid is added back on.
anyway, thank you kindly! my curiosity is satisfied
one question I have (if you have an answer ofc) is: is there any indication that the racing carburetors have any effect on part wear? there's a lot of hearsay that they make the engine wear out faster but I can't find any actual source on that, so I'm wondering if it's just hearsay that's been accepted as gospel (like the widely accepted belief that cigarette addiction is just a permanent thing that happens after an arbitrary amount). I'll probably poke at it myself with some debugging tools installed, but I figured it couldn't hurt to check if you already had an idea. no pressure either way of course ^^;;