2022-05-26 19:47:35 +02:00
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
local S = minetest.get_translator(modname)
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
-- Warped and Crimson fungus
|
|
|
|
-- by debiankaios
|
|
|
|
-- adapted for mcl2 by cora
|
2022-04-29 12:24:29 +02:00
|
|
|
|
2022-05-26 19:47:35 +02:00
|
|
|
local function generate_warped_tree(pos)
|
2022-06-19 00:17:43 +02:00
|
|
|
minetest.place_schematic(pos,modpath.."/schematics/warped_fungus_1.mts","random",nil,false,"place_center_x,place_center_z")
|
2022-05-26 19:47:35 +02:00
|
|
|
end
|
2022-04-29 12:24:29 +02:00
|
|
|
|
2022-05-26 19:47:35 +02:00
|
|
|
function generate_crimson_tree(pos)
|
2022-06-19 00:17:43 +02:00
|
|
|
minetest.place_schematic(pos,modpath.."/schematics/crimson_fungus_1.mts","random",nil,false,"place_center_x,place_center_z")
|
2022-05-26 19:47:35 +02:00
|
|
|
end
|
2022-04-29 12:24:29 +02:00
|
|
|
|
2022-06-19 13:27:12 +02:00
|
|
|
function grow_twisting_vines(pos, moreontop)
|
|
|
|
local y = pos.y + 1
|
|
|
|
while not (moreontop == 0) do
|
|
|
|
if minetest.get_node({x = pos.x, y = y, z = pos.z}).name == "air" then
|
|
|
|
minetest.set_node({x = pos.x, y = y, z = pos.z}, {name="mcl_crimson:twisting_vines"})
|
|
|
|
moreontop = moreontop - 1
|
|
|
|
y = y + 1
|
|
|
|
elseif minetest.get_node({x = pos.x, y = y, z = pos.z}).name == "mcl_crimson:twisting_vines" then
|
|
|
|
y = y + 1
|
|
|
|
else
|
|
|
|
moreontop = 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:warped_fungus", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Warped Fungus Mushroom"),
|
2022-04-29 12:24:29 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = { "farming_warped_fungus.png" },
|
|
|
|
inventory_image = "farming_warped_fungus.png",
|
|
|
|
wield_image = "farming_warped_fungus.png",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
groups = {dig_immediate=3,mushroom=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,enderman_takable=1,deco_block=1},
|
|
|
|
light_source = 1,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -3/16, -0.5, -3/16, 3/16, -2/16, 3/16 },
|
|
|
|
},
|
|
|
|
node_placement_prediction = "",
|
|
|
|
on_rightclick = function(pos, node, pointed_thing, player, itemstack)
|
2022-05-04 12:23:08 +02:00
|
|
|
if pointed_thing:get_wielded_item():get_name() == "mcl_dye:white" then
|
|
|
|
local nodepos = minetest.get_node({x = pos.x, y = pos.y - 1, z = pos.z})
|
|
|
|
if nodepos.name == "mcl_crimson:warped_nylium" or nodepos.name == "mcl_nether:netherrack" then
|
|
|
|
local random = math.random(1, 5)
|
|
|
|
if random == 1 then
|
|
|
|
generate_warped_tree(pos)
|
|
|
|
end
|
|
|
|
end
|
2022-05-04 00:24:09 +02:00
|
|
|
end
|
|
|
|
end,
|
2022-04-29 12:24:29 +02:00
|
|
|
_mcl_blast_resistance = 0,
|
2021-07-19 10:11:16 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:twisting_vines", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Twisting Vines"),
|
2021-07-19 10:11:16 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = { "twisting_vines_plant.png" },
|
|
|
|
inventory_image = "twisting_vines.png",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
climbable = true,
|
|
|
|
buildable_to = true,
|
|
|
|
groups = {dig_immediate=3,vines=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,deco_block=1, shearsy = 1},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -3/16, -0.5, -3/16, 3/16, 0.5, 3/16 },
|
|
|
|
},
|
|
|
|
node_placement_prediction = "",
|
|
|
|
on_rightclick = function(pos, node, pointed_thing, itemstack)
|
2022-05-04 12:23:08 +02:00
|
|
|
if pointed_thing:get_wielded_item():get_name() == "mcl_crimson:twisting_vines" then
|
2022-05-04 00:24:09 +02:00
|
|
|
itemstack:take_item()
|
|
|
|
grow_twisting_vines(pos, 1)
|
2022-05-04 12:23:08 +02:00
|
|
|
elseif pointed_thing:get_wielded_item():get_name() == "mcl_dye:white" then
|
2022-05-04 00:24:09 +02:00
|
|
|
itemstack:take_item()
|
|
|
|
grow_twisting_vines(pos, math.random(1, 3))
|
2022-05-04 12:23:08 +02:00
|
|
|
end
|
2021-07-19 10:11:16 +02:00
|
|
|
end,
|
|
|
|
drop = {
|
2022-05-04 12:23:08 +02:00
|
|
|
max_items = 1,
|
|
|
|
items = {
|
2022-05-04 00:12:53 +02:00
|
|
|
{items = {"mcl_crimson:twisting_vines"}, rarity = 3},
|
2022-05-04 12:23:08 +02:00
|
|
|
},
|
2021-07-19 10:11:16 +02:00
|
|
|
},
|
|
|
|
_mcl_shears_drop = true,
|
|
|
|
_mcl_silk_touch_drop = true,
|
2022-05-04 12:23:08 +02:00
|
|
|
_mcl_fortune_drop = {
|
|
|
|
items = {
|
|
|
|
{items = {"mcl_crimson:twisting_vines"}, rarity = 3},
|
|
|
|
},
|
|
|
|
items = {
|
|
|
|
{items = {"mcl_crimson:twisting_vines"}, rarity = 1.8181818181818181},
|
|
|
|
},
|
|
|
|
"mcl_crimson:twisting_vines",
|
|
|
|
"mcl_crimson:twisting_vines",
|
|
|
|
},
|
2022-05-04 00:24:09 +02:00
|
|
|
_mcl_blast_resistance = 0,
|
2021-07-19 10:11:16 +02:00
|
|
|
})
|
|
|
|
|
2022-09-15 04:30:58 +02:00
|
|
|
minetest.register_node("mcl_crimson:weeping_vines", {
|
|
|
|
description = S("Weeping Vines"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = { "mcl_crimson_weeping_vines.png" },
|
|
|
|
inventory_image = "mcl_crimson_weeping_vines.png",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
climbable = true,
|
|
|
|
buildable_to = true,
|
|
|
|
groups = {dig_immediate=3,vines=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,deco_block=1, shearsy = 1},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -3/16, -0.5, -3/16, 3/16, 0.5, 3/16 },
|
|
|
|
},
|
|
|
|
node_placement_prediction = "",
|
|
|
|
on_rightclick = function(pos, node, pointed_thing, itemstack)
|
|
|
|
if pointed_thing:get_wielded_item():get_name() == "mcl_crimson:weeping_vines" then
|
|
|
|
itemstack:take_item()
|
|
|
|
grow_vines(pos, 1, "mcl_crimson:weeping_vines", -1)
|
|
|
|
elseif pointed_thing:get_wielded_item():get_name() == "mcl_dye:white" then
|
|
|
|
itemstack:take_item()
|
|
|
|
grow_vines(pos, math.random(1, 3),"mcl_crimson:weeping_vines", -1)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"mcl_crimson:weeping_vines"}, rarity = 3},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
_mcl_shears_drop = true,
|
|
|
|
_mcl_silk_touch_drop = true,
|
|
|
|
_mcl_fortune_drop = {
|
|
|
|
items = {
|
|
|
|
{items = {"mcl_crimson:weeping_vines"}, rarity = 3},
|
|
|
|
},
|
|
|
|
items = {
|
|
|
|
{items = {"mcl_crimson:weeping_vines"}, rarity = 1.8181818181818181},
|
|
|
|
},
|
|
|
|
"mcl_crimson:weeping_vines",
|
|
|
|
"mcl_crimson:weeping_vines",
|
|
|
|
},
|
|
|
|
_mcl_blast_resistance = 0,
|
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:nether_sprouts", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Nether Sprouts"),
|
2021-07-19 10:11:16 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = { "nether_sprouts.png" },
|
|
|
|
inventory_image = "nether_sprouts.png",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
groups = {dig_immediate=3,vines=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,deco_block=1, shearsy = 1},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -4/16, -0.5, -4/16, 4/16, 0, 4/16 },
|
|
|
|
},
|
|
|
|
node_placement_prediction = "",
|
|
|
|
drop = "",
|
|
|
|
_mcl_shears_drop = true,
|
|
|
|
_mcl_silk_touch_drop = false,
|
2022-05-04 00:24:09 +02:00
|
|
|
_mcl_blast_resistance = 0,
|
2021-07-19 10:11:16 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:warped_roots", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Warped Roots"),
|
2021-07-19 10:11:16 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = { "warped_roots.png" },
|
|
|
|
inventory_image = "warped_roots.png",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
groups = {dig_immediate=3,vines=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,deco_block=1, shearsy = 1},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -6/16, -0.5, -6/16, 6/16, -4/16, 6/16 },
|
|
|
|
},
|
|
|
|
node_placement_prediction = "",
|
|
|
|
_mcl_silk_touch_drop = false,
|
2022-05-04 00:24:09 +02:00
|
|
|
_mcl_blast_resistance = 0,
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:warped_wart_block", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Warped Wart Block"),
|
|
|
|
tiles = {"warped_wart_block.png"},
|
2022-05-04 12:23:08 +02:00
|
|
|
groups = {handy = 1, hoe = 7, swordy = 1, deco_block = 1},
|
2022-05-04 00:24:09 +02:00
|
|
|
_mcl_hardness = 2,
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:shroomlight", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Shroomlight"),
|
|
|
|
tiles = {"shroomlight.png"},
|
2022-06-16 22:17:11 +02:00
|
|
|
groups = {handy = 1, hoe = 7, swordy = 1, leafdecay = 5, leaves = 1, deco_block = 1},
|
2022-06-17 15:54:36 +02:00
|
|
|
light_source = minetest.LIGHT_MAX,
|
2022-05-04 12:23:08 +02:00
|
|
|
_mcl_hardness = 2,
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:warped_hyphae", {
|
2022-04-20 02:29:44 +02:00
|
|
|
description = S("Warped Hyphae"),
|
|
|
|
_doc_items_longdesc = S("The stem of a warped hyphae"),
|
|
|
|
_doc_items_hidden = false,
|
|
|
|
tiles = {
|
|
|
|
"warped_hyphae.png",
|
2022-05-04 00:24:09 +02:00
|
|
|
"warped_hyphae.png",
|
|
|
|
"warped_hyphae_side.png",
|
|
|
|
"warped_hyphae_side.png",
|
|
|
|
"warped_hyphae_side.png",
|
|
|
|
"warped_hyphae_side.png",
|
|
|
|
},
|
2022-04-20 02:29:44 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = mcl_util.rotate_axis,
|
2022-05-04 12:23:08 +02:00
|
|
|
groups = {handy = 1, axey = 1, tree = 1, building_block = 1, material_wood = 1},
|
2022-04-20 02:29:44 +02:00
|
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
2022-05-04 00:12:53 +02:00
|
|
|
_mcl_stripped_variant = "mcl_crimson:stripped_warped_hyphae",
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:warped_nylium", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Warped Nylium"),
|
2022-05-04 12:23:08 +02:00
|
|
|
tiles = {
|
|
|
|
"warped_nylium.png",
|
|
|
|
"mcl_nether_netherrack.png",
|
|
|
|
"mcl_nether_netherrack.png^warped_nylium_side.png",
|
|
|
|
"mcl_nether_netherrack.png^warped_nylium_side.png",
|
|
|
|
"mcl_nether_netherrack.png^warped_nylium_side.png",
|
|
|
|
"mcl_nether_netherrack.png^warped_nylium_side.png",
|
|
|
|
},
|
2022-05-04 00:24:09 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
is_ground_content = true,
|
|
|
|
drop = "mcl_nether:netherrack",
|
2022-05-04 12:23:08 +02:00
|
|
|
groups = {pickaxey=1, building_block=1, material_stone=1},
|
|
|
|
_mcl_hardness = 0.4,
|
|
|
|
_mcl_blast_resistance = 0.4,
|
2022-05-04 00:24:09 +02:00
|
|
|
_mcl_silk_touch_drop = true,
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-04-19 23:11:01 +02:00
|
|
|
--Stem bark, stripped stem and bark
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:warped_hyphae_bark", {
|
2022-05-04 12:23:08 +02:00
|
|
|
description = S("Warped Hyphae Bark"),
|
|
|
|
_doc_items_longdesc = S("This is a decorative block surrounded by the bark of an hyphae."),
|
|
|
|
tiles = {"warped_hyphae_side.png"},
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = mcl_util.rotate_axis,
|
|
|
|
groups = {handy = 1, axey = 1, bark = 1, building_block = 1, material_wood = 1},
|
|
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
is_ground_content = false,
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
|
|
|
_mcl_stripped_variant = "mcl_crimson:stripped_warped_hyphae_bark",
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2022-05-04 12:23:08 +02:00
|
|
|
output = "mcl_crimson:warped_hyphae_bark 3",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_crimson:warped_hyphae", "mcl_crimson:warped_hyphae" },
|
|
|
|
{ "mcl_crimson:warped_hyphae", "mcl_crimson:warped_hyphae" },
|
|
|
|
},
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:stripped_warped_hyphae", {
|
2022-06-18 01:48:33 +02:00
|
|
|
description = S("Stripped warped hyphae"),
|
|
|
|
_doc_items_longdesc = S("The stripped hyphae of a warped fungus"),
|
2022-05-04 12:23:08 +02:00
|
|
|
_doc_items_hidden = false,
|
2022-06-18 14:28:05 +02:00
|
|
|
tiles = {"warped_stem_stripped_top.png", "warped_stem_stripped_top.png", "warped_stem_stripped_side.png"},
|
2022-05-04 12:23:08 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = mcl_util.rotate_axis,
|
|
|
|
groups = {handy = 1, axey = 1, tree = 1, building_block = 1, material_wood = 1},
|
|
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:stripped_warped_hyphae_bark", {
|
2022-06-18 01:48:33 +02:00
|
|
|
description = S("Stripped warped hyphae bark"),
|
|
|
|
_doc_items_longdesc = S("The stripped hyphae bark of a warped fungus"),
|
|
|
|
tiles = {"crimson_stem_stripped_side.png"},
|
2022-05-04 12:23:08 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = mcl_util.rotate_axis,
|
|
|
|
groups = {handy = 1, axey = 1, bark = 1, building_block = 1, material_wood = 1},
|
|
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
is_ground_content = false,
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2022-05-04 12:23:08 +02:00
|
|
|
output = "mcl_crimson:stripped_warped_hyphae_bark 3",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_crimson:stripped_warped_hyphae", "mcl_crimson:stripped_warped_hyphae" },
|
|
|
|
{ "mcl_crimson:stripped_warped_hyphae", "mcl_crimson:stripped_warped_hyphae" },
|
|
|
|
},
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:warped_hyphae_wood", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Warped Hyphae Wood"),
|
|
|
|
tiles = {"warped_hyphae_wood.png"},
|
2022-05-04 12:23:08 +02:00
|
|
|
groups = {handy = 5,axey = 1, flammable = 3, wood=1,building_block = 1, material_wood = 1, fire_encouragement = 5, fire_flammability = 20},
|
2022-05-04 00:24:09 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
_mcl_hardness = 2,
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
mcl_stairs.register_stair_and_slab_simple("warped_hyphae_wood", "mcl_crimson:warped_hyphae_wood", S("Warped Stair"), S("Warped Slab"), S("Double Warped Slab"))
|
2022-04-29 12:24:29 +02:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2022-05-04 00:24:09 +02:00
|
|
|
output = "mcl_crimson:warped_hyphae_wood 4",
|
|
|
|
recipe = {
|
2022-05-04 12:23:08 +02:00
|
|
|
{"mcl_crimson:warped_hyphae"},
|
|
|
|
},
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2022-06-18 01:48:33 +02:00
|
|
|
output = "mcl_crimson:warped_nylium 2",
|
2022-05-04 00:24:09 +02:00
|
|
|
recipe = {
|
2022-05-04 12:23:08 +02:00
|
|
|
{"mcl_crimson:warped_wart_block"},
|
|
|
|
{"mcl_nether:netherrack"},
|
|
|
|
},
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:crimson_fungus", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Crimson Fungus Mushroom"),
|
2022-04-29 12:24:29 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = { "farming_crimson_fungus.png" },
|
|
|
|
inventory_image = "farming_crimson_fungus.png",
|
|
|
|
wield_image = "farming_crimson_fungus.png",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
groups = {dig_immediate=3,mushroom=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,enderman_takable=1,deco_block=1},
|
|
|
|
light_source = 1,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -3/16, -0.5, -3/16, 3/16, -2/16, 3/16 },
|
|
|
|
},
|
|
|
|
node_placement_prediction = "",
|
|
|
|
on_rightclick = function(pos, node, pointed_thing, player)
|
2022-05-04 12:23:08 +02:00
|
|
|
if pointed_thing:get_wielded_item():get_name() == "mcl_dye:white" then
|
|
|
|
local nodepos = minetest.get_node(vector.offset(pos, 0, -1, 0))
|
|
|
|
if nodepos.name == "mcl_crimson:crimson_nylium" or nodepos.name == "mcl_nether:netherrack" then
|
|
|
|
local random = math.random(1, 5)
|
|
|
|
if random == 1 then
|
|
|
|
generate_crimson_tree(pos)
|
|
|
|
end
|
|
|
|
end
|
2022-05-04 00:24:09 +02:00
|
|
|
end
|
|
|
|
end,
|
2022-04-29 12:24:29 +02:00
|
|
|
_mcl_blast_resistance = 0,
|
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:crimson_roots", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Crimson Roots"),
|
2021-07-19 10:11:16 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = { "crimson_roots.png" },
|
|
|
|
inventory_image = "crimson_roots.png",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
groups = {dig_immediate=3,vines=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,deco_block=1, shearsy = 1},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -6/16, -0.5, -6/16, 6/16, -4/16, 6/16 },
|
|
|
|
},
|
|
|
|
node_placement_prediction = "",
|
|
|
|
_mcl_silk_touch_drop = false,
|
2022-05-04 00:24:09 +02:00
|
|
|
_mcl_blast_resistance = 0,
|
2021-07-19 10:11:16 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:crimson_hyphae", {
|
2022-04-20 02:29:44 +02:00
|
|
|
description = S("Crimson Hyphae"),
|
|
|
|
_doc_items_longdesc = S("The stem of a crimson hyphae"),
|
|
|
|
_doc_items_hidden = false,
|
|
|
|
tiles = {
|
|
|
|
"crimson_hyphae.png",
|
2022-05-04 00:24:09 +02:00
|
|
|
"crimson_hyphae.png",
|
|
|
|
"crimson_hyphae_side.png",
|
|
|
|
"crimson_hyphae_side.png",
|
|
|
|
"crimson_hyphae_side.png",
|
|
|
|
"crimson_hyphae_side.png",
|
|
|
|
},
|
2022-04-20 02:29:44 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = mcl_util.rotate_axis,
|
2022-05-04 12:23:08 +02:00
|
|
|
groups = {handy = 1, axey = 1, tree = 1, building_block = 1, material_wood = 1},
|
2022-04-20 02:29:44 +02:00
|
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
2022-06-18 14:28:05 +02:00
|
|
|
_mcl_stripped_variant = "mcl_crimson:stripped_crimson_hyphae",
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-04-19 23:11:01 +02:00
|
|
|
--Stem bark, stripped stem and bark
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:crimson_hyphae_bark", {
|
2022-05-04 12:23:08 +02:00
|
|
|
description = S("Crimson Hyphae Bark"),
|
|
|
|
_doc_items_longdesc = S("This is a decorative block surrounded by the bark of an hyphae."),
|
|
|
|
tiles = {"crimson_hyphae_side.png"},
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = mcl_util.rotate_axis,
|
|
|
|
groups = {handy = 1, axey = 1, bark = 1, building_block = 1, material_wood = 1},
|
|
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
is_ground_content = false,
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
|
|
|
_mcl_stripped_variant = "mcl_crimson:stripped_crimson_hyphae_bark",
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2022-05-04 12:23:08 +02:00
|
|
|
output = "mcl_crimson:crimson_hyphae_bark 3",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_crimson:crimson_hyphae", "mcl_crimson:crimson_hyphae" },
|
|
|
|
{ "mcl_crimson:crimson_hyphae", "mcl_crimson:crimson_hyphae" },
|
|
|
|
},
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:stripped_crimson_hyphae", {
|
2022-05-04 12:23:08 +02:00
|
|
|
description = S("Stripped Crimson Hyphae"),
|
|
|
|
_doc_items_longdesc = S("The stripped stem of a crimson hyphae"),
|
|
|
|
_doc_items_hidden = false,
|
2022-06-18 01:48:33 +02:00
|
|
|
tiles = {"crimson_stem_stripped_top.png", "crimson_stem_stripped_top.png", "crimson_stem_stripped_side.png"},
|
2022-05-04 12:23:08 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = mcl_util.rotate_axis,
|
|
|
|
groups = {handy = 1, axey = 1, tree = 1, building_block = 1, material_wood = 1},
|
|
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:stripped_crimson_hyphae_bark", {
|
2022-05-04 12:23:08 +02:00
|
|
|
description = S("Stripped Crimson Hyphae Bark"),
|
|
|
|
_doc_items_longdesc = S("The stripped wood of a crimson hyphae"),
|
2022-06-18 01:48:33 +02:00
|
|
|
tiles = {"crimson_stem_stripped_side.png"},
|
2022-05-04 12:23:08 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = mcl_util.rotate_axis,
|
|
|
|
groups = {handy = 1, axey = 1, bark = 1, building_block = 1, material_wood = 1},
|
|
|
|
sounds = mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
is_ground_content = false,
|
|
|
|
_mcl_blast_resistance = 2,
|
|
|
|
_mcl_hardness = 2,
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2022-05-04 12:23:08 +02:00
|
|
|
output = "mcl_crimson:stripped_crimson_hyphae_bark 3",
|
|
|
|
recipe = {
|
|
|
|
{ "mcl_crimson:stripped_crimson_hyphae", "mcl_crimson:stripped_crimson_hyphae" },
|
|
|
|
{ "mcl_crimson:stripped_crimson_hyphae", "mcl_crimson:stripped_crimson_hyphae" },
|
|
|
|
},
|
|
|
|
})
|
2022-04-19 23:11:01 +02:00
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:crimson_hyphae_wood", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Crimson Hyphae Wood"),
|
|
|
|
tiles = {"crimson_hyphae_wood.png"},
|
2022-05-04 12:23:08 +02:00
|
|
|
groups = {handy = 5, axey = 1, wood = 1, building_block = 1, material_wood = 1},
|
2022-05-04 00:24:09 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
_mcl_hardness = 2,
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-05-04 00:12:53 +02:00
|
|
|
minetest.register_node("mcl_crimson:crimson_nylium", {
|
2022-05-04 00:24:09 +02:00
|
|
|
description = S("Crimson Nylium"),
|
2022-05-04 12:23:08 +02:00
|
|
|
tiles = {
|
|
|
|
"crimson_nylium.png",
|
|
|
|
"mcl_nether_netherrack.png",
|
|
|
|
"mcl_nether_netherrack.png^crimson_nylium_side.png",
|
|
|
|
"mcl_nether_netherrack.png^crimson_nylium_side.png",
|
|
|
|
"mcl_nether_netherrack.png^crimson_nylium_side.png",
|
|
|
|
"mcl_nether_netherrack.png^crimson_nylium_side.png",
|
|
|
|
},
|
|
|
|
groups = {pickaxey = 1, building_block = 1, material_stone = 1},
|
2022-05-04 00:24:09 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
is_ground_content = true,
|
|
|
|
drop = "mcl_nether:netherrack",
|
2022-05-04 12:23:08 +02:00
|
|
|
_mcl_hardness = 0.4,
|
|
|
|
_mcl_blast_resistance = 0.4,
|
2022-05-04 00:24:09 +02:00
|
|
|
_mcl_silk_touch_drop = true,
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-09-14 17:46:51 +02:00
|
|
|
local function has_nylium_neighbor(pos)
|
|
|
|
local p = minetest.find_node_near(pos,1,{"mcl_crimson:warped_nylium","mcl_crimson:crimson_nylium"})
|
|
|
|
if p then
|
|
|
|
return minetest.get_node(p)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-09-15 04:30:58 +02:00
|
|
|
local nether_plants = {
|
|
|
|
["mcl_crimson:crimson_nylium"] = {
|
|
|
|
"mcl_crimson:crimson_roots",
|
|
|
|
"mcl_crimson:crimson_fungus",
|
|
|
|
"mcl_crimson:weeping_vines",
|
|
|
|
"mcl_crimson:warped_fungus",
|
|
|
|
},
|
|
|
|
["mcl_crimson:warped_nylium"] = {
|
|
|
|
"mcl_crimson:warped_roots",
|
|
|
|
"mcl_crimson:warped_fungus",
|
|
|
|
"mcl_crimson:twisting_vines",
|
|
|
|
"mcl_crimson:nether_sprouts",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-09-14 17:46:51 +02:00
|
|
|
local function spread_nylium(pos)
|
|
|
|
local nn = minetest.find_nodes_in_area_under_air(vector.offset(pos,-5,-3,-5),vector.offset(pos,5,3,5),{"mcl_nether:netherrack"})
|
|
|
|
table.insert(nn,pos)
|
|
|
|
table.sort(nn,function(a, b)
|
|
|
|
return vector.distance(pos, a) < vector.distance(pos, b)
|
|
|
|
end)
|
|
|
|
for i=1,math.random(1,math.min(#nn,15)) do
|
|
|
|
local n = has_nylium_neighbor(nn[i])
|
|
|
|
if n then
|
|
|
|
minetest.set_node(nn[i],n)
|
2022-09-15 04:30:58 +02:00
|
|
|
if math.random(5) == 1 then
|
|
|
|
minetest.set_node(vector.offset(nn[i],0,1,0),{name=nether_plants[n.name][math.random(#nether_plants[n.name])]})
|
|
|
|
end
|
2022-09-14 17:46:51 +02:00
|
|
|
mcl_dye.add_bone_meal_particle(vector.offset(nn[i],0,1,0))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
mcl_dye.register_on_bone_meal_apply(function(pt,user)
|
|
|
|
if not pt.type == "node" then return end
|
|
|
|
if minetest.get_node(pt.under).name ~= "mcl_nether:netherrack" then return end
|
|
|
|
if has_nylium_neighbor(pt.under) then
|
|
|
|
spread_nylium(pt.under)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
2022-04-29 12:24:29 +02:00
|
|
|
minetest.register_craft({
|
2022-05-04 00:24:09 +02:00
|
|
|
output = "mcl_crimson:crimson_hyphae_wood 4",
|
|
|
|
recipe = {
|
2022-05-04 12:23:08 +02:00
|
|
|
{"mcl_crimson:crimson_hyphae"},
|
|
|
|
},
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2022-06-18 01:48:33 +02:00
|
|
|
output = "mcl_crimson:crimson_nylium 2",
|
2022-05-04 00:24:09 +02:00
|
|
|
recipe = {
|
2022-05-04 12:23:08 +02:00
|
|
|
{"mcl_nether:nether_wart"},
|
|
|
|
{"mcl_nether:netherrack"},
|
|
|
|
},
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
|
|
|
|
2022-08-24 07:26:09 +02:00
|
|
|
mcl_stairs.register_stair_and_slab_simple("crimson_hyphae_wood", "mcl_crimson:crimson_hyphae_wood", S("Crimson Stair"), S("Crimson Slab"), S("Double Crimson Slab"))
|
2022-04-29 12:24:29 +02:00
|
|
|
|
|
|
|
minetest.register_abm({
|
2022-05-04 00:12:53 +02:00
|
|
|
label = "mcl_crimson:crimson_fungus",
|
|
|
|
nodenames = {"mcl_crimson:crimson_fungus"},
|
2022-04-29 12:24:29 +02:00
|
|
|
interval = 11,
|
|
|
|
chance = 128,
|
|
|
|
action = function(pos)
|
2022-05-04 12:23:08 +02:00
|
|
|
local nodepos = minetest.get_node(vector.offset(pos, 0, -1, 0))
|
|
|
|
if nodepos.name == "mcl_crimson:crimson_nylium" or nodepos.name == "mcl_nether:netherrack" then
|
|
|
|
if pos.y < -28400 then
|
|
|
|
generate_crimson_tree(pos)
|
|
|
|
end
|
2022-05-04 00:24:09 +02:00
|
|
|
end
|
|
|
|
end
|
2022-04-29 12:24:29 +02:00
|
|
|
})
|
2022-09-15 04:30:58 +02:00
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
label = "mcl_crimson:warped_fungus",
|
|
|
|
nodenames = {"mcl_crimson:warped_fungus"},
|
|
|
|
interval = 11,
|
|
|
|
chance = 128,
|
|
|
|
action = function(pos)
|
|
|
|
local nodepos = minetest.get_node(vector.offset(pos, 0, -1, 0))
|
|
|
|
if nodepos.name == "mcl_crimson:warped_nylium" or nodepos.name == "mcl_nether:netherrack" then
|
|
|
|
if pos.y < -28400 then
|
|
|
|
generate_warped_tree(pos)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|