diff options
author | Rubenwardy <anjayward@gmail.com> | 2012-09-10 20:04:10 +0100 |
---|---|---|
committer | Rubenwardy <anjayward@gmail.com> | 2012-09-10 20:04:10 +0100 |
commit | b336aaa2b489ceee8e5bc803dabc3052d2bbd63a (patch) | |
tree | 5fcf17f5f4e15e259fa33b73056604e69a899a39 /cakes.lua | |
parent | cf48b7dbadc2afc84613aa6c31b4c4bf8f95c177 (diff) |
Moved stuff around and added hot chocolate
Diffstat (limited to 'cakes.lua')
-rw-r--r-- | cakes.lua | 94 |
1 files changed, 0 insertions, 94 deletions
diff --git a/cakes.lua b/cakes.lua deleted file mode 100644 index e06cd0f..0000000 --- a/cakes.lua +++ /dev/null @@ -1,94 +0,0 @@ --- 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")
-
---------------------------Cakes-------------------------
-minetest.register_craftitem("food:cakemix_plain",{
- description = "Cake Mix",
- inventory_image = "food_pastry.png",
-})
-
-minetest.register_craftitem("food:cakemix_choco",{
- description = "Chocolate Cake Mix",
- inventory_image = "food_pastry_choco.png",
-})
-
-minetest.register_craftitem("food:cakemix_carrot",{
- description = "Carrot Cake Mix",
- inventory_image = "food_pastry_carrot.png",
-})
-
-minetest.register_craft({
- type = "cooking",
- output = "food:cake",
- recipe = "food:cakemix_plain",
- cooktime = 10,
-})
-
-minetest.register_craft({
- type = "cooking",
- output = "food:cake_chocolate",
- recipe = "food:cakemix_choco",
- cooktime = 10,
-})
-
-minetest.register_craft({
- type = "cooking",
- output = "food:cake_carrot",
- recipe = "food:cakemix_carrot",
- cooktime = 10,
-})
-
-minetest.register_craftitem("food:cake", {
- description = "Cake",
- inventory_image = "food_cake.png",
- on_use = minetest.item_eat(30),
-})
-
-minetest.register_craftitem("food:cake_chocolate", {
- description = "Chocolate Cake",
- inventory_image = "food_cake_choco.png",
- on_use = minetest.item_eat(40),
-})
-
-minetest.register_craftitem("food:cake_carrot", {
- description = "Carrot Cake",
- inventory_image = "food_cake_carrot.png",
- on_use = minetest.item_eat(40),
-})
-
-
-
-
-
-
------------------------------ Cake Pastry ----------------------------
-
-minetest.register_craft({
- output = '"food:cakemix_plain" 1',
- recipe = {
- {'"food:flour"','"food:sugar"','"food:egg"'},
- }
-})
-
-minetest.register_craft({
- output = '"food:cakemix_choco" 1',
- recipe = {
- {'""','"default:dirt"','""'}, {'"food:flour"','"food:sugar"','"food:egg"'},
- }
-})
-
-minetest.register_craft({
- output = '"food:cakemix_carrot" 1',
- recipe = {
- {'""','"food:carrot"','""'}, {'"food:flour"','"food:sugar"','"food:egg"'},
- }
-})
\ No newline at end of file |