From cf48b7dbadc2afc84613aa6c31b4c4bf8f95c177 Mon Sep 17 00:00:00 2001 From: Rubenwardy Date: Mon, 10 Sep 2012 18:54:04 +0100 Subject: Bugs and Vessel Support Corrected bugs notified by wowiamdiamonds added vessels support --- support.lua | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) (limited to 'support.lua') diff --git a/support.lua b/support.lua index cd5bdc3..07839d9 100644 --- a/support.lua +++ b/support.lua @@ -54,13 +54,19 @@ minetest.register_craftitem("food:rhubarb", { }) end) -node_implement("animalmaterials","animalmaterials:meat_raw","food:meat_raw",function() -minetest.register_craftitem("food:meat_raw", { - description = "Raw meat", - image = "animalmaterials_meat_raw.png", - on_use = minetest.item_eat(1), - groups = { meat=1, eatable=1 }, - stack_max=25 +node_implement("farming","farming:cocoa_bean","food:cocoa",function() +minetest.register_node("food:cocoa", { + description = "Cocoa", + tiles = {"farming_cocoa.png"}, + visual_scale = 0.5, + inventory_image = "farming_cocoa.png", + wield_image = "farming_cocoa.png", + drawtype = "torchlike", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + groups = {fleshy=3,dig_immediate=3,flammable=2}, + sounds = default.node_sound_defaults(), }) end) @@ -105,6 +111,19 @@ end) print "RubenFood [Support] - Animal Mod" + +node_implement("animalmaterials","animalmaterials:meat_raw","food:meat_raw",function() +minetest.register_craftitem("food:meat_raw", { + description = "Raw meat", + image = "animalmaterials_meat_raw.png", + on_use = minetest.item_eat(1), + groups = { meat=1, eatable=1 }, + stack_max=25 +}) +end) + + +node_implement("vessels","vessels:drinking_glass","food:cup",function() node_implement("animalmaterials","animalmaterials:glass","food:cup",function() minetest.register_craftitem("food:cup",{ description = "Glass", @@ -112,6 +131,7 @@ node_implement("animalmaterials","animalmaterials:glass","food:cup",function() inventory_image = "food_cup.png", }) end) +end) node_implement("animalmaterials","animalmaterials:egg","food:egg",function() minetest.register_craftitem("food:egg", { -- cgit v1.2.3