food/init.lua

82 lines
2.1 KiB
Lua
Raw Normal View History

2012-08-30 18:04:36 +02:00
-- RUBENFOOD MOD
-- A mod written by rubenwardy that adds
-- food to the minetest game
-- =====================================
2012-08-30 18:19:00 +02:00
-- >> rubenfood/init.lua
-- inits the mod
2012-08-30 18:04:36 +02:00
-- =====================================
-- [regis-item] Cup
-- [craft] Cup
-- [regis-food] Cigerette (-4)
-- =====================================
2012-08-31 16:37:02 +02:00
print ("food: Loading mainframe: [Master]")
2012-08-30 18:04:36 +02:00
2012-08-30 18:46:12 +02:00
----------------------Load Files-----------------------------
2012-08-31 16:37:02 +02:00
dofile(minetest.get_modpath("food").."/support.lua")
dofile(minetest.get_modpath("food").."/oven.lua")
2012-08-31 16:37:02 +02:00
dofile(minetest.get_modpath("food").."/dairy.lua")
dofile(minetest.get_modpath("food").."/meats.lua")
2012-08-31 19:43:10 +02:00
dofile(minetest.get_modpath("food").."/sandwich.lua")
2012-08-31 16:37:02 +02:00
dofile(minetest.get_modpath("food").."/baking.lua")
dofile(minetest.get_modpath("food").."/cakes.lua")
dofile(minetest.get_modpath("food").."/tarts.lua")
2012-08-30 18:46:12 +02:00
2012-08-31 16:37:02 +02:00
dofile(minetest.get_modpath("food").."/drinks.lua")
2012-08-29 20:25:41 +02:00
2012-08-30 18:46:12 +02:00
2012-08-29 20:25:41 +02:00
----------------------------Cup------------------------------
2012-08-31 16:37:02 +02:00
minetest.register_craftitem("food:mug",{
description = "Mug",
2012-08-31 16:37:02 +02:00
tiles = {"food_mug.png"},
inventory_image = "food_mug.png",
2012-08-29 20:25:41 +02:00
})
minetest.register_craft({
2012-08-31 16:37:02 +02:00
output = '"food:cup" 4',
2012-08-29 20:25:41 +02:00
recipe = {
{"default:glass"},
{"default:glass"},
2012-08-29 20:25:41 +02:00
}
})
-----------------------------Sugar------------------------------
minetest.register_craftitem("food:sugar", {
description = "Sugar",
inventory_image = "food_sugar.png",
})
minetest.register_craft({
output = '"food:sugar" 20',
recipe = {
{'"default:papyrus"'},
}
})
2012-08-29 20:25:41 +02:00
----------------------------Cigerete----------------------------
2012-08-31 16:37:02 +02:00
minetest.register_node(":food:cigarette", {
2012-08-29 20:25:41 +02:00
description = "Cigarette",
visual_scale = 1.0,
2012-08-31 16:37:02 +02:00
tiles = {"food_cigar.png"},
inventory_image = "food_cigar.png",
2012-08-29 20:25:41 +02:00
paramtype = "light",
sunlight_propagates = true,
walkable = false,
groups = {fleshy=3,dig_immediate=3,flammable=2},
on_use = minetest.item_eat(-4),
sounds = default.node_sound_defaults(),
})
minetest.register_craft({
2012-08-31 16:37:02 +02:00
output = '"food:cigarette" 1',
2012-08-29 20:25:41 +02:00
recipe = {
{'"default:dry_shrub"','"default:dry_shrub"','"default:dry_shrub"'},
}
})
2012-08-31 16:37:02 +02:00
print("food: Mainframe loaded")