forked from VoxeLibre/VoxeLibre
Mark bad recipes
This commit is contained in:
parent
ce0c202236
commit
24d3c1a309
|
@ -150,6 +150,7 @@ minetest.register_tool("3d_armor:boots_chain", {
|
|||
-- Register Craft Recipies
|
||||
|
||||
local craft_ingreds = {
|
||||
-- FIXME: Replace with leather
|
||||
leather = { "default:wood" },
|
||||
steel = { "default:steel_ingot", "default:iron_nugget" },
|
||||
gold = { "default:gold_ingot", "default:gold_nugget" },
|
||||
|
|
|
@ -11,6 +11,7 @@ slice_4 = { -7/16, -8/16, -7/16, 3/16, 0/16, 7/16}
|
|||
slice_5 = { -7/16, -8/16, -7/16, 5/16, 0/16, 7/16}
|
||||
slice_6 = { -7/16, -8/16, -7/16, 7/16, 0/16, 7/16}
|
||||
|
||||
-- FIXME: Recipe. milk instead of water bucket and egg instead of leaves
|
||||
minetest.register_craft({
|
||||
output = "cake:cake",
|
||||
recipe = {
|
||||
|
|
|
@ -603,7 +603,7 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = 'default:book',
|
||||
-- TODO: 3 paper 1 lether
|
||||
-- FIXME: Update recipe. 3 paper 1 lether
|
||||
recipe = { 'default:paper', 'default:paper', 'default:paper', 'default:paper',
|
||||
}
|
||||
})
|
||||
|
|
|
@ -55,7 +55,7 @@ minetest.register_craftitem("default:diamond", {
|
|||
})
|
||||
|
||||
minetest.register_craftitem("default:clay_lump", {
|
||||
description = "Clay Lump",
|
||||
description = "Clay",
|
||||
inventory_image = "default_clay_lump.png",
|
||||
stack_max = 64,
|
||||
})
|
||||
|
|
|
@ -131,6 +131,7 @@ minetest.register_node("itemframes:frame",{
|
|||
end,
|
||||
})
|
||||
|
||||
-- FIXME: Replace paper with leather
|
||||
minetest.register_craft({
|
||||
output = 'itemframes:frame',
|
||||
recipe = {
|
||||
|
|
|
@ -80,6 +80,7 @@ end
|
|||
|
||||
minetest.register_entity("throwing:arrow_entity", THROWING_ARROW_ENTITY)
|
||||
|
||||
-- FIXME: Replace paper with feather
|
||||
minetest.register_craft({
|
||||
output = 'throwing:arrow 4',
|
||||
recipe = {
|
||||
|
|
Loading…
Reference in New Issue