forked from your-land-mirror/canned_food
Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
b95f06110c | |||
46fc7377e5 | |||
e4fab01c44 | |||
18b2db9f60 | |||
3eee716f55 | |||
fb347839a4 | |||
d475a95a28 | |||
11fc24c327 | |||
06e021020b | |||
eebab02930 | |||
f532290061 | |||
31b24ba0a7 | |||
ba114b0cc9 | |||
d4f734a34c |
52
README.md
52
README.md
@ -1,48 +1,10 @@
|
|||||||
# Canned Food
|
# Crafting
|
||||||
|
|
||||||
This mod introduces a number of canned foods to add some pleasant variety into the available
|
This mod adds new recipes and unified_inventory craft types, for extra convenience.
|
||||||
assortment of foods and item uses. It relies on the glass bottle from the default vessels mod,
|
|
||||||
giving this otherwise little used item a considerable purpose.
|
|
||||||
|
|
||||||
All products are defined by shapless recipes, and yield items which can be placed in the
|
What you should expect:
|
||||||
real world. Although the cans with non-symmetrical items on labels look good only from
|
New craft type: Mob killing,
|
||||||
half of the angles.
|
A multitude of new recipes
|
||||||
|
|
||||||
The recipes follow the scheme of "glass bottle" + "produce" × "amount" [ + "sugar" ]
|
This mod is it's development stages.
|
||||||
|
(Forked from canned_food as a template)
|
||||||
The amount of ingredients differs, roughly based on the original nutritional value of
|
|
||||||
the items, so that you'd need more less nutricious items to fill a mason jar.
|
|
||||||
|
|
||||||
The default 4 recipes do not require sugar, even though 3 of those are jams and probably
|
|
||||||
would taste horribly IRL without sugar. With 5.0, an extra recipe was added for "wild"
|
|
||||||
blueberry (the berries that reappear on cubic bushes), making it 5 default recipes in total:
|
|
||||||
* Apple jam
|
|
||||||
* Canned brown mushrooms
|
|
||||||
* Rose petal jam
|
|
||||||
* Dandelion jam
|
|
||||||
* Wild blueberry jam
|
|
||||||
|
|
||||||
This is to guarantee that they will always be available in vanilla game. As you can notice,
|
|
||||||
canning also turns two othwerise inedible objects (in game - such jams do exist IRL) into food.
|
|
||||||
|
|
||||||
Ethereal and farming (redo) mods introduce items that can be canned, too.
|
|
||||||
Some of them (jams) require sugar as the third ingredient. So some of them require both mods.
|
|
||||||
There also is a jar of honey, which requires honey from mobs/mobs_animal mod.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
The mason jars with canned food can be put into vessel storage shelves. Or put on display
|
|
||||||
just like the glass vessels can, and destroyed by hand (retreiving the item).
|
|
||||||
|
|
||||||
For some of the varieties this operation isn't just interior decoration. A number of foods
|
|
||||||
will turn into a "better" variety if left in a dark (10 or less light level) place on wooden
|
|
||||||
shelves. For example, canned tomatoes will become marinated tomatoes. This operation rewards
|
|
||||||
the player with twice the nutritional amount compared to the regular version, and the
|
|
||||||
resulting products are marked by a red&white checkered paper cover over the lid. And by
|
|
||||||
"left on wooden shelf" we mean quite literally — place them on a wooden surface in a dark place.
|
|
||||||
Basically, build a cellar.
|
|
||||||
|
|
||||||
The benefit of canning the food is higher nutritional value (since shelf life is irrelevant
|
|
||||||
in minetest game, where food never goes bad), this is a "reward" for applying the effort
|
|
||||||
to obtain the glass vessels. When the contents of the jar are consumed,
|
|
||||||
the player is left with an empty glass bottle which can be reused.
|
|
441
init.lua
441
init.lua
@ -1,445 +1,10 @@
|
|||||||
-- CANNED FOOD
|
|
||||||
-- Introduces new food types to add some variety. All of them rely on glass bottles
|
|
||||||
-- from the default vessels mod, which otherwise sees very little use. In vanilla game,
|
|
||||||
-- at least 4 new types will be available, two of which will also turn inedible items
|
|
||||||
-- into edible food. With farming (redo) and ethereal, pretty much anything that can
|
|
||||||
-- be harvested can also be canned.
|
|
||||||
|
|
||||||
--[[
|
|
||||||
Definition scheme
|
|
||||||
internal_name_of_the_product = {
|
|
||||||
proper_name = Human-readable name,
|
|
||||||
found_in = mod name where the source object is introduced
|
|
||||||
obj_name = name of source object
|
|
||||||
orig_nutritional_value = self-explanatory
|
|
||||||
amount = how many objects are needed to fill a bottle /not implemented/
|
|
||||||
sugar = boolean, set if needs sugar (jams) or not
|
|
||||||
transforms = name of the product it turns into if left on a shelf
|
|
||||||
}
|
|
||||||
image files for items must follow the scheme "internal_name_of_the_product.png"
|
|
||||||
]]
|
|
||||||
|
|
||||||
if minetest.get_modpath("unified_inventory") and unified_inventory.register_craft_type then
|
if minetest.get_modpath("unified_inventory") and unified_inventory.register_craft_type then
|
||||||
unified_inventory.register_craft_type("pickling", {
|
unified_inventory.register_craft_type("Mob Killing", {
|
||||||
description = "Dark room, wooden shelf",
|
description = "Dropped from",
|
||||||
icon = "canned_food_pickling_icon.png",
|
icon = minetest.get_modpath("default").."/textures/default_tool_steelsword.png",
|
||||||
width = 1,
|
width = 1,
|
||||||
height = 1,
|
height = 1,
|
||||||
uses_crafting_grid = false,
|
uses_crafting_grid = false,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
local canned_food_definitions = {
|
|
||||||
apple_jam = {
|
|
||||||
proper_name = "Apple jam",
|
|
||||||
found_in = "default",
|
|
||||||
obj_name = "default:apple",
|
|
||||||
orig_nutritional_value = 2,
|
|
||||||
amount = 3,
|
|
||||||
sugar = false -- must not use sugar to be available in vanilla
|
|
||||||
},
|
|
||||||
wild_blueberry_jam = {
|
|
||||||
proper_name = "Wild blueberry jam",
|
|
||||||
found_in = "default",
|
|
||||||
obj_name = "default:blueberries",
|
|
||||||
orig_nutritional_value = 2,
|
|
||||||
amount = 6,
|
|
||||||
sugar = false -- must not use sugar to be available in vanilla
|
|
||||||
},
|
|
||||||
dandelion_jam = {
|
|
||||||
proper_name = "Dandelion jam",
|
|
||||||
found_in = "flowers",
|
|
||||||
obj_name = "flowers:dandelion_yellow",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 5,
|
|
||||||
sugar = false -- must not use sugar to be available in vanilla
|
|
||||||
},
|
|
||||||
rose_jam = {
|
|
||||||
proper_name = "Rose petal jam",
|
|
||||||
found_in = "flowers",
|
|
||||||
obj_name = "flowers:rose",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 5,
|
|
||||||
sugar = false -- must not use sugar to be available in vanilla
|
|
||||||
},
|
|
||||||
canned_mushrooms = {
|
|
||||||
proper_name = "Canned mushrooms",
|
|
||||||
found_in = "flowers",
|
|
||||||
obj_name = "flowers:mushroom_brown",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 5,
|
|
||||||
sugar = false,
|
|
||||||
transforms = "Salted mushrooms"
|
|
||||||
},
|
|
||||||
orange_jam = {
|
|
||||||
proper_name = "Orange jam",
|
|
||||||
found_in = "ethereal",
|
|
||||||
obj_name = "ethereal:orange",
|
|
||||||
orig_nutritional_value = 2,
|
|
||||||
amount = 3,
|
|
||||||
sugar = true
|
|
||||||
},
|
|
||||||
banana_jam = {
|
|
||||||
proper_name = "Banana jam",
|
|
||||||
found_in = "ethereal",
|
|
||||||
obj_name = "ethereal:banana",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 5,
|
|
||||||
sugar = true
|
|
||||||
},
|
|
||||||
strawberry_jam = {
|
|
||||||
proper_name = "Strawberry jam",
|
|
||||||
found_in = "ethereal",
|
|
||||||
obj_name = "ethereal:strawberry",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 5,
|
|
||||||
sugar = true
|
|
||||||
},
|
|
||||||
canned_wild_onion = {
|
|
||||||
proper_name = "Canned wild onions",
|
|
||||||
found_in = "ethereal",
|
|
||||||
obj_name = "ethereal:wild_onion_plant",
|
|
||||||
orig_nutritional_value = 2,
|
|
||||||
amount = 4,
|
|
||||||
sugar = false,
|
|
||||||
transforms = "Pickled wild onions"
|
|
||||||
},
|
|
||||||
blueberry_jam = {
|
|
||||||
proper_name = "Blueberry jam",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:blueberries",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 6,
|
|
||||||
sugar = true
|
|
||||||
},
|
|
||||||
blackberry_jam = {
|
|
||||||
proper_name = "Blackberry jam",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:blackberry",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 6,
|
|
||||||
sugar = true
|
|
||||||
},
|
|
||||||
raspberry_jam = {
|
|
||||||
proper_name = "Raspberry jam",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:raspberries",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 6,
|
|
||||||
sugar = true
|
|
||||||
},
|
|
||||||
grape_jam = {
|
|
||||||
proper_name = "Grape jam",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:grapes",
|
|
||||||
orig_nutritional_value = 2,
|
|
||||||
amount = 4,
|
|
||||||
sugar = true
|
|
||||||
},
|
|
||||||
rhubarb_jam = {
|
|
||||||
proper_name = "Rhubarb jam",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:rhubarb",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 6,
|
|
||||||
sugar = true
|
|
||||||
},
|
|
||||||
melon_jam = {
|
|
||||||
proper_name = "Melon jam",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:melon_slice",
|
|
||||||
orig_nutritional_value = 2,
|
|
||||||
amount = 3,
|
|
||||||
sugar = true
|
|
||||||
},
|
|
||||||
canned_carrot = {
|
|
||||||
proper_name = "Canned carrots",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:carrot",
|
|
||||||
orig_nutritional_value = 4,
|
|
||||||
amount = 3,
|
|
||||||
sugar = false,
|
|
||||||
transforms = "Pickled carrot sticks"
|
|
||||||
},
|
|
||||||
canned_potato = {
|
|
||||||
proper_name = "Canned potatoes",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:potato",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 5,
|
|
||||||
sugar = false,
|
|
||||||
-- a rare thing, apparently
|
|
||||||
transforms = "Mexican pickled potatoes"
|
|
||||||
},
|
|
||||||
canned_cucumber = {
|
|
||||||
proper_name = "Canned cucumbers",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:cucumber",
|
|
||||||
orig_nutritional_value = 4,
|
|
||||||
amount = 3,
|
|
||||||
sugar = false,
|
|
||||||
-- one just cannot simply make the pickles
|
|
||||||
transforms = "Pickles"
|
|
||||||
},
|
|
||||||
canned_tomato = {
|
|
||||||
proper_name = "Canned tomatoes",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:tomato",
|
|
||||||
orig_nutritional_value = 4,
|
|
||||||
amount = 3,
|
|
||||||
sugar = false,
|
|
||||||
transforms = "Marinated tomatoes"
|
|
||||||
},
|
|
||||||
canned_corn = {
|
|
||||||
proper_name = "Canned corn",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:corn",
|
|
||||||
orig_nutritional_value = 3,
|
|
||||||
amount = 3,
|
|
||||||
sugar = false
|
|
||||||
},
|
|
||||||
canned_beans = {
|
|
||||||
proper_name = "Canned beans",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:beans",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 6,
|
|
||||||
sugar = false
|
|
||||||
},
|
|
||||||
canned_chili_pepper = {
|
|
||||||
proper_name = "Canned chili pepper",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:chili_pepper",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 6,
|
|
||||||
sugar = false,
|
|
||||||
transforms = "Pickled chili pepper"
|
|
||||||
},
|
|
||||||
canned_coconut = {
|
|
||||||
proper_name = "Canned coconut",
|
|
||||||
found_in = "ethereal",
|
|
||||||
obj_name = "ethereal:coconut_slice",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 5,
|
|
||||||
sugar = false
|
|
||||||
},
|
|
||||||
pine_nuts_jar = {
|
|
||||||
proper_name = "A Jar of pine nuts",
|
|
||||||
found_in = "ethereal",
|
|
||||||
obj_name = "ethereal:pine_nuts",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 8,
|
|
||||||
sugar = false
|
|
||||||
},
|
|
||||||
canned_pumpkin = {
|
|
||||||
proper_name = "Canned pumpkin puree",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:pumpkin_slice",
|
|
||||||
orig_nutritional_value = 2,
|
|
||||||
amount = 3,
|
|
||||||
sugar = false
|
|
||||||
},
|
|
||||||
honey_jar = {
|
|
||||||
proper_name = "A jar of honey",
|
|
||||||
found_in = "mobs_animal",
|
|
||||||
obj_name = "mobs:honey",
|
|
||||||
orig_nutritional_value = 4,
|
|
||||||
amount = 4,
|
|
||||||
sugar = false
|
|
||||||
},
|
|
||||||
canned_pineapple = {
|
|
||||||
proper_name = "Canned pineapple rings",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:pineapple_ring",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 5,
|
|
||||||
sugar = false
|
|
||||||
},
|
|
||||||
canned_onion = {
|
|
||||||
proper_name = "Canned onions",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:onion",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 4,
|
|
||||||
sugar = false,
|
|
||||||
transforms = "Pickled onions"
|
|
||||||
},
|
|
||||||
canned_garlic_cloves = {
|
|
||||||
proper_name = "Canned garlic cloves",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:garlic_clove",
|
|
||||||
orig_nutritional_value = 0.5,
|
|
||||||
amount = 8,
|
|
||||||
sugar = false,
|
|
||||||
transforms = "Pickled garlic cloves"
|
|
||||||
},
|
|
||||||
canned_peas = {
|
|
||||||
proper_name = "Canned peas",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:peas",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 8,
|
|
||||||
sugar = false,
|
|
||||||
},
|
|
||||||
canned_beetroot = {
|
|
||||||
proper_name = "Canned beetroot",
|
|
||||||
found_in = "farming",
|
|
||||||
obj_name = "farming:beetroot",
|
|
||||||
orig_nutritional_value = 1,
|
|
||||||
amount = 5,
|
|
||||||
sugar = false,
|
|
||||||
transforms = "Pickled beetroot"
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
local lbm_list = {}
|
|
||||||
|
|
||||||
-- creating all objects with one universal scheme
|
|
||||||
for product, def in pairs(canned_food_definitions) do
|
|
||||||
if minetest.get_modpath(def.found_in) then
|
|
||||||
--if minetest.global_exists(def.found_in) then
|
|
||||||
if def.sugar and minetest.get_modpath("farming") or not def.sugar then
|
|
||||||
|
|
||||||
-- general description
|
|
||||||
|
|
||||||
local nodetable = {
|
|
||||||
description = def.proper_name,
|
|
||||||
drawtype = "plantlike",
|
|
||||||
tiles = {"canned_food_" .. product .. ".png"},
|
|
||||||
inventory_image = "canned_food_" .. product .. ".png",
|
|
||||||
wield_image = "canned_food_" .. product .. ".png",
|
|
||||||
paramtype = "light",
|
|
||||||
is_ground_content = false,
|
|
||||||
walkable = false,
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
||||||
},
|
|
||||||
groups = { canned_food = 1,
|
|
||||||
vessel = 1,
|
|
||||||
dig_immediate = 3,
|
|
||||||
attached_node = 1 },
|
|
||||||
-- canned food prolongs shelf life IRL, but in minetest food never
|
|
||||||
-- goes bad. Here, we increase the nutritional value instead.
|
|
||||||
on_use = minetest.item_eat(
|
|
||||||
math.floor (def.orig_nutritional_value * def.amount * 1.33)
|
|
||||||
+ (def.sugar and 1 or 0), "vessels:glass_bottle"),
|
|
||||||
-- the empty bottle stays, of course
|
|
||||||
sounds = default.node_sound_glass_defaults(),
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if not def.transforms then
|
|
||||||
-- introducing a new item, a bit more nutricious than the source
|
|
||||||
-- material when sugar is used. Always stays the same.
|
|
||||||
minetest.register_node("canned_food:" .. product, nodetable)
|
|
||||||
|
|
||||||
else
|
|
||||||
-- Some products involve marinating or salting, however there is no salt
|
|
||||||
-- or vingerar in minetest; instead we imitate this more complex process
|
|
||||||
-- by putting the jar on a wooden shelf in a dark room for a long while.
|
|
||||||
-- The effort is rewarded accordingly.
|
|
||||||
|
|
||||||
-- adding transformation code
|
|
||||||
nodetable.on_construct = function(pos)
|
|
||||||
local t = minetest.get_node_timer(pos)
|
|
||||||
t:start(180)
|
|
||||||
end
|
|
||||||
|
|
||||||
nodetable.on_timer = function(pos)
|
|
||||||
-- if light level is 11 or less, and wood is nearby, there is 1 in 10 chance...
|
|
||||||
if minetest.get_node_light(pos) > 11 or
|
|
||||||
not minetest.find_node_near(pos, 1, {"group:wood"})
|
|
||||||
or math.random() > 0.1 then
|
|
||||||
return true
|
|
||||||
else
|
|
||||||
minetest.set_node(pos, {name = "canned_food:" .. product .."_plus"})
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
minetest.register_node("canned_food:" .. product, nodetable)
|
|
||||||
|
|
||||||
-- add node to the list for LBM
|
|
||||||
table.insert(lbm_list, "canned_food:" .. product)
|
|
||||||
|
|
||||||
-- a better version
|
|
||||||
minetest.register_node("canned_food:" .. product .."_plus", {
|
|
||||||
description = def.transforms,
|
|
||||||
drawtype = "plantlike",
|
|
||||||
tiles = {"canned_food_" .. product .. ".png^canned_food_paper_lid_cover.png"},
|
|
||||||
inventory_image = "canned_food_" .. product .. ".png^canned_food_paper_lid_cover.png",
|
|
||||||
wield_image = "canned_food_" .. product .. ".png^canned_food_paper_lid_cover.png",
|
|
||||||
paramtype = "light",
|
|
||||||
is_ground_content = false,
|
|
||||||
walkable = false,
|
|
||||||
selection_box = {
|
|
||||||
type = "fixed",
|
|
||||||
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
||||||
},
|
|
||||||
groups = { canned_food = 1,
|
|
||||||
vessel = 1,
|
|
||||||
dig_immediate = 3,
|
|
||||||
attached_node = 1,
|
|
||||||
not_in_creative_inventory = 1 },
|
|
||||||
-- the reward for putting the food in a cellar is even greater
|
|
||||||
-- than for merely canning it.
|
|
||||||
on_use = minetest.item_eat(
|
|
||||||
(math.floor(def.orig_nutritional_value * def.amount * 1.33)
|
|
||||||
+ (def.sugar and 1 or 0))*2, "vessels:glass_bottle"),
|
|
||||||
-- the empty bottle stays, of course
|
|
||||||
sounds = default.node_sound_glass_defaults(),
|
|
||||||
})
|
|
||||||
|
|
||||||
-- register the recipe with unified inventory
|
|
||||||
if minetest.get_modpath("unified_inventory") and unified_inventory.register_craft then
|
|
||||||
unified_inventory.register_craft({
|
|
||||||
type = "pickling",
|
|
||||||
output = "canned_food:" .. product .."_plus",
|
|
||||||
items = {"canned_food:" .. product},
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
-- a family of shapeless recipes, with sugar for jams
|
|
||||||
-- except for apple: there should be at least 1 jam guaranteed
|
|
||||||
-- to be available in vanilla game (and mushrooms are the guaranteed
|
|
||||||
-- regular - not sweet - canned food)
|
|
||||||
local ingredients = {"vessels:glass_bottle"}
|
|
||||||
local max = 8
|
|
||||||
if def.sugar then
|
|
||||||
table.insert(ingredients, "farming:sugar")
|
|
||||||
max = 7
|
|
||||||
end
|
|
||||||
-- prevent creation of a recipe with more items than there are slots
|
|
||||||
-- left in the 9-tile craft grid
|
|
||||||
if def.amount > max then
|
|
||||||
def.amount = max
|
|
||||||
end
|
|
||||||
for i=1,def.amount do
|
|
||||||
table.insert(ingredients, def.obj_name)
|
|
||||||
end
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "shapeless",
|
|
||||||
output = "canned_food:" .. product,
|
|
||||||
recipe = ingredients
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
-- LBM to start timers on existing, ABM-driven nodes
|
|
||||||
minetest.register_lbm({
|
|
||||||
name = "canned_food:timer_init",
|
|
||||||
nodenames = lbm_list,
|
|
||||||
run_at_every_load = false,
|
|
||||||
action = function(pos)
|
|
||||||
local t = minetest.get_node_timer(pos)
|
|
||||||
t:start(180)
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
||||||
-- The Moor has done his duty, the Moor can go
|
|
||||||
canned_food_definitions = nil
|
|
||||||
|
59
recipes.lua
Normal file
59
recipes.lua
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
--List of every type of stone
|
||||||
|
stoneTypes = {
|
||||||
|
"darkage:basalt",
|
||||||
|
"darkage:gneiss",
|
||||||
|
"darkage:ors",
|
||||||
|
"darkage:slate",
|
||||||
|
"default:desert_sandstone",
|
||||||
|
"default:desert_stone",
|
||||||
|
"default:obsidian",
|
||||||
|
"default:sandstone",
|
||||||
|
"default:silver_sandstone",
|
||||||
|
"default:stone",
|
||||||
|
}
|
||||||
|
|
||||||
|
--Iterates over all stone types and registers a block-to-stone recipe per entry
|
||||||
|
|
||||||
|
for _, stone in pairs(stoneTypes) do
|
||||||
|
minetest.register_craft({
|
||||||
|
output = stone
|
||||||
|
recipe = {stone.."_block"}
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
--Quick and efficient recipes for fertillizer
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless"
|
||||||
|
output = "bonemeal:fertiliser 8"
|
||||||
|
recipe = {"group:bone", "group:bone", "group:tree", "group:leaves", "group:leaves", "group:leaves", "group:leaves", "group:leaves", "group:leaves"}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless"
|
||||||
|
output = "bonemeal:fertiliser 2"
|
||||||
|
recipe = {"group:seed", "group:seed", "group:seed", "group:seed", "group:seed", "group:seed", "group:seed", "group:seed", "bonemeal:bonemeal"}
|
||||||
|
})
|
||||||
|
|
||||||
|
--Extraction of lava from the bucket
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "default:lava_source",
|
||||||
|
recipe = {"bucket:bucket_lava"}
|
||||||
|
replacements = {
|
||||||
|
{"bucket:bucket_lava","bucket:bucket_empty"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
--Public furnace reverting
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless"
|
||||||
|
output = "default:furnace"
|
||||||
|
recipe = {"public_furnace:public_furnace"}
|
||||||
|
})
|
||||||
|
|
||||||
|
--Written book clearing
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless"
|
||||||
|
output = "default:book"
|
||||||
|
recipe = {"default:book_written"}
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user