mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-11-14 14:20:29 +01:00
21 lines
444 B
Lua
21 lines
444 B
Lua
minetest.register_node("scifi_nodes:forcefield", {
|
|
description = "Forcefield",
|
|
sunlight_propagates = true,
|
|
drawtype = "glasslike",
|
|
groups = {
|
|
cracky = 1,
|
|
level = 3
|
|
},
|
|
sounds = scifi_nodes.node_sound_glass_defaults(),
|
|
paramtype = "light",
|
|
light_source = minetest.LIGHT_MAX,
|
|
tiles = {{
|
|
name = "scifi_nodes_forcefield.png",
|
|
animation = {
|
|
type = "vertical_frames",
|
|
aspect_w = 16,
|
|
aspect_h = 16,
|
|
length = 1.0,
|
|
}
|
|
}}
|
|
}) |