2019-04-28 22:34:21 +03:00
|
|
|
--[[
|
|
|
|
|
|
|
|
TechAge
|
|
|
|
=======
|
|
|
|
|
|
|
|
Copyright (C) 2019 Joachim Stolberg
|
|
|
|
|
2020-10-19 20:09:17 +03:00
|
|
|
AGPL v3
|
2019-04-28 22:34:21 +03:00
|
|
|
See LICENSE.txt for more information
|
|
|
|
|
2020-07-17 21:00:10 +03:00
|
|
|
All items and liquids disappear.
|
2022-01-03 23:40:31 +03:00
|
|
|
|
2019-04-28 22:34:21 +03:00
|
|
|
]]--
|
|
|
|
|
2019-07-02 22:33:12 +03:00
|
|
|
local S = techage.S
|
2020-07-17 21:00:10 +03:00
|
|
|
local Pipe = techage.LiquidPipe
|
2021-07-24 12:26:13 +03:00
|
|
|
local liquid = networks.liquid
|
2020-07-17 21:00:10 +03:00
|
|
|
|
|
|
|
local function take_liquid(pos, indir, name, amount)
|
|
|
|
return 0, name
|
|
|
|
end
|
|
|
|
|
|
|
|
local function put_liquid(pos, indir, name, amount)
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
|
|
|
local function peek_liquid(pos, indir)
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
2019-04-28 22:34:21 +03:00
|
|
|
minetest.register_node("techage:blackhole", {
|
2019-09-26 23:32:37 +03:00
|
|
|
description = S("TechAge Black Hole"),
|
2019-04-28 22:34:21 +03:00
|
|
|
tiles = {
|
|
|
|
-- up, down, right, left, back, front
|
2019-04-28 22:51:26 +03:00
|
|
|
"techage_filling_ta2.png^techage_frame_ta2.png",
|
|
|
|
"techage_filling_ta2.png^techage_frame_ta2.png",
|
2020-07-17 21:00:10 +03:00
|
|
|
"techage_filling_ta2.png^techage_frame_ta2.png^techage_appl_blackhole.png^techage_appl_hole_pipe.png",
|
2019-04-28 22:51:26 +03:00
|
|
|
"techage_filling_ta2.png^techage_frame_ta2.png^techage_appl_blackhole.png^techage_appl_inp.png",
|
|
|
|
"techage_filling_ta2.png^techage_frame_ta2.png^techage_appl_blackhole.png",
|
|
|
|
"techage_filling_ta2.png^techage_frame_ta2.png^techage_appl_blackhole.png",
|
2019-04-28 22:34:21 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
after_place_node = function(pos, placer)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local node = minetest.get_node(pos)
|
|
|
|
meta:set_int("push_dir", techage.side_to_indir("L", node.param2))
|
2020-07-17 21:00:10 +03:00
|
|
|
meta:set_string("infotext", S("TechAge Black Hole (let items and liquids disappear)"))
|
|
|
|
Pipe:after_place_node(pos)
|
2019-04-28 22:34:21 +03:00
|
|
|
end,
|
2020-07-17 21:00:10 +03:00
|
|
|
after_dig_node = function(pos, oldnode)
|
|
|
|
Pipe:after_dig_node(pos)
|
|
|
|
end,
|
|
|
|
|
2019-04-28 22:34:21 +03:00
|
|
|
on_rotate = screwdriver.disallow,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
groups = {choppy=2, cracky=2, crumbly=2},
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "techage:blackhole",
|
|
|
|
recipe = {
|
2019-04-28 22:51:26 +03:00
|
|
|
{"group:wood", "", "group:wood"},
|
2020-07-17 21:00:10 +03:00
|
|
|
{"techage:tubeS", "default:coal_lump", "techage:ta3_pipeS"},
|
2019-04-28 22:51:26 +03:00
|
|
|
{"group:wood", "techage:iron_ingot", "group:wood"},
|
2019-04-28 22:34:21 +03:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2019-06-08 23:57:01 +03:00
|
|
|
techage.register_node({"techage:blackhole"}, {
|
2019-04-28 22:34:21 +03:00
|
|
|
on_pull_item = nil, -- not needed
|
|
|
|
on_unpull_item = nil, -- not needed
|
2022-01-03 23:40:31 +03:00
|
|
|
|
2019-04-28 22:34:21 +03:00
|
|
|
on_push_item = function(pos, in_dir, stack)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
if meta:get_int("push_dir") == in_dir then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end,
|
2020-07-17 21:00:10 +03:00
|
|
|
})
|
2019-07-02 22:33:12 +03:00
|
|
|
|
2021-07-24 12:26:13 +03:00
|
|
|
liquid.register_nodes({"techage:blackhole"},
|
|
|
|
Pipe, "tank", {"R"}, {
|
|
|
|
capa = 9999999,
|
|
|
|
peek = peek_liquid,
|
|
|
|
put = put_liquid,
|
|
|
|
take = take_liquid,
|
|
|
|
}
|
2022-01-04 21:40:27 +03:00
|
|
|
)
|