Cherry blossom changes as requested
parent
36f5372fe8
commit
17371ad60b
|
@ -27,7 +27,7 @@ minetest.register_craft({
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_chery_blossom:cherrydoor 3",
|
output = "mcl_cherry_blossom:cherry_door 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
{planks, planks},
|
{planks, planks},
|
||||||
{planks, planks},
|
{planks, planks},
|
||||||
|
@ -36,7 +36,7 @@ minetest.register_craft({
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_cherry_blossom:cherrytrapdoor 2",
|
output = "mcl_cherry_blossom:cherry_trapdoor 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
{planks, planks, planks},
|
{planks, planks, planks},
|
||||||
{planks, planks, planks},
|
{planks, planks, planks},
|
||||||
|
@ -44,14 +44,14 @@ minetest.register_craft({
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_fences:cherry_fence 3",
|
output = "mcl_cherry_blossom:cherry_fence 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
{planks, "mcl_core:stick", planks},
|
{planks, "mcl_core:stick", planks},
|
||||||
{planks, "mcl_core:stick", planks},
|
{planks, "mcl_core:stick", planks},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_fences:cherry_fence_gate",
|
output = "mcl_cherry_blossom:cherry_fence_gate",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"mcl_core:stick", planks, "mcl_core:stick"},
|
{"mcl_core:stick", planks, "mcl_core:stick"},
|
||||||
{"mcl_core:stick", planks, "mcl_core:stick"},
|
{"mcl_core:stick", planks, "mcl_core:stick"},
|
||||||
|
@ -63,13 +63,13 @@ mcl_signs.register_sign_craft("mcl_cherry_blossom", "mcl_cherry_blossom:cherrywo
|
||||||
-- Smelting
|
-- Smelting
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "fuel",
|
type = "fuel",
|
||||||
recipe = "mcl_cherry_blossom:cherrydoor",
|
recipe = "mcl_cherry_blossom:cherry_door",
|
||||||
burntime = 10,
|
burntime = 10,
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "fuel",
|
type = "fuel",
|
||||||
recipe = "mcl_cherry_blossom:cherrytrapdoor",
|
recipe = "mcl_cherry_blossom:cherry_trapdoor",
|
||||||
burntime = 15,
|
burntime = 15,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
title = mcl_cherry_blossom
|
title = mcl_cherry_blossom
|
||||||
author = PrairieWind
|
author = PrairieWind, Wbjitscool, SmokeyDope
|
||||||
depends = mcl_sounds, mcl_util, mcl_core, mcl_doors, mcl_stairs, mcl_signs, mcl_fences, mesecons_pressureplates, mesecons_button, mcl_boats
|
depends = mcl_sounds, mcl_util, mcl_core, mcl_doors, mcl_stairs, mcl_signs, mcl_fences, mesecons_pressureplates, mesecons_button, mcl_boats
|
||||||
|
|
|
@ -16,7 +16,7 @@ mcl_core.register_wooden_planks("cherrywood", S("Cherry Wood Planks"), {"mcl_che
|
||||||
-- Leaves
|
-- Leaves
|
||||||
mcl_core.register_leaves("cherryleaves", S("Cherry Leaves"),
|
mcl_core.register_leaves("cherryleaves", S("Cherry Leaves"),
|
||||||
S("Cherry blossom leaves are grown from cherry blossom trees."), {"mcl_cherry_blossom_leaves.png"},
|
S("Cherry blossom leaves are grown from cherry blossom trees."), {"mcl_cherry_blossom_leaves.png"},
|
||||||
nil, "none", nil, "mcl_cherry_blossom:cherrysapling", false, {50, 45, 30, 35, 10})
|
nil, "none", nil, "mcl_cherry_blossom:cherrysapling", false, {20, 16, 12, 10})
|
||||||
|
|
||||||
-- Sapling
|
-- Sapling
|
||||||
mcl_core.register_sapling("cherrysapling", S("Cherry Sapling"),
|
mcl_core.register_sapling("cherrysapling", S("Cherry Sapling"),
|
||||||
|
@ -24,7 +24,7 @@ mcl_core.register_sapling("cherrysapling", S("Cherry Sapling"),
|
||||||
"mcl_cherry_blossom_sapling.png", {-4/16, -0.5, -4/16, 4/16, 0.25, 4/16})
|
"mcl_cherry_blossom_sapling.png", {-4/16, -0.5, -4/16, 4/16, 0.25, 4/16})
|
||||||
|
|
||||||
-- Door and Trapdoor
|
-- Door and Trapdoor
|
||||||
mcl_doors:register_door("mcl_cherry_blossom:cherrydoor", {
|
mcl_doors:register_door("mcl_cherry_blossom:cherry_door", {
|
||||||
description = S("Cherry Door"),
|
description = S("Cherry Door"),
|
||||||
inventory_image = "mcl_cherry_blossom_door_inv.png",
|
inventory_image = "mcl_cherry_blossom_door_inv.png",
|
||||||
groups = {handy=1,axey=1, material_wood=1, flammable=-1},
|
groups = {handy=1,axey=1, material_wood=1, flammable=-1},
|
||||||
|
@ -35,7 +35,7 @@ mcl_doors:register_door("mcl_cherry_blossom:cherrydoor", {
|
||||||
sounds = mcl_sounds.node_sound_wood_defaults(),
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
mcl_doors:register_trapdoor("mcl_cherry_blossom:cherrytrapdoor", {
|
mcl_doors:register_trapdoor("mcl_cherry_blossom:cherry_trapdoor", {
|
||||||
description = S("Cherry Trapdoor"),
|
description = S("Cherry Trapdoor"),
|
||||||
tile_front = "mcl_cherry_blossom_trapdoor.png",
|
tile_front = "mcl_cherry_blossom_trapdoor.png",
|
||||||
tile_side = "mcl_cherry_blossom_trapdoor_side.png",
|
tile_side = "mcl_cherry_blossom_trapdoor_side.png",
|
||||||
|
|
|
@ -192,8 +192,12 @@ local function apply_bone_meal(pointed_thing, user)
|
||||||
mcl_dye.add_bone_meal_particle(pos)
|
mcl_dye.add_bone_meal_particle(pos)
|
||||||
-- Saplings: 45% chance to advance growth stage
|
-- Saplings: 45% chance to advance growth stage
|
||||||
if math.random(1, 100) <= 45 then
|
if math.random(1, 100) <= 45 then
|
||||||
|
if n.name == "mcl_cherry_blossom:cherrysapling" then
|
||||||
|
return mcl_cherry_blossom.generate_cherry_tree(pos) -- If cherry blossom sapling, run that callback instead.
|
||||||
|
else
|
||||||
return mcl_core.grow_sapling(pos, n)
|
return mcl_core.grow_sapling(pos, n)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
elseif minetest.get_item_group(n.name, "mushroom") == 1 then
|
elseif minetest.get_item_group(n.name, "mushroom") == 1 then
|
||||||
mcl_dye.add_bone_meal_particle(pos)
|
mcl_dye.add_bone_meal_particle(pos)
|
||||||
-- Try to grow huge mushroom
|
-- Try to grow huge mushroom
|
||||||
|
|
Loading…
Reference in New Issue