33 lines
587 B
Lua
33 lines
587 B
Lua
|
--[[
|
||
|
|
||
|
TechAge
|
||
|
=======
|
||
|
|
||
|
Copyright (C) 2019 Joachim Stolberg
|
||
|
|
||
|
GPL v3
|
||
|
See LICENSE.txt for more information
|
||
|
|
||
|
TA4 Reactor
|
||
|
|
||
|
]]--
|
||
|
|
||
|
local S = techage.S
|
||
|
|
||
|
minetest.register_node("techage:ta4_reactor", {
|
||
|
description = S("TA4 Reactor"),
|
||
|
tiles = {"techage_reactor_side.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},
|
||
|
},
|
||
|
|
||
|
paramtype2 = "facedir",
|
||
|
on_rotate = screwdriver.disallow,
|
||
|
groups = {cracky=2},
|
||
|
is_ground_content = false,
|
||
|
sounds = default.node_sound_stone_defaults(),
|
||
|
})
|