页面已锁定 本页面目前正被其他用户编辑。您要等到该用户完成编辑或锁定因过期而自动解除后才能编辑。 目前已被下列人员锁定: 3.15.137.86预计锁定解除于: 2024/12/05 02:47 (0 min) 本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。 ====== 孢子荚 ====== {{:items:spore-pod.png?direct|}}\\ 中文名:孢子荚\\ 英文名:Spore Pod ===== 介绍 ===== 用于转化成石油、 爆炸混合物或作为燃料。 ==== 属性 ==== ^ 属性 ^ 数值 ^ |爆炸性|0%| |燃烧性|115%| |放射性|0%| |放电性|0%| |硬度|0| |建造时间花费|1| |建筑血量系数|0| |天然存在|否| |逻辑键值|@spore-pod| ==== 产出此物品的建筑 ==== {{:blocks:crafting:spore-press.png?direct|}}[[:blocks:crafting:spore-press|孢子压缩机]] ==== Script ==== <code java> sporePress = new GenericCrafter("spore-press"){{ requirements(Category.crafting, with(Items.lead, 35, Items.silicon, 30)); liquidCapacity = 60f; craftTime = 20f; outputLiquid = new LiquidStack(Liquids.oil, 18f / 60f); size = 2; health = 320; hasLiquids = true; hasPower = true; craftEffect = Fx.none; drawer = new DrawMulti( new DrawRegion("-bottom"), new DrawPistons(){{ sinMag = 1f; }}, new DrawDefault(), new DrawLiquidRegion(), new DrawRegion("-top") ); consumeItem(Items.sporePod, 1); consumePower(0.7f); }}; </code>