1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 14:16:06 +02:00

Change broomstick craft

This commit is contained in:
palige
2015-07-08 14:46:40 +02:00
committed by LeMagnesium
parent 2e1803efe0
commit 50d7518038
3 changed files with 108 additions and 49 deletions

View File

@ -44,6 +44,8 @@ mobs:register_mob("mobs:minotaur", {
chance = 2, min = 1, max = 2,},
{name = "mobs:minotaur_horn",
chance = 4, min = 1, max = 2,},
{name = "mobs:minotaur_fur",
chance = 1, min = 1, max = 3,},
},
water_damage = 1,
lava_damage = 5,
@ -73,3 +75,22 @@ minetest.register_craftitem("mobs:minotaur_horn", {
inventory_image = "mobs_minotaur_horn.png",
groups = {magic = 1},
})
minetest.register_craftitem("mobs:minotaur_fur", {
description = "Minotaur Fur",
inventory_image = "mobs_minotaur_fur.png",
groups = {magic = 1},
})
minetest.register_craftitem("mobs:minautor_lots_of_fur", {
description = "Lot of Minotaur Fur",
inventory_image = "mobs_minautor_lots_of_fur.png",
groups = {magic = 1},
})
minetest.register_craft({
output = "mobs:minautor_lots_of_fur",
recipe = {{"mobs:minautor_fur", "mobs:minautor_fur"},
{"mobs:minautor_fur", "mobs:minautor_fur"},
},
})