🐈
This commit is contained in:
parent
9cac5b0f78
commit
fed78cca4b
@ -1,5 +1,5 @@
|
||||
default
|
||||
irc
|
||||
irc ?
|
||||
farming ?
|
||||
darkage ?
|
||||
building_blocks ?
|
||||
|
1
init.lua
1
init.lua
@ -2,3 +2,4 @@ dofile(minetest.get_modpath("illuna").."/nodes.lua")
|
||||
dofile(minetest.get_modpath("illuna").."/crafting.lua")
|
||||
dofile(minetest.get_modpath("illuna").."/commands.lua")
|
||||
dofile(minetest.get_modpath("illuna").."/register.lua")
|
||||
dofile(minetest.get_modpath("illuna").."/aliases.lua")
|
||||
|
32
nodes.lua
32
nodes.lua
@ -45,9 +45,9 @@ minetest.register_node("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"},
|
||||
minetest.register_node("illuna:instruction_block_1", {
|
||||
description = "Instruction Block 1",
|
||||
tiles = {"instruction_block_1.png"},
|
||||
groups = {unbreakable = 1},
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
footstep = {name="default_gravel_footstep", gain=0.5},
|
||||
@ -56,14 +56,14 @@ minetest.register_node("illuna:welcome_block_v2_1", {
|
||||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{items = {'illuna:welcome_block_v2_1'}}
|
||||
{items = {'illuna:instruction_block_1'}}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_node("illuna:welcome_block_v2_2", {
|
||||
description = "Welcome Block v2 2",
|
||||
tiles = {"welcome_block_v2_2.png"},
|
||||
minetest.register_node("illuna:instruction_block_2", {
|
||||
description = "Instruction Block 2",
|
||||
tiles = {"instruction_block_2.png"},
|
||||
groups = {unbreakable = 1},
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
footstep = {name="default_gravel_footstep", gain=0.5},
|
||||
@ -72,14 +72,14 @@ minetest.register_node("illuna:welcome_block_v2_2", {
|
||||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{items = {'illuna:welcome_block_v2_2'}}
|
||||
{items = {'illuna:instruction_block_2'}}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_node("illuna:welcome_block_v2_3", {
|
||||
description = "Welcome Block v2 3",
|
||||
tiles = {"welcome_block_v2_3.png"},
|
||||
minetest.register_node("illuna:instruction_block_3", {
|
||||
description = "Instruction Block 3",
|
||||
tiles = {"instruction_block_3.png"},
|
||||
groups = {unbreakable = 1},
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
footstep = {name="default_gravel_footstep", gain=0.5},
|
||||
@ -88,14 +88,14 @@ minetest.register_node("illuna:welcome_block_v2_3", {
|
||||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{items = {'illuna:welcome_block_v2_3'}}
|
||||
{items = {'illuna:instruction_block_3'}}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_node("illuna:welcome_block_v2_4", {
|
||||
description = "Welcome Block v2 4",
|
||||
tiles = {"welcome_block_v2_4.png"},
|
||||
minetest.register_node("illuna:instruction_block_4", {
|
||||
description = "Instruction Block 4",
|
||||
tiles = {"instruction_block_4.png"},
|
||||
groups = {unbreakable = 1},
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
footstep = {name="default_gravel_footstep", gain=0.5},
|
||||
@ -104,7 +104,7 @@ minetest.register_node("illuna:welcome_block_v2_4", {
|
||||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{items = {'illuna:welcome_block_v2_4'}}
|
||||
{items = {'illuna:instruction_block_4'}}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user