diff --git a/nodes.lua b/nodes.lua index f90d1fd..16f20bb 100644 --- a/nodes.lua +++ b/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'}} + } + } +}) diff --git a/textures/welcome_block_v2_1.png b/textures/welcome_block_v2_1.png new file mode 100644 index 0000000..0f0bd6b Binary files /dev/null and b/textures/welcome_block_v2_1.png differ diff --git a/textures/welcome_block_v2_2.png b/textures/welcome_block_v2_2.png new file mode 100644 index 0000000..46ded54 Binary files /dev/null and b/textures/welcome_block_v2_2.png differ diff --git a/textures/welcome_block_v2_3.png b/textures/welcome_block_v2_3.png new file mode 100644 index 0000000..92bfa3c Binary files /dev/null and b/textures/welcome_block_v2_3.png differ diff --git a/textures/welcome_block_v2_4.png b/textures/welcome_block_v2_4.png new file mode 100644 index 0000000..76eb963 Binary files /dev/null and b/textures/welcome_block_v2_4.png differ diff --git a/textures/xcf/welcome_block_v2_full.xcf b/textures/xcf/welcome_block_v2_full.xcf new file mode 100644 index 0000000..4ca731b Binary files /dev/null and b/textures/xcf/welcome_block_v2_full.xcf differ