Installera Steam
logga in
|
språk
简体中文 (förenklad kinesiska)
繁體中文 (traditionell kinesiska)
日本語 (japanska)
한국어 (koreanska)
ไทย (thailändska)
Български (bulgariska)
Čeština (tjeckiska)
Dansk (danska)
Deutsch (tyska)
English (engelska)
Español – España (spanska – Spanien)
Español – Latinoamérica (spanska – Latinamerika)
Ελληνικά (grekiska)
Français (franska)
Italiano (italienska)
Bahasa Indonesia (indonesiska)
Magyar (ungerska)
Nederlands (nederländska)
Norsk (norska)
Polski (polska)
Português (portugisiska – Portugal)
Português – Brasil (portugisiska – Brasilien)
Română (rumänska)
Русский (ryska)
Suomi (finska)
Türkçe (turkiska)
Tiếng Việt (vietnamesiska)
Українська (ukrainska)
Rapportera problem med översättningen
<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>