modified: init.lua
This commit is contained in:
parent
064dd52433
commit
e0560df2ee
17
init.lua
17
init.lua
@ -173,6 +173,15 @@ minetest.register_node("nssb:web_cone_down", {
|
|||||||
groups = {flammable=2, snappy=1, liquid=1},
|
groups = {flammable=2, snappy=1, liquid=1},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'nssb:marine_meselamp',
|
||||||
|
recipe = {
|
||||||
|
{'default:glass', 'bucket:bucket_water', 'default:glass'},
|
||||||
|
{'default:glass', 'default:mese_crystal', 'default:glass'},
|
||||||
|
{'default:glass', 'bucket:bucket_water', 'default:glass'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("nssb:web_cocoon", {
|
minetest.register_node("nssb:web_cocoon", {
|
||||||
description = "Web Cocoon",
|
description = "Web Cocoon",
|
||||||
tiles = {"web_cocoon.png"},
|
tiles = {"web_cocoon.png"},
|
||||||
@ -577,7 +586,7 @@ minetest.register_node("nssb:mornar", {
|
|||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
damage_per_second = 5,
|
damage_per_second = 5,
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("nssb:mornen", {
|
minetest.register_node("nssb:mornen", {
|
||||||
description = "Black Water",
|
description = "Black Water",
|
||||||
inventory_image = minetest.inventorycube("mornen.png"),
|
inventory_image = minetest.inventorycube("mornen.png"),
|
||||||
@ -657,7 +666,7 @@ minetest.register_abm({
|
|||||||
neighbors = {"air"},
|
neighbors = {"air"},
|
||||||
interval = 1.0,
|
interval = 1.0,
|
||||||
chance = 1,
|
chance = 1,
|
||||||
action =
|
action =
|
||||||
function (pos, node)
|
function (pos, node)
|
||||||
minetest.add_particlespawner({
|
minetest.add_particlespawner({
|
||||||
amount = 6,
|
amount = 6,
|
||||||
@ -677,7 +686,7 @@ minetest.register_abm({
|
|||||||
texture = "morparticle.png",
|
texture = "morparticle.png",
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
--nodes gen
|
--nodes gen
|
||||||
@ -746,4 +755,4 @@ minetest.register_ore({
|
|||||||
clust_size = 10,
|
clust_size = 10,
|
||||||
y_min = -30999,
|
y_min = -30999,
|
||||||
y_max = -30501,
|
y_max = -30501,
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user