added welcome_blocks

This commit is contained in:
tchncs 2016-04-20 19:48:32 +02:00
parent 299a9fb936
commit b41e934544
20 changed files with 160 additions and 0 deletions

160
nodes.lua
View File

@ -14,3 +14,163 @@ minetest.register_node("illuna:desert_gravel", {
}
}
})
minetest.register_node("illuna:welcome_block_en_1", {
description = "Welcome Block [en] 1",
tiles = {"welcome_block_en_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_en_1'}}
}
}
})
minetest.register_node("illuna:welcome_block_en_2", {
description = "Welcome Block [en] 2",
tiles = {"welcome_block_en_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_en_2'}}
}
}
})
minetest.register_node("illuna:welcome_block_en_3", {
description = "Welcome Block [en] 3",
tiles = {"welcome_block_en_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_en_3'}}
}
}
})
minetest.register_node("illuna:welcome_block_en_3a", {
description = "Welcome Block [en] 3a",
tiles = {"welcome_block_en_3a.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_en_3a'}}
}
}
})
minetest.register_node("illuna:welcome_block_en_3b", {
description = "Welcome Block [en] 3b",
tiles = {"welcome_block_en_3b.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_en_3b'}}
}
}
})
minetest.register_node("illuna:welcome_block_en_4", {
description = "Welcome Block [en] 4",
tiles = {"welcome_block_en_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_en_4'}}
}
}
})
minetest.register_node("illuna:welcome_block_de_1", {
description = "Welcome Block [de] 1",
tiles = {"welcome_block_de_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_de_1'}}
}
}
})
minetest.register_node("illuna:welcome_block_de_2", {
description = "Welcome Block [de] 2",
tiles = {"welcome_block_de_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_de_2'}}
}
}
})
minetest.register_node("illuna:welcome_block_de_3", {
description = "Welcome Block [de] 3",
tiles = {"welcome_block_de_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_de_3'}}
}
}
})
minetest.register_node("illuna:welcome_block_de_4", {
description = "Welcome Block [de] 4",
tiles = {"welcome_block_de_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_de_4'}}
}
}
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.