1
0
mirror of https://github.com/D00Med/scifi_nodes.git synced 2024-11-15 14:50:28 +01:00
scifi_nodes/forcefield.lua
Buckaroo Banzai 10d818b2e1
add forcefield node (#75)
Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
2022-12-07 08:08:55 +01:00

20 lines
425 B
Lua

minetest.register_node("scifi_nodes:forcefield", {
description = "Forcefield",
sunlight_propagates = true,
drawtype = "glasslike",
groups = {},
paramtype = "light",
light_source = minetest.LIGHT_MAX,
diggable = false,
drop = '',
tiles = {{
name = "scifi_nodes_forcefield.png",
animation = {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 1.0,
}
}},
on_blast = function() end,
})