mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-12-26 18:50:38 +01:00
parent
53ee259857
commit
4b5bf2e30c
@ -102,3 +102,5 @@ minetest.register_abm({
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_alias("moreblocks:jungle_stick", "default:stick")
|
||||||
|
minetest.register_alias("moreblocks:fence_jungle_wood", "default:fence_junglewood")
|
||||||
|
@ -30,14 +30,6 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "default:junglewood",
|
|
||||||
recipe = {
|
|
||||||
{"moreblocks:jungle_stick", "moreblocks:jungle_stick"},
|
|
||||||
{"moreblocks:jungle_stick", "moreblocks:jungle_stick"},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "default:dirt_with_grass",
|
output = "default:dirt_with_grass",
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
@ -123,19 +115,6 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "moreblocks:junglestick 4",
|
|
||||||
recipe = {{"default:junglewood"},}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "moreblocks:fence_jungle_wood 2",
|
|
||||||
recipe = {
|
|
||||||
{"moreblocks:jungle_stick", "moreblocks:jungle_stick", "moreblocks:jungle_stick"},
|
|
||||||
{"moreblocks:jungle_stick", "moreblocks:jungle_stick", "moreblocks:jungle_stick"},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "moreblocks:circle_stone_bricks 8",
|
output = "moreblocks:circle_stone_bricks 8",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
@ -235,21 +235,6 @@ local nodes = {
|
|||||||
sounds = sound_glass,
|
sounds = sound_glass,
|
||||||
no_stairs = true,
|
no_stairs = true,
|
||||||
},
|
},
|
||||||
["fence_jungle_wood"] = {
|
|
||||||
description = S("Jungle Wood Fence"),
|
|
||||||
drawtype = "fencelike",
|
|
||||||
tiles = {"default_junglewood.png"},
|
|
||||||
inventory_image = "default_fence_overlay.png^default_junglewood.png^default_fence_overlay.png^[makealpha:255,126,126",
|
|
||||||
wield_image = "default_fence_overlay.png^default_junglewood.png^default_fence_overlay.png^[makealpha:255,126,126",
|
|
||||||
paramtype = "light",
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
|
|
||||||
},
|
|
||||||
groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
|
|
||||||
sounds = sound_wood,
|
|
||||||
no_stairs = true,
|
|
||||||
},
|
|
||||||
["all_faces_tree"] = {
|
["all_faces_tree"] = {
|
||||||
description = S("All-faces Tree"),
|
description = S("All-faces Tree"),
|
||||||
tiles = {"default_tree_top.png"},
|
tiles = {"default_tree_top.png"},
|
||||||
@ -364,12 +349,6 @@ minetest.register_craftitem("moreblocks:sweeper", {
|
|||||||
inventory_image = "moreblocks_sweeper.png",
|
inventory_image = "moreblocks_sweeper.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("moreblocks:jungle_stick", {
|
|
||||||
description = S("Jungle Stick"),
|
|
||||||
inventory_image = "moreblocks_junglestick.png",
|
|
||||||
groups = {stick= 1},
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craftitem("moreblocks:nothing", {
|
minetest.register_craftitem("moreblocks:nothing", {
|
||||||
inventory_image = "invisible.png",
|
inventory_image = "invisible.png",
|
||||||
on_use = function() end,
|
on_use = function() end,
|
||||||
|
Loading…
Reference in New Issue
Block a user