Add nether fences

This commit is contained in:
3raven 2022-03-06 22:59:16 +00:00
parent ec20083d79
commit ce00ad99a3
1 changed files with 68 additions and 5 deletions

View File

@ -1,6 +1,6 @@
local S = minetest.get_translator(minetest.get_current_modname())
-- Red Nether Brick Fence
-- Red Nether Brick Fence and Fence Gate
mcl_fences.register_fence_and_fence_gate(
"red_nether_brick_fence",
@ -13,6 +13,8 @@ mcl_fences.register_fence_and_fence_gate(
mcl_sounds.node_sound_stone_defaults(), "mcl_fences_nether_brick_fence_gate_open", "mcl_fences_nether_brick_fence_gate_close", 1, 1,
"mcl_fences_fence_gate_red_nether_brick.png")
-- Nether Brick Fence Gate
mcl_fences.register_fence_gate(
"nether_brick_fence",
S("Nether Brick Fence Gate"),
@ -22,6 +24,33 @@ mcl_fences.register_fence_gate(
minetest.registered_nodes["mcl_nether:nether_brick"]._mcl_blast_resistance,
mcl_sounds.node_sound_stone_defaults(), "mcl_fences_nether_brick_fence_gate_open", "mcl_fences_nether_brick_fence_gate_close", 1, 1)
-- Crimson Wood Fence and Fence Gate
mcl_fences.register_fence_and_fence_gate(
"crimson_wood_fence",
S("Crimson Hyphae Wood Fence"), S("Crimson Hyphae Wood Fence Gate"),
"mcl_fences_fence_crimson.png",
{handy=1,axey=1, flammable=2,fence_wood=1, fire_encouragement=5, fire_flammability=20},
minetest.registered_nodes["mcl_core:wood"]._mcl_hardness,
minetest.registered_nodes["mcl_core:wood"]._mcl_blast_resistance,
{"group:fence_wood"},
mcl_sounds.node_sound_wood_defaults(), "mcl_fences_crimson_wood_fence_gate_open", "mcl_fences_crimson_wood_fence_gate_close", 1, 1,
"mcl_fences_fence_gate_crimson.png")
-- Warped Wood Fence and Fence Gate
mcl_fences.register_fence_and_fence_gate(
"warped_wood_fence",
S("Warped Hyphae Wood Fence"), S("Warped Hyphae Wood Fence Gate"),
"mcl_fences_fence_warped.png",
{handy=1,axey=1, flammable=2,fence_wood=1, fire_encouragement=5, fire_flammability=20},
minetest.registered_nodes["mcl_core:wood"]._mcl_hardness,
minetest.registered_nodes["mcl_core:wood"]._mcl_blast_resistance,
{"group:fence_wood"},
mcl_sounds.node_sound_wood_defaults(), "mcl_fences_warped_wood_fence_gate_open", "mcl_fences_warped_wood_fence_gate_close", 1, 1,
"mcl_fences_fence_gate_warped.png")
-- Crafting
minetest.register_craft({
@ -33,14 +62,23 @@ minetest.register_craft({
})
minetest.register_craft({
output = "mclx_fences:red_nether_brick_fence_gate",
output = "mclx_fences:crimson_wood_fence 3",
recipe = {
{"mcl_nether:nether_wart_item", "mcl_nether:red_nether_brick", "mcl_nether:netherbrick"},
{"mcl_nether:netherbrick", "mcl_nether:red_nether_brick", "mcl_nether:nether_wart_item"},
{"mcl_mushroom:crimson_hyphae_wood", "mcl_core:stick", "mcl_mushroom:crimson_hyphae_wood"},
{"mcl_mushroom:crimson_hyphae_wood", "mcl_core:stick", "mcl_mushroom:crimson_hyphae_wood"},
}
})
minetest.register_craft({
output = "mclx_fences:red_nether_brick_fence_gate",
output = "mclx_fences:warped_wood_fence 3",
recipe = {
{"mcl_mushroom:warped_hyphae_wood", "mcl_core:stick", "mcl_mushroom:warped_hyphae_wood"},
{"mcl_mushroom:warped_hyphae_wood", "mcl_core:stick", "mcl_mushroom:warped_hyphae_wood"},
}
})
minetest.register_craft({
output = "mclx_fences:red_nether_brick_fence_gate 2",
recipe = {
{"mcl_nether:netherbrick", "mcl_nether:red_nether_brick", "mcl_nether:nether_wart_item"},
{"mcl_nether:nether_wart_item", "mcl_nether:red_nether_brick", "mcl_nether:netherbrick"},
@ -55,6 +93,21 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "mclx_fences:crimson_wood_fence_gate",
recipe = {
{"mcl_core:stick", "mcl_mushroom:crimson_hyphae_wood", "mcl_core:stick"},
{"mcl_core:stick", "mcl_mushroom:crimson_hyphae_wood", "mcl_core:stick"},
}
})
minetest.register_craft({
output = "mclx_fences:warped_wood_fence_gate",
recipe = {
{"mcl_core:stick", "mcl_mushroom:warped_hyphae_wood", "mcl_core:stick"},
{"mcl_core:stick", "mcl_mushroom:warped_hyphae_wood", "mcl_core:stick"},
}
})
-- Aliases for mcl_supplemental
minetest.register_alias("mcl_supplemental:red_nether_brick_fence", "mclx_fences:red_nether_brick_fence")
@ -64,3 +117,13 @@ minetest.register_alias("mcl_supplemental:nether_brick_fence_gate_open", "mclx_f
minetest.register_alias("mcl_supplemental:red_nether_brick_fence_gate", "mclx_fences:red_nether_brick_fence_gate")
minetest.register_alias("mcl_supplemental:red_nether_brick_fence_gate_open", "mclx_fences:red_nether_brick_fence_gate_open")
minetest.register_alias("mcl_supplemental:crimson_wood_fence", "mclx_fences:crimson_wood_fence")
minetest.register_alias("mcl_supplemental:crimson_wood_fence_gate", "mclx_fences:crimson_wood_fence_gate")
minetest.register_alias("mcl_supplemental:crimson_wood_fence_gate_open", "mclx_fences:crimson_wood_fence_gate_open")
minetest.register_alias("mcl_supplemental:warped_wood_fence", "mclx_fences:warped_wood_fence")
minetest.register_alias("mcl_supplemental:warped_wood_fence_gate", "mclx_fences:warped_wood_fence_gate")
minetest.register_alias("mcl_supplemental:warped_wood_fence_gate_open", "mclx_fences:warped_wood_fence_gate_open")