版本 1
公开
原创AE三水晶增产.json
游戏版本
Java 版本未知advanced_aeappfluxcookingforblockheadsextendedaefunctionalstorageironfurnaces- 14浏览
- 2下载
- 0点赞
- 11收藏
蓝图预览封面
静态效果图不会启动本机解析
描述内容
蓝图说明
-- 每 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 游戏刻执行一次,处理能量相关操作 从北面输入 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