在《模拟农场25》中,工厂生产效率的提升是许多玩家的关注焦点。下面是一份由草重雨田1986分享的攻略,教您如何通过修改游戏文件来提高工厂生产效率。通过调整生产周期、原料消耗和产出比例,您可以显著提升如谷物磨坊等工厂的运作速度。
文件路径\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。