Add mese and diamond hoe, new tool textures

This commit is contained in:
BlockMen 2014-04-17 14:14:56 +02:00
parent fa485f7d63
commit f85e9ba691
8 changed files with 39 additions and 1 deletions

View File

@ -28,7 +28,9 @@ Created by PilzAdam (License: WTFPL):
farming_soil_wet_side.png
farming_string.png
Created by Calinou (License: CC BY-SA):
Created by BlockMen (License: CC BY 3.0):
farming_tool_diamondhoe.png
farming_tool_mesehoe.png
farming_tool_bronzehoe.png
farming_tool_steelhoe.png
farming_tool_stonehoe.png

View File

@ -142,6 +142,24 @@ minetest.register_tool("farming:hoe_bronze", {
end,
})
minetest.register_tool("farming:hoe_mese", {
description = "Mese Hoe",
inventory_image = "farming_tool_mesehoe.png",
on_use = function(itemstack, user, pointed_thing)
return farming.hoe_on_use(itemstack, user, pointed_thing, 350)
end,
})
minetest.register_tool("farming:hoe_diamond", {
description = "Diamond Hoe",
inventory_image = "farming_tool_diamondhoe.png",
on_use = function(itemstack, user, pointed_thing)
return farming.hoe_on_use(itemstack, user, pointed_thing, 500)
end,
})
minetest.register_craft({
output = "farming:hoe_wood",
recipe = {
@ -178,6 +196,24 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "farming:hoe_mese",
recipe = {
{"default:mese_crystal", "default:mese_crystal"},
{"", "group:stick"},
{"", "group:stick"},
}
})
minetest.register_craft({
output = "farming:hoe_diamond",
recipe = {
{"default:diamond", "default:diamond"},
{"", "group:stick"},
{"", "group:stick"},
}
})
--
-- Override grass for drops
--

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 B

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 B

After

Width:  |  Height:  |  Size: 278 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 257 B

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 B

After

Width:  |  Height:  |  Size: 270 B