Miglioramenti e aggiunte alle produzioni agricole

- Aggiunto `sellDirectly="true"` agli output `METHANE` per vendita diretta.
- Rinominata `sugarcaneEnergy` e aggiornati cicli/costi per ora.
- Aggiunta nuova produzione `strawMethane` per metano da paglia e acqua.
- Rinominati `waterPump`, `seeds` e `silageAdditivePlant` per localizzazione.
- Corretto input `STONES` in `STONE` nella produzione `lime`.
- Modificati input di `solidFertilizerPlant` per riflettere un processo più realistico.
This commit is contained in:
2025-10-14 18:17:38 +02:00
parent c7e973953a
commit d40eec4c89

View File

@@ -97,7 +97,7 @@
</inputs>
<outputs>
<output fillType="ELECTRICCHARGE" amount="1" sellDirectly="true"/>
<output fillType="METHANE" amount="5884" />
<output fillType="METHANE" amount="5884" sellDirectly="true" />
<output fillType="DIGESTATE" amount="2545" />
</outputs>
</production>
@@ -108,12 +108,12 @@
</inputs>
<outputs>
<output fillType="ELECTRICCHARGE" amount="1" sellDirectly="true"/>
<output fillType="METHANE" amount="5884"/>
<output fillType="METHANE" amount="5884" sellDirectly="true"/>
<output fillType="DIGESTATE" amount="2545" />
</outputs>
</production>
<!-- In sostituzione all'impianto biogas, partendo direttamente dalla canna da zucchero. Riflette le proporzioni reali partendo dal calcolo base dell'insilato del biogas del gioco-->
<production id="sugarcaneEnergy" name="Sugarcane Fiber Energy" cyclesPerHour="150" costsPerActiveHour="400">
<production id="sugarcaneEnergy" name="$l10n_fillType_sugarcane" cyclesPerHour="1500" costsPerActiveHour="4000">
<inputs>
<input fillType="SUGARCANE" amount="450" />
</inputs>
@@ -121,6 +121,18 @@
<output fillType="ELECTRICCHARGE" amount="150" sellDirectly="true"/>
</outputs>
</production>
<!-- La paglia viene fatta fermentare grazie all'aggiunta di acqua in modo da produrre metano ed energia-->
<production id="strawMethane" name="Straw Methane Plant" cyclesPerHour="50" costsPerActiveHour="80">
<inputs>
<input fillType="STRAW" amount="100" />
<input fillType="WATER" amount="40" />
</inputs>
<outputs>
<output fillType="ELECTRICCHARGE" amount="1" sellDirectly="true"/>
<output fillType="METHANE" amount="80" sellDirectly="true"/>
<output fillType="DIGESTATE" amount="50"/>
</outputs>
</production>
<!-- Pompa l'acqua dal sottosuolo tipo pozzo -->
<production id="woodchipspower" name="$l10n_fillType_woodChips" cyclesPerHour="1000" costsPerActiveHour="250">
<inputs>
@@ -131,7 +143,7 @@
</outputs>
</production>
<!-- Pompa l'acqua dal sottosuolo tipo pozzo -->
<production id="waterPump" name="Water Pump" cyclesPerHour="10000" costsPerActiveHour="100">
<production id="waterPump" name="$l10n_fillType_water" cyclesPerHour="10000" costsPerActiveHour="100">
<inputs>
<input fillType="DIESEL" amount="2" />
</inputs>
@@ -149,7 +161,7 @@
</outputs>
</production>
<!-- Semi, partendo dal frumento (tanto è un seme per tutti) -->
<production id="seeds" name="Seed Production Plant" cyclesPerHour="100" costsPerActiveHour="600">
<production id="seeds" name="$l10n_fillType_wheat" cyclesPerHour="100" costsPerActiveHour="600">
<inputs>
<input fillType="WHEAT" amount="100" />
<input fillType="WATER" amount="5" />
@@ -159,7 +171,7 @@
</outputs>
</production>
<!-- Additivo per insilato, migliora il rendimento quindi come se fosse un fertilizzante -->
<production id="silageAdditivePlant" name="Silage Additive Plant" cyclesPerHour="500" costsPerActiveHour="350">
<production id="silageAdditivePlant" name="$l10n_fillType_silageadditive" cyclesPerHour="500" costsPerActiveHour="350">
<inputs>
<input fillType="POTATO" amount="40" />
<input fillType="WATER" amount="5" />
@@ -171,7 +183,7 @@
<!-- Praticamente basta tritare le pietre, serve un pochino d'acqua per "raffreddare i macchinari e diesel per farli funzionare" -->
<production id="lime" name="Lime Production Plant" cyclesPerHour="50" costsPerActiveHour="800">
<inputs>
<input fillType="STONES" amount="200" />
<input fillType="STONE" amount="200" />
<input fillType="DIESEL" amount="5" />
</inputs>
<outputs>
@@ -181,8 +193,8 @@
<!-- Migliora il rendimento come il digestato, e il lime per "addensare". L'acqua serve sempre -->
<production id="solidFertilizerPlant" name="Solid Fertilizer Plant" cyclesPerHour="200" costsPerActiveHour="1200">
<inputs>
<input fillType="METHANE" amount="150" />
<input fillType="WATER" amount="20" />
<input fillType="DIGESTATE" amount="180" />
<input fillType="LIME" amount="30" />
</inputs>
<outputs>
<output fillType="FERTILIZER" amount="180" />