Texture fixes and mod support fixes.

This commit is contained in:
Rubenwardy 2013-03-28 17:28:10 +00:00
parent 98f3be3995
commit 38662b0a19
6 changed files with 377 additions and 378 deletions

View File

@ -78,17 +78,16 @@ minetest.register_craft({
}
})
----------------------------Cigerete----------------------------
minetest.register_craftitem("food:cigarette", {
description = "Cigarette",
inventory_image = "food_cigar.png",
on_use = minetest.item_eat(-4),
--------------------------Cactus Slice--------------------------
minetest.register_craftitem("food:cactus_slice", {
description = "Cactus Slice",
inventory_image = "food_cactus_slice.png",
on_use = minetest.item_eat(2),
})
minetest.register_craft({
output = '"food:cigarette" 1',
output = '"food:cactus_slice" 4',
recipe = {
{'"default:dry_shrub"','"default:dry_shrub"','"default:dry_shrub"'},
{'"default:cactus"'},
}
})

View File

@ -164,14 +164,14 @@ print "Food [Support] - > Potato"
node_implement("docfarming","docfarming:potato","food:potato",function()
minetest.register_craftitem("food:potato", {
description = "Potato",
inventory_image = "potato.png",
inventory_image = "food_potato.png",
})
end)
node_implement("docfarming","docfarming:bakedpotato","food:potato_baked",function()
minetest.register_craftitem("food:potato_baked", {
description = "Baked Potato",
inventory_image = "baked_potato.png",
inventory_image = "food_baked_potato.png",
on_use = minetest.item_eat(6),
})
end)

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 726 B

BIN
textures/food_potato.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 B

View File

Before

Width:  |  Height:  |  Size: 356 B

After

Width:  |  Height:  |  Size: 356 B