《模擬農場25》中有許多小夥伴覺得工廠的生產速度有點慢,下面是由“草重雨田1986”為大家帶來的《模擬農場25》工廠生產效率修改方法,希望可以幫助到大家。
文件路徑 \Farming Simulator 25\data\placeables\brandless
該目錄下有兩個文件夾 productionPointsGeneric 和 productionPointsSmall,分別對應大型工廠和小型工廠
以小型工廠穀物磨坊為例:
用記事本打開 \Farming Simulator 25\data\placeables\brandless\productionPointsSmall\grainFlourMill 目錄下的 grainFlourMill.xml
找到 <productionPoint> 節點,該節點配置了生產原料與產出的比例,以及生產週期和工資
例如小麥麵粉的配置:
<production id="flourWheat" name="%s %s" params="$l10n_fillType_wheat|$l10n_fillType_flour" cyclesPerHour="10.5" costsPerActiveHour="1">
<inputs>
<input fillType="WHEAT" amount="5" />
</inputs>
<outputs>
<output fillType="FLOUR" amount="4" />
</outputs>
</production>
<input fillType="WHEAT" amount="5" /> 表示每次生產消耗小麥5個
<output fillType="FLOUR" amount="4" /> 表示每次生產產出麵粉4個
cyclesPerHour="10.5" 代表以遊戲中的每小時生產執行10.5次,也就是每小時消耗5*10.5=52.5個小麥,生產出4*10.5=42個麵粉。
costsPerActiveHour="1" 表示每小時花費的工資為1