read if gay
This commit is contained in:
parent
4f2631b349
commit
61eefcba8c
24 changed files with 21871 additions and 4224 deletions
|
@ -9,7 +9,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "still_milk",
|
||||
amount = 1000,
|
||||
amount = 0,
|
||||
},
|
||||
{
|
||||
name = "lava",
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
sfx = require("sfx")
|
||||
return
|
||||
parallel.waitForAll(
|
||||
function()
|
||||
while true do
|
||||
sleep(math.random(10, 100))
|
||||
if math.random(10) > 5 then
|
||||
sfx.fail()
|
||||
else
|
||||
sfx.success()
|
||||
end
|
||||
event = { os.pullEventRaw() }
|
||||
if event[1] == "terminate" then
|
||||
shell.exit()
|
||||
os.shutdown()
|
||||
end
|
||||
end
|
||||
end, function()
|
||||
term.setCursorPos(1, 1)
|
||||
shell.run("shell")
|
||||
end)
|
|
@ -16,6 +16,7 @@ melter_pos = vector.new(-4, 1, -3)
|
|||
casting_pos = vector.new(-2, 1, -4)
|
||||
washer_pos = vector.new(3, 0, -4)
|
||||
growth_chamber_pos = vector.new(-3, 2, 0)
|
||||
rolling_mill_pos = vector.new(-3,0,0)
|
||||
|
||||
function spout(extra_items)
|
||||
local fluid = extra_items[1]
|
||||
|
@ -346,8 +347,11 @@ function cast_ingot(source, product, yield)
|
|||
fluidInvAdd(fluid.name, -(ingot_count * 111))
|
||||
end
|
||||
|
||||
function rolling_mill()
|
||||
print("unimplemented :3")
|
||||
function rolling_mill(extra_items)
|
||||
goTo(rolling_mill_pos, "west")
|
||||
insertForward()
|
||||
sleep(1)
|
||||
takeForward(2)
|
||||
end
|
||||
|
||||
return {
|
||||
|
|
|
@ -409,15 +409,16 @@ craft tin_ingot
|
|||
|
||||
iron_wire
|
||||
yield 2
|
||||
base iron_sheet
|
||||
steps:
|
||||
rolling_mill iron_sheet
|
||||
rolling_mill
|
||||
|
||||
redstone_chip
|
||||
base electron_tube
|
||||
intermediate incomplete_redstone_chip
|
||||
repeat 12
|
||||
steps:
|
||||
spout molten_copper:41
|
||||
spout molten_copper:41.6
|
||||
deploy iron_wire
|
||||
press
|
||||
|
||||
|
@ -437,3 +438,23 @@ craft copper_casing copper_casing copper_casing copper_sheet water_bucket copper
|
|||
cobblestone
|
||||
steps:
|
||||
growth_chamber
|
||||
|
||||
sturdy_sheet
|
||||
base powdered_obsidian
|
||||
intermediate unprocessed_obsidian_sheet
|
||||
repeat 5
|
||||
steps:
|
||||
spout lava:50
|
||||
press
|
||||
press
|
||||
|
||||
precision_mechanism
|
||||
yield 0.8
|
||||
base golden_sheet
|
||||
intermediate incomplete_precision_mechanism
|
||||
repeat 6
|
||||
steps:
|
||||
deploy cogwheel
|
||||
deploy large_cogwheel
|
||||
deploy desh_nugget
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
casting
|
||||
-casting
|
||||
stock keeping
|
||||
multi-item crafting
|
||||
push items into existing stacks in chest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue