dye crafts

This commit is contained in:
Sdzen Boco 2012-12-29 22:59:49 -05:00
parent c33331a7aa
commit 0ac6258327
18 changed files with 17 additions and 35 deletions

View file

@ -1,2 +1 @@
default
vessels

View file

@ -133,34 +133,33 @@ dyelocal = nil
-- EOF
--Dye Base Crafting Recipes
--Dye Smelting Recipes
minetest.register_craft({
type = "shapeless",
output = "dye:black",
recipe = {"vessels:glass_bottle_full", "default:coal_lump"},
type = "cooking",
output = "dye:red 4",
recipe = "default:apple",
})
minetest.register_craft({
type = "shapeless",
output = "dye:blue",
recipe = {"vessels:glass_bottle_full", "default:cactus"},
type = "cooking",
output = "dye:black 4",
recipe = "default:coal_lump",
})
minetest.register_craft({
type = "shapeless",
output = "dye:red",
recipe = {"vessels:glass_bottle_full", "default:apple"},
type = "cooking",
output = "dye:blue 8",
recipe = "default:cactus",
})
minetest.register_craft({
type = "shapeless",
output = "dye:yellow",
recipe = {"vessels:glass_bottle_full", "default:mese_crystal_fragment"},
type = "cooking",
output = "dye:yellow 4",
recipe = "default:mese_crystal_fragment",
})
minetest.register_craft({
type = "shapeless",
output = "dye:white",
recipe = {"vessels:glass_bottle_full", "default:stone"},
type = "cooking",
output = "dye:white 5",
recipe = "default:stone",
})
--Dye Crafting Recipes
minetest.register_craft({

Binary file not shown.

Before

Width:  |  Height:  |  Size: 443 B

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 465 B

After

Width:  |  Height:  |  Size: 352 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 463 B

After

Width:  |  Height:  |  Size: 348 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 462 B

After

Width:  |  Height:  |  Size: 370 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 464 B

After

Width:  |  Height:  |  Size: 367 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 451 B

After

Width:  |  Height:  |  Size: 371 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 462 B

After

Width:  |  Height:  |  Size: 376 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 448 B

After

Width:  |  Height:  |  Size: 374 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 466 B

After

Width:  |  Height:  |  Size: 380 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 460 B

After

Width:  |  Height:  |  Size: 374 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 462 B

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 443 B

After

Width:  |  Height:  |  Size: 381 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 457 B

After

Width:  |  Height:  |  Size: 376 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 436 B

After

Width:  |  Height:  |  Size: 375 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 443 B

After

Width:  |  Height:  |  Size: 389 B

View file

@ -8,13 +8,6 @@ minetest.register_craftitem("vessels:glass_bottle", {
groups = {vessel=1},
})
minetest.register_craftitem("vessels:glass_bottle_full", {
description = "Glass Bottle Full",
inventory_image = "vessels_water_bottle.png",
wield_image = "vessels_water_bottle.png",
groups = {vessel=1},
})
minetest.register_craft( {
output = "vessels:glass_bottle 10",
recipe = {
@ -55,16 +48,7 @@ minetest.register_craft( {
{ "", "default:steel_ingot", "" }
}
})
--Fill with water
minetest.register_craft( {
type = "shapeless",
output = "vessels:glass_bottle_full",
recipe = {
"bucket:bucket_water",
"vessels:glass_bottle",
},
replacements = { {"bucket:bucket_water", "bucket:bucket_empty"}, },
})
-- Make sure we can recycle them