1
0
mirror of https://github.com/rubenwardy/food.git synced 2025-07-24 17:50:18 +02:00

support for pilzadams mob mod

This commit is contained in:
rubenwardy
2012-12-13 19:39:22 +00:00
parent dabcdb292d
commit bacbbc9acf
5 changed files with 386 additions and 1 deletions

View File

@ -9,6 +9,8 @@
-- [craft] Meat
-- ======================================
if not minetest.get_modpath("mobs") then
minetest.register_craftitem("food:meat", {
description = "Venison",
inventory_image = "food_meat.png",
@ -21,6 +23,8 @@ minetest.register_craft({
cooktime = 20
})
end

30
food/meats.lua~ Normal file
View File

@ -0,0 +1,30 @@
-- RUBENFOOD MOD
-- A mod written by rubenwardy that adds
-- food to the minetest game
-- ======================================
-- >> rubenfood/food/meats.lua
-- adds meat products
-- ======================================
-- [regis-food] Meat
-- [craft] Meat
-- ======================================
if not minetest.get_modpath(modname) then
minetest.register_craftitem("food:meat", {
description = "Venison",
inventory_image = "food_meat.png",
})
minetest.register_craft({
type = "cooking",
output = "food:meat",
recipe = "food:meat_raw",
cooktime = 20
})
end