forked from mtcontrib/food
Added Comments and Bread
This commit is contained in:
parent
51ebdbe5c6
commit
e18011bb43
@ -1 +1,40 @@
|
|||||||
--This file loads baked stuff
|
-- RUBENFOOD MOD
|
||||||
|
-- A mod written by rubenwardy that adds
|
||||||
|
-- food to the minetest game
|
||||||
|
-- =====================================
|
||||||
|
-- >> rubenfood/baking.lua
|
||||||
|
-- adds bread and pies
|
||||||
|
-- =====================================
|
||||||
|
-- [regis-food] Bread
|
||||||
|
-- =====================================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- doughs
|
||||||
|
minetest.register_craftitem("rubenfood:dough", {
|
||||||
|
description = "Dough",
|
||||||
|
inventory_image = "farming_cake_mix.png",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "rubenfood:dough",
|
||||||
|
type = "shapeless",
|
||||||
|
recipe = {"rubenfood:flour", "rubenfood:flour", "rubenfood:flour", "rubenfood:flour", "bucket:bucket_water"},
|
||||||
|
replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
--plain bread
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
output = "rubenfood:bread",
|
||||||
|
recipe = "rubenfood:dough",
|
||||||
|
cooktime = 10
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craftitem("rubenfood:bread", {
|
||||||
|
description = "Bread",
|
||||||
|
inventory_image = "ruben_bread.png",
|
||||||
|
stack_max = 1,
|
||||||
|
on_use = minetest.item_eat(10)
|
||||||
|
})
|
@ -1,17 +1,15 @@
|
|||||||
-- Loads the animal mod based crafting
|
-- RUBENFOOD MOD
|
||||||
|
-- A mod written by rubenwardy that adds
|
||||||
|
-- food to the minetest game
|
||||||
|
-- =====================================
|
||||||
|
-- >> rubenfood/cakemix.lua
|
||||||
|
-- adds cake mix
|
||||||
|
-- =====================================
|
||||||
|
-- [regis-food] Apple Juice
|
||||||
|
-- [craft] Cactus Juice
|
||||||
|
-- [regis-food] Cactus Juice
|
||||||
|
-- [craft] Cactus Juice
|
||||||
|
-- =====================================
|
||||||
|
|
||||||
---------------Cake Pastry-----------
|
---------------Cake Pastry-----------
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = '"rubenfood:cakemix_plain" 1',
|
|
||||||
recipe = {
|
|
||||||
{'"rubenfood:flour"','"rubenfood:milk"','"rubenfood:egg"'},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = '"rubenfood:cakemix_choco" 1',
|
|
||||||
recipe = {
|
|
||||||
{'""','"default:dirt"','""'}, {'"rubenfood:flour"','"rubenfood:milk"','"rubenfood:egg"'},
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,6 +1,15 @@
|
|||||||
|
-- RUBENFOOD MOD
|
||||||
|
-- A mod written by rubenwardy that adds
|
||||||
|
-- food to the minetest game
|
||||||
|
-- =====================================
|
||||||
|
-- >> rubenfood/cakes.lua
|
||||||
|
-- adds cakes
|
||||||
|
-- =====================================
|
||||||
|
-- [regis-food] Plain Cake
|
||||||
|
-- [regis-food] Chocolate Cake
|
||||||
|
-- =====================================
|
||||||
print("RubenFood [Master] - Loading Cakes")
|
print("RubenFood [Master] - Loading Cakes")
|
||||||
|
|
||||||
dofile(minetest.get_modpath("rubenfood").."/cakemix.lua")
|
|
||||||
--------------------------Cakes-------------------------
|
--------------------------Cakes-------------------------
|
||||||
minetest.register_craftitem(":rubenfood:cakemix_plain",{
|
minetest.register_craftitem(":rubenfood:cakemix_plain",{
|
||||||
description = "Cake Mix",
|
description = "Cake Mix",
|
||||||
@ -52,4 +61,25 @@ minetest.register_node(":rubenfood:cake_chocolate", {
|
|||||||
groups = {fleshy=3,dig_immediate=3,flammable=2},
|
groups = {fleshy=3,dig_immediate=3,flammable=2},
|
||||||
on_use = minetest.item_eat(40),
|
on_use = minetest.item_eat(40),
|
||||||
sounds = default.node_sound_defaults(),
|
sounds = default.node_sound_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------- Cake Pastry ----------------------------
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = '"rubenfood:cakemix_plain" 1',
|
||||||
|
recipe = {
|
||||||
|
{'"rubenfood:flour"','"rubenfood:milk"','"rubenfood:egg"'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = '"rubenfood:cakemix_choco" 1',
|
||||||
|
recipe = {
|
||||||
|
{'""','"default:dirt"','""'}, {'"rubenfood:flour"','"rubenfood:milk"','"rubenfood:egg"'},
|
||||||
|
}
|
||||||
})
|
})
|
@ -2,9 +2,13 @@
|
|||||||
-- A mod written by rubenwardy that adds
|
-- A mod written by rubenwardy that adds
|
||||||
-- food to the minetest game
|
-- food to the minetest game
|
||||||
-- =====================================
|
-- =====================================
|
||||||
-- rubenfood/init.lua
|
-- >> rubenfood/drinks.lua
|
||||||
|
-- adds drinks
|
||||||
-- =====================================
|
-- =====================================
|
||||||
--
|
-- [regis-food] Apple Juice
|
||||||
|
-- [craft] Cactus Juice
|
||||||
|
-- [regis-food] Cactus Juice
|
||||||
|
-- [craft] Cactus Juice
|
||||||
-- =====================================
|
-- =====================================
|
||||||
|
|
||||||
print ("RubenFood [Master] - Loading Juices")
|
print ("RubenFood [Master] - Loading Juices")
|
||||||
@ -37,7 +41,7 @@ minetest.register_craft({
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
----------------------cactuz juice----------------------------
|
----------------------cactus juice----------------------------
|
||||||
minetest.register_node(":rubenfood:cactus_juice", {
|
minetest.register_node(":rubenfood:cactus_juice", {
|
||||||
description = "Cactuz Juice",
|
description = "Cactuz Juice",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
|
@ -1,4 +1,12 @@
|
|||||||
-- This file adds apple like fruits
|
-- RUBENFOOD MOD
|
||||||
|
-- A mod written by rubenwardy that adds
|
||||||
|
-- food to the minetest game
|
||||||
|
-- =====================================
|
||||||
|
-- >> rubenfood/fruits.lua
|
||||||
|
-- adds fruits
|
||||||
|
-- =====================================
|
||||||
|
-- [regis-food] Oranges
|
||||||
|
-- =====================================
|
||||||
|
|
||||||
print ("RubenFood [Master] - Loading Fruits")
|
print ("RubenFood [Master] - Loading Fruits")
|
||||||
|
|
||||||
|
@ -2,7 +2,8 @@
|
|||||||
-- A mod written by rubenwardy that adds
|
-- A mod written by rubenwardy that adds
|
||||||
-- food to the minetest game
|
-- food to the minetest game
|
||||||
-- =====================================
|
-- =====================================
|
||||||
-- rubenfood/init.lua
|
-- >> rubenfood/init.lua
|
||||||
|
-- inits the mod
|
||||||
-- =====================================
|
-- =====================================
|
||||||
-- [regis-item] Cup
|
-- [regis-item] Cup
|
||||||
-- [craft] Cup
|
-- [craft] Cup
|
||||||
|
Before Width: | Height: | Size: 918 B After Width: | Height: | Size: 918 B |
@ -1 +1,18 @@
|
|||||||
minetest.register_alias("rubenfood:flour", "farming:flour")
|
-- RUBENFOOD MOD
|
||||||
|
-- A mod written by rubenwardy that adds
|
||||||
|
-- food to the minetest game
|
||||||
|
-- =====================================
|
||||||
|
-- >> rubenfood_farming/init.lua
|
||||||
|
-- adds support for farming by pilzadam
|
||||||
|
-- =====================================
|
||||||
|
-- [exten] Farming Mod
|
||||||
|
-- =====================================
|
||||||
|
|
||||||
|
print("RubenFood [Extension] - Adding Farming Extension")
|
||||||
|
|
||||||
|
--convert nameholders to relevant farming items
|
||||||
|
minetest.register_alias("rubenfood:flour", "farming:flour")
|
||||||
|
|
||||||
|
--convert farming stuff to updated rubenfood stuff
|
||||||
|
minetest.register_alias("farming:cake_mix", "rubenfood:dough")
|
||||||
|
minetest.register_alias("farming:bread", "rubenfood:bread")
|
Loading…
Reference in New Issue
Block a user