mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-11-15 14:50:28 +01:00
10d818b2e1
Co-authored-by: BuckarooBanzay <BuckarooBanzay@users.noreply.github.com>
20 lines
425 B
Lua
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,
|
|
}) |