add new welcome blocks
This commit is contained in:
parent
40bc55778f
commit
72abad18fe
30
nodes.lua
30
nodes.lua
@ -15,6 +15,36 @@ minetest.register_node("illuna:desert_gravel", {
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_node("illuna:welcome_block_1", {
|
||||
description = "Illuna Welcome Block 1",
|
||||
tiles = {"default_obsidian.png", "default_obsidian.png", "default_obsidian.png", "default_obsidian.png", "default_obsidian.png", "default_obsidian.png^welcome_block_1.png"},
|
||||
paramtype2 = "facedir",
|
||||
groups = {cracky = 3},
|
||||
on_place = minetest.rotate_node,
|
||||
drop = 'illuna:welcome_block_1',
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("illuna:welcome_block_2", {
|
||||
description = "Illuna Welcome Block 2",
|
||||
tiles = {"default_obsidian.png", "default_obsidian.png", "default_obsidian.png", "default_obsidian.png", "default_obsidian.png", "default_obsidian.png^welcome_block_2.png"},
|
||||
paramtype2 = "facedir",
|
||||
groups = {cracky = 3},
|
||||
on_place = minetest.rotate_node,
|
||||
drop = 'illuna:welcome_block_2',
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("illuna:welcome_block_3", {
|
||||
description = "Illuna Welcome Block 3",
|
||||
tiles = {"default_obsidian.png", "default_obsidian.png", "default_obsidian.png", "default_obsidian.png", "default_obsidian.png", "default_obsidian.png^welcome_block_3.png"},
|
||||
paramtype2 = "facedir",
|
||||
groups = {cracky = 3},
|
||||
on_place = minetest.rotate_node,
|
||||
drop = 'illuna:welcome_block_3',
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("illuna:welcome_block_v2_1", {
|
||||
description = "Welcome Block v2 1",
|
||||
tiles = {"welcome_block_v2_1.png"},
|
||||
|
BIN
textures/welcome_block_1.png
Normal file
BIN
textures/welcome_block_1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
BIN
textures/welcome_block_2.png
Normal file
BIN
textures/welcome_block_2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.4 KiB |
BIN
textures/welcome_block_3.png
Normal file
BIN
textures/welcome_block_3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
Loading…
x
Reference in New Issue
Block a user