add welcome blocks v2
This commit is contained in:
parent
fd6ae0f46b
commit
fa46c028fa
64
nodes.lua
64
nodes.lua
@ -174,3 +174,67 @@ minetest.register_node("illuna:welcome_block_de_4", {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("illuna:welcome_block_v2_1", {
|
||||||
|
description = "Welcome Block v2 1",
|
||||||
|
tiles = {"welcome_block_v2_1.png"},
|
||||||
|
groups = {unbreakable = 1},
|
||||||
|
sounds = default.node_sound_dirt_defaults({
|
||||||
|
footstep = {name="default_gravel_footstep", gain=0.5},
|
||||||
|
dug = {name="default_gravel_footstep", gain=1.0},
|
||||||
|
}),
|
||||||
|
drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {
|
||||||
|
{items = {'illuna:welcome_block_v2_1'}}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("illuna:welcome_block_v2_2", {
|
||||||
|
description = "Welcome Block v2 2",
|
||||||
|
tiles = {"welcome_block_v2_2.png"},
|
||||||
|
groups = {unbreakable = 1},
|
||||||
|
sounds = default.node_sound_dirt_defaults({
|
||||||
|
footstep = {name="default_gravel_footstep", gain=0.5},
|
||||||
|
dug = {name="default_gravel_footstep", gain=1.0},
|
||||||
|
}),
|
||||||
|
drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {
|
||||||
|
{items = {'illuna:welcome_block_v2_2'}}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("illuna:welcome_block_v2_3", {
|
||||||
|
description = "Welcome Block v2 3",
|
||||||
|
tiles = {"welcome_block_v2_3.png"},
|
||||||
|
groups = {unbreakable = 1},
|
||||||
|
sounds = default.node_sound_dirt_defaults({
|
||||||
|
footstep = {name="default_gravel_footstep", gain=0.5},
|
||||||
|
dug = {name="default_gravel_footstep", gain=1.0},
|
||||||
|
}),
|
||||||
|
drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {
|
||||||
|
{items = {'illuna:welcome_block_v2_3'}}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("illuna:welcome_block_v2_4", {
|
||||||
|
description = "Welcome Block v2 4",
|
||||||
|
tiles = {"welcome_block_v2_4.png"},
|
||||||
|
groups = {unbreakable = 1},
|
||||||
|
sounds = default.node_sound_dirt_defaults({
|
||||||
|
footstep = {name="default_gravel_footstep", gain=0.5},
|
||||||
|
dug = {name="default_gravel_footstep", gain=1.0},
|
||||||
|
}),
|
||||||
|
drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {
|
||||||
|
{items = {'illuna:welcome_block_v2_4'}}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
BIN
textures/welcome_block_v2_1.png
Normal file
BIN
textures/welcome_block_v2_1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
BIN
textures/welcome_block_v2_2.png
Normal file
BIN
textures/welcome_block_v2_2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
BIN
textures/welcome_block_v2_3.png
Normal file
BIN
textures/welcome_block_v2_3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
textures/welcome_block_v2_4.png
Normal file
BIN
textures/welcome_block_v2_4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
textures/xcf/welcome_block_v2_full.xcf
Normal file
BIN
textures/xcf/welcome_block_v2_full.xcf
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user