1
0
mirror of https://github.com/D00Med/witchcraft.git synced 2025-06-30 15:10:46 +02:00

Some tweaks

>fixed some potions returing buckets instead of bottles
>made blank scrolls easier to craft
>Changed the recipe for the yellow potion
This commit is contained in:
D00Med
2016-08-16 06:43:56 +10:00
parent 793195db93
commit d29799083d
3 changed files with 11 additions and 5 deletions

View File

@ -137,8 +137,8 @@ end
minetest.register_craft({
output = 'witchcraft:scroll',
recipe = {
{'default:paper', 'default:diamond', 'default:paper'},
{'default:paper', 'default:paper', 'default:paper'},
{'default:paper', 'default:paper', ''},
{'default:paper', 'default:paper', ''},
}
})
@ -154,6 +154,7 @@ minetest.register_craft({
output = 'witchcraft:scroll_icicle',
recipe = {
{'default:ice'},
{'default:diamond'},
{'witchcraft:scroll'},
}
})
@ -162,6 +163,7 @@ minetest.register_craft({
output = 'witchcraft:scroll_fireball',
recipe = {
{'default:obsidian_shard'},
{'default:diamond'},
{'witchcraft:scroll'},
}
})
@ -170,6 +172,7 @@ minetest.register_craft({
output = 'witchcraft:scroll_nature',
recipe = {
{'default:leaves'},
{'default:diamond'},
{'witchcraft:scroll'},
}
})
@ -178,6 +181,7 @@ minetest.register_craft({
output = 'witchcraft:scroll_day',
recipe = {
{'default:torch'},
{'default:diamond'},
{'witchcraft:scroll'},
}
})
@ -186,6 +190,7 @@ minetest.register_craft({
output = 'witchcraft:scroll_night',
recipe = {
{'default:coal_lump'},
{'default:diamond'},
{'witchcraft:scroll'},
}
})
@ -195,6 +200,7 @@ minetest.register_craft({
output = 'witchcraft:scroll_lightning',
recipe = {
{'default:steel_ingot'},
{'default:diamond'},
{'witchcraft:scroll'},
}
})