Fixed light_max, added scorched wood recipe

This commit is contained in:
tenplus1 2015-05-20 16:57:17 +01:00
parent 57240fe6f5
commit f438eadeb9
5 changed files with 14 additions and 5 deletions

View File

@ -6,7 +6,7 @@ minetest.register_node("ethereal:crystal_spike", {
inventory_image = "crystal_spike.png",
wield_image = "crystal_spike.png",
paramtype = "light",
light_source = LIGHT_MAX - 7,
light_source = default.LIGHT_MAX - 7,
walkable = false,
damage_per_second = 1,
groups = {cracky=1,falling_node=1,puts_out_fire=1},
@ -36,7 +36,7 @@ minetest.register_craft({
minetest.register_node("ethereal:crystal_block", {
description = "Crystal Block",
tiles = {"crystal_block.png"},
light_source = LIGHT_MAX - 5,
light_source = default.LIGHT_MAX - 5,
groups = {cracky=1,level=2,puts_out_fire=1},
sounds = default.node_sound_glass_defaults(),
})

View File

@ -92,7 +92,7 @@ minetest.register_node("ethereal:glostone", {
description = "Glo Stone",
tiles = {"glostone.png"},
groups = {cracky=3},
light_source = LIGHT_MAX - 1,
light_source = default.LIGHT_MAX - 1,
drop = "ethereal:glostone",
sounds = default.node_sound_stone_defaults(),
})

View File

@ -241,7 +241,7 @@ minetest.register_node("ethereal:frost_leaves", {
paramtype = "light",
walkable = false,
waving = 1,
groups = {snappy=3, leafdecay=3, puts_out_fire=1},
groups = {snappy=3, leafdecay=3, leaves=1, puts_out_fire=1},
drop = {
max_items = 1,
items = {

View File

@ -485,7 +485,7 @@ minetest.register_node("ethereal:candle", {
{name="candle.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=1.0}},
},
paramtype = "light",
light_source = LIGHT_MAX-3,
light_source = default.LIGHT_MAX-3,
sunlight_propagates = true,
walkable = false,
groups = {dig_immediate=3, attached_node=1},

View File

@ -147,6 +147,15 @@ minetest.register_node("ethereal:scorched_tree", { -- Scorched Trunk
paramtype2 = "facedir",
})
minetest.register_craft({
output = "ethereal:scorched_tree 8",
recipe = {
{"group:tree", "group:tree", "group:tree"},
{"group:tree", "default:torch", "group:tree"},
{"group:tree", "group:tree", "group:tree"},
}
})
minetest.register_node("ethereal:mushroom_trunk", { -- Mushroom Trunk
description = "Mushroom",
tiles = {"mushroom_trunk_top.png", "mushroom_trunk_top.png", "mushroom_trunk.png"},