當(dāng)前位置:首頁(yè) > 活動(dòng)新聞
《模擬農(nóng)場(chǎng)25(Farming Simulator 25)》中的模擬工廠生產(chǎn)效率是游戲里非常重要的屬性,而工廠生產(chǎn)效率想要修改的農(nóng)場(chǎng)話可以先去找文件\Farming Simulator 25\data\placeables\brandless。
文件路徑 \Farming Simulator 25\data\placeables\brandless
該目錄下有兩個(gè)文件夾 productionPointsGeneric 和 productionPointsSmall,工廠分別對(duì)應(yīng)大型工廠和小型工廠
以小型工廠谷物磨坊為例:
用記事本打開(kāi) \Farming Simulator 25\data\placeables\brandless\productionPointsSmall\grainFlourMill 目錄下的生產(chǎn) grainFlourMill.xml
找到 <productionPoint> 節(jié)點(diǎn),該節(jié)點(diǎn)配置了生產(chǎn)原料與產(chǎn)出的效率修改比例,以及生產(chǎn)周期和工資
例如小麥面粉的介紹配置:
<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" /> 表示每次生產(chǎn)消耗小麥5個(gè)
<output fillType="FLOUR" amount="4" /> 表示每次生產(chǎn)產(chǎn)出面粉4個(gè)
cyclesPerHour="10.5" 代表以游戲中的每小時(shí)生產(chǎn)執(zhí)行10.5次,也就是模擬每小時(shí)消耗5*10.5=52.5個(gè)小麥,生產(chǎn)出4*10.5=42個(gè)面粉。農(nóng)場(chǎng)
costsPerActiveHour="1" 表示每小時(shí)花費(fèi)的工廠工資為1
相關(guān)攻略:《模擬農(nóng)場(chǎng)25》生產(chǎn)鏈關(guān)系介紹