techage/coal_power_station/boiler_base.lua

68 lines
1.4 KiB
Lua
Raw Normal View History

2019-05-05 13:29:00 -07:00
--[[
TechAge
=======
Copyright (C) 2019 Joachim Stolberg
GPL v3
2019-05-05 13:29:00 -07:00
See LICENSE.txt for more information
TA3 Coal Power Station Boiler Base
]]--
-- for lazy programmers
local M = minetest.get_meta
local S = techage.S
2019-05-05 13:29:00 -07:00
local Pipe = techage.SteamPipe
minetest.register_node("techage:coalboiler_base", {
description = S("TA3 Boiler Base"),
2019-05-05 13:29:00 -07:00
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},
},
2019-05-21 07:37:05 -07:00
on_construct = tubelib2.init_mem,
2019-05-05 13:29:00 -07:00
2019-11-04 13:53:04 -08:00
paramtype = "light",
2019-05-05 13:29:00 -07:00
paramtype2 = "facedir",
on_rotate = screwdriver.disallow,
groups = {cracky=2},
is_ground_content = false,
sounds = default.node_sound_stone_defaults(),
})
2019-05-21 07:37:05 -07:00
techage.power.register_node({"techage:coalboiler_base"}, {
conn_sides = {"F"},
power_network = Pipe,
})
2019-05-05 13:29:00 -07:00
2019-06-08 13:57:01 -07:00
-- 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
2019-06-16 12:06:16 -07:00
elseif topic == "running" then
return true
2019-06-08 13:57:01 -07:00
end
end
})
2019-05-05 13:29:00 -07:00
minetest.register_craft({
output = "techage:coalboiler_base",
recipe = {
{"default:stone", "", "default:stone"},
{"techage:iron_ingot", "", "techage:iron_ingot"},
{"default:stone", "default:stone", "default:stone"},
},
})