New textures and nodes
This commit is contained in:
parent
68354255f4
commit
dd3b361a05
@ -305,7 +305,7 @@ minetest.register_abm({
|
|||||||
maxsize = 1.4,
|
maxsize = 1.4,
|
||||||
collisiondetection = false,
|
collisiondetection = false,
|
||||||
vertical = true,
|
vertical = true,
|
||||||
texture = "morparticle.png",
|
texture = "earth_particle.png",
|
||||||
})
|
})
|
||||||
for _,obj in ipairs(minetest.get_objects_inside_radius(pos, 1)) do
|
for _,obj in ipairs(minetest.get_objects_inside_radius(pos, 1)) do
|
||||||
if obj:is_player() then
|
if obj:is_player() then
|
||||||
|
23
nodes.lua
23
nodes.lua
@ -57,6 +57,16 @@ minetest.register_node("nssb:marine_meselamp", {
|
|||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("nssb:morlamp", {
|
||||||
|
description = "Morlamp",
|
||||||
|
tiles = {"morlamp.png"},
|
||||||
|
is_ground_content = false,
|
||||||
|
groups = {cracky=3},
|
||||||
|
drop = "",
|
||||||
|
light_source = 15,
|
||||||
|
sounds = default.node_sound_glass_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("nssb:mantis_clay", {
|
minetest.register_node("nssb:mantis_clay", {
|
||||||
description = "Mantis Clay",
|
description = "Mantis Clay",
|
||||||
tiles = {"mantis_clay.png"},
|
tiles = {"mantis_clay.png"},
|
||||||
@ -622,11 +632,11 @@ minetest.register_node("nssb:portal", {
|
|||||||
|
|
||||||
minetest.register_node("nssb:portalhome", {
|
minetest.register_node("nssb:portalhome", {
|
||||||
description = "Home Portal",
|
description = "Home Portal",
|
||||||
inventory_image = minetest.inventorycube("mornen.png"),
|
inventory_image = minetest.inventorycube("portalhome.png"),
|
||||||
drawtype = "liquid",
|
drawtype = "liquid",
|
||||||
tiles = {
|
tiles = {
|
||||||
{
|
{
|
||||||
name = "mornen_animated.png",
|
name = "portalhome_animated.png",
|
||||||
animation = {type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 2.0},
|
animation = {type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 2.0},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -682,7 +692,7 @@ minetest.register_node("nssb:life_energy_ore", {
|
|||||||
description = "Life Energy Ore",
|
description = "Life Energy Ore",
|
||||||
tiles = {"morentir.png^life_energy_ore.png"},
|
tiles = {"morentir.png^life_energy_ore.png"},
|
||||||
groups = {cracky = 1},
|
groups = {cracky = 1},
|
||||||
light_source = 3,
|
light_source = 4,
|
||||||
drop = 'nssm:energy_globe',
|
drop = 'nssm:energy_globe',
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
@ -703,3 +713,10 @@ minetest.register_craftitem("nssb:moranga_ingot", {
|
|||||||
description = "Moranga Ingot",
|
description = "Moranga Ingot",
|
||||||
image = "moranga_ingot.png",
|
image = "moranga_ingot.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_node("nssb:morvalar_egg", {
|
||||||
|
description = "Morvalar Egg",
|
||||||
|
tiles = {"morvalar_egg.png"},
|
||||||
|
light_source = 13,
|
||||||
|
})
|
BIN
textures/earth_particle.png
Normal file
BIN
textures/earth_particle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 846 B |
BIN
textures/morlamp.png
Normal file
BIN
textures/morlamp.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 464 B |
BIN
textures/morvalar_egg.png
Normal file
BIN
textures/morvalar_egg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 515 B |
BIN
textures/portalhome.png
Normal file
BIN
textures/portalhome.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 537 B |
BIN
textures/portalhome_animated.png
Normal file
BIN
textures/portalhome_animated.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
Loading…
x
Reference in New Issue
Block a user