67 lines
1.3 KiB
Lua
67 lines
1.3 KiB
Lua
--[[
|
|
|
|
TechAge
|
|
=======
|
|
|
|
Copyright (C) 2019 Joachim Stolberg
|
|
|
|
GPL v3
|
|
See LICENSE.txt for more information
|
|
|
|
TA3 Coal Power Station Boiler Base
|
|
|
|
]]--
|
|
|
|
-- for lazy programmers
|
|
local M = minetest.get_meta
|
|
local S = techage.S
|
|
|
|
local Pipe = techage.SteamPipe
|
|
|
|
minetest.register_node("techage:coalboiler_base", {
|
|
description = S("TA3 Boiler Base"),
|
|
tiles = {"techage_coal_boiler_mesh_base.png"},
|
|
drawtype = "mesh",
|
|
mesh = "techage_boiler_large.obj",
|
|
selection_box = {
|
|
type = "fixed",
|
|
fixed = {-13/32, -16/32, -13/32, 13/32, 16/32, 13/32},
|
|
},
|
|
|
|
on_construct = tubelib2.init_mem,
|
|
|
|
paramtype2 = "facedir",
|
|
on_rotate = screwdriver.disallow,
|
|
groups = {cracky=2},
|
|
is_ground_content = false,
|
|
sounds = default.node_sound_stone_defaults(),
|
|
})
|
|
|
|
techage.power.register_node({"techage:coalboiler_base"}, {
|
|
conn_sides = {"F"},
|
|
power_network = Pipe,
|
|
})
|
|
|
|
-- for logical communication
|
|
techage.register_node({"techage:coalboiler_base"}, {
|
|
on_transfer = function(pos, in_dir, topic, payload)
|
|
if topic == "start" then
|
|
return true
|
|
elseif topic == "stop" then
|
|
return true
|
|
elseif topic == "running" then
|
|
return true
|
|
end
|
|
end
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "techage:coalboiler_base",
|
|
recipe = {
|
|
{"default:stone", "", "default:stone"},
|
|
{"techage:iron_ingot", "", "techage:iron_ingot"},
|
|
{"default:stone", "default:stone", "default:stone"},
|
|
},
|
|
})
|
|
|