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
<count>10</count>
Should read:
<count>1</count>
Entire entry:
<RecipeDef ParentName="RecipeSyntheticOrgan">
<defName>CreateSyntheticLiver</defName>
<label>Create synthetic liver</label>
<description>Creates a synthetic liver from hyperweave, advanced components and their surrogate counterpart and advanced components.</description>
<jobString>Creating synthetic organ.</jobString>
<ingredients>
<li>
<filter>
<thingDefs>
<li>SurrogateLiver</li>
</thingDefs>
</filter>
<count>10</count>
</li>
<li>
<filter>
<thingDefs>
<li>Hyperweave</li>
</thingDefs>
</filter>
<count>10</count>
</li>
<li>
<filter>
<thingDefs>
<li>AdvancedComponents</li>
</thingDefs>
</filter>
<count>1</count>
</li>
</ingredients>
<fixedIngredientFilter>
<thingDefs>
<li>SurrogateLiver</li>
<li>Hyperweave</li>
<li>AdvancedComponents</li>
</thingDefs>
</fixedIngredientFilter>
<products>
<SyntheticLiver>1</SyntheticLiver>
</products>
</RecipeDef>
Fix:
<RecipeDef ParentName="RecipeSyntheticOrgan">
<defName>CreateSyntheticLiver</defName>
<label>Create synthetic liver</label>
<description>Creates a synthetic liver from hyperweave, advanced components and their surrogate counterpart and advanced components.</description>
<jobString>Creating synthetic organ.</jobString>
<ingredients>
<li>
<filter>
<thingDefs>
<li>SurrogateLiver</li>
</thingDefs>
</filter>
<count>1</count>
</li>
<li>
<filter>
<thingDefs>
<li>Hyperweave</li>
</thingDefs>
</filter>
<count>10</count>
</li>
<li>
<filter>
<thingDefs>
<li>AdvancedComponents</li>
</thingDefs>
</filter>
<count>1</count>
</li>
</ingredients>
<fixedIngredientFilter>
<thingDefs>
<li>SurrogateLiver</li>
<li>Hyperweave</li>
<li>AdvancedComponents</li>
</thingDefs>
</fixedIngredientFilter>
<products>
<SyntheticLiver>1</SyntheticLiver>
</products>
</RecipeDef>