AE三水晶增产.json 蓝图主封面
Building Gadgets
版本 1
公开
原创

AE三水晶增产.json

更新于

游戏版本

Java 版本未知
advanced_aeappfluxcookingforblockheadsextendedaefunctionalstorageironfurnaces

描述内容

蓝图说明

-- 每 1 游戏刻执行一次,处理能量相关操作
-- 从顶部输入 Forge 能量,从底面输出到 "机器" 处
--耗电大户 请保障电力充足
every 1 ticks do
    input fe::from "能量" top side
    output fe::to "机器" bottom side
end

-- 每 20 游戏刻执行一次,处理水相关操作
-- 从顶部输入水,从顶部输出到 "机器"  处
every 20 ticks do
    input fluid::from "水"  top side
    output fluid::to "机器"  top side
end

-- 粉碎三大水晶  粉碎机-1(赛特斯粉)  粉碎机-2(福鲁伊克斯粉)  粉碎机-3(恩特罗粉)
every 20 ticks do

    input from "抽屉" top side
    output retain 27 certus_quartz_crystal to each "粉碎机-1"  top side
    output retain 27 fluix_crystal to each "粉碎机-2"  top side
    output retain 27 entro_crystal to each "粉碎机-3"  top side
forget
    input from "粉碎机-1","粉碎机-2","粉碎机-3" top side
    output to out top side
end

--反应仓制作四大水晶 
every 20 ticks do
    input from "抽屉" top side
    output retain 64 certus_quartz_crystal to each "反应仓-充能赛" top side
    output retain 64 certus_quartz_dust to each "反应仓-赛特斯" top side
    output retain 64 charged_certus_quartz_crystal to each "反应仓-赛特斯" top side
    output retain 64 fluix_dust to each "反应仓-福鲁伊" top side
    output retain 64 charged_certus_quartz_crystal to each "反应仓-福鲁伊" top side
    output retain 64 fluix_crystal to each "反应仓-恩特罗" top side
    output retain 64 extendedae:entro_dust to each "反应仓-恩特罗" top side
forget
    input from "反应仓-充能赛","反应仓-赛特斯","反应仓-福鲁伊","反应仓-恩特罗" top side
    output to "抽屉" top side
end

-- 顺便制作硅 (赛特斯粉烧炼) 其他方式请删除以下
every 20 ticks do
    input retain 8192 ae2:certus_quartz_dust from "抽屉" top side
    output  to "熔炉" top side
forget
    input from "熔炉" top side
    output to "抽屉" top side
end

公开交流

蓝图讨论

1 条公开评论按发布时间从新到旧排列
  1. - 子寒的评论

    蓝图作者

    每 1 游戏刻执行一次,处理能量相关操作 从北面输入 Forge 能量,从顶部输出到 A 处 every 1 ticks do input fe::from power top side output fe::to A bottom side

    end

    每 20 游戏刻执行一次,处理水相关操作 从顶部输入水,从顶部输出到 A 处 every 20 ticks do input fluid::from water top side output fluid::to A top side end

    every 20 ticks do

    input from "in" top side output retain 27 certusquartzcrystal to each fs1 top side output retain 27 fluixcrystal to each fs2 top side output retain 27 entrocrystal to each fs3 top s