异星工厂 修改秘籍大全 背包物流电塔太阳能枪塔等
- 来源:3DM论坛—phantomyao
- 作者:wuyan
- 编辑:ChunTian
太阳能板和蓄电池
E:\333\Factorio\data\base\prototypes\entity\entities.lua
type = "solar-panel",
name = "solar-panel",
icon = "__base__/graphics/icons/solar-panel.png",
flags = {"placeable-neutral", "player-creation"},
minable = {hardness = 0.2, mining_time = 0.5, result = "solar-panel"},
max_health = 100,
corpse = "big-remnants",
collision_box = {{-1.4, -1.4}, {1.4, 1.4}},
selection_box = {{-1.5, -1.5}, {1.5, 1.5}},
energy_source =
{
type = "electric",
usage_priority = "primary-output"
},
picture =
{
filename = "__base__/graphics/entity/solar-panel/solar-panel.png",
priority = "high",
width = 104,
height = 96
},
production = "6000kW"
},
找下面这个文件
X:\Factorio\data\base\prototypes\entity\entities.lua
这里面有俩要改的,一个太阳能板一个蓄电池,就是建造的基础电池。太阳能只管发电不管存储到了晚上没法发电的时候如果再没有蒸汽机就会全面断电。
所以,先来第一个
太阳能板
搜索solar-panel
{
type = "solar-panel",
name = "solar-panel",
icon = "__base__/graphics/icons/solar-panel.png",
flags = {"placeable-neutral", "player-creation"},
minable = {hardness = 0.2, mining_time = 0.5, result = "solar-panel"},
max_health = 100,
corpse = "big-remnants",
collision_box = {{-1.4, -1.4}, {1.4, 1.4}},
selection_box = {{-1.5, -1.5}, {1.5, 1.5}},
energy_source =
{
type = "electric",
usage_priority = "primary-output"
},
picture =
{
filename = "__base__/graphics/entity/solar-panel/solar-panel.png",
priority = "high",
width = 104,
height = 96
},
production = "60kW"——》发电功率。为了足够大,单位改成MW,数字随意了,M单位比K单位天然大1000
},
然后是蓄电池,同样这个文件搜索basic-accumulator
type = "accumulator",
name = "basic-accumulator",
icon = "__base__/graphics/icons/basic-accumulator.png",
flags = {"placeable-neutral", "player-creation"},
minable = {hardness = 0.2, mining_time = 0.5, result = "basic-accumulator"},
max_health = 150,
corpse = "medium-remnants",
collision_box = {{-0.9, -0.9}, {0.9, 0.9}},
selection_box = {{-1, -1}, {1, 1}},
energy_source =
{
type = "electric",
buffer_capacity = "5MJ",——》电池容量,单位同样改成GJ,数字要比上面的太阳能板大点,不然意义不大了就
usage_priority = "terciary",
input_flow_limit = "300kW",——》最大充电功率,如果跟容量数字相同就是秒冲满,不过建议别那么大,改成MJ就差不多了
output_flow_limit = "300kW"——》最大放电功率(自动调整),最好不要超过放电功率,不然白天没法充电到了晚上一样抓瞎,单位同样改成MJ
},
科技消耗瓶子数量修改
一、采矿机
Factorio\data\base\prototypes\entity\demo-mining-drill.lua 采矿机文件
两种钻头 第一个basic-mining-drill是用电钻头,name = "burner-mining-drill"火钻头,烧煤的那种。
max_health = 100, 生命值
mining_speed = 采矿速度 数值越高采矿速度越快
energy_usage = 数值越小采矿耗费的能源越少
resource_searching_radius = 采矿范围 数值越大采矿范围越大
二、石头熔炉
Factorio\data\base\prototypes\entity\demo-entities.lua
name = "stone-furnace" 石头熔炉
smelting_energy_consumption = 功率 数值越小消耗燃料越少
smelting_speed = 熔炼速度 数值越大速度越快
三、升级少用药瓶方法
Factorio\data\base\prototypes\technology\technology.lua 为升级科技所需药瓶
将所有count 数量,修改为1 则所有升级所需药瓶数量为1
需新建异星工厂游戏,不支持存档。
点击进入3DMGAME《异星工厂》游戏论坛专区
玩家点评 (0人参与,0条评论)
热门评论
全部评论