dye crafts
|
@ -1,2 +1 @@
|
||||||
default
|
default
|
||||||
vessels
|
|
|
@ -133,34 +133,33 @@ dyelocal = nil
|
||||||
|
|
||||||
-- EOF
|
-- EOF
|
||||||
|
|
||||||
--Dye Base Crafting Recipes
|
--Dye Smelting Recipes
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "cooking",
|
||||||
output = "dye:black",
|
output = "dye:red 4",
|
||||||
recipe = {"vessels:glass_bottle_full", "default:coal_lump"},
|
recipe = "default:apple",
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "cooking",
|
||||||
output = "dye:blue",
|
output = "dye:black 4",
|
||||||
recipe = {"vessels:glass_bottle_full", "default:cactus"},
|
recipe = "default:coal_lump",
|
||||||
})
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "cooking",
|
||||||
output = "dye:red",
|
output = "dye:blue 8",
|
||||||
recipe = {"vessels:glass_bottle_full", "default:apple"},
|
recipe = "default:cactus",
|
||||||
})
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "cooking",
|
||||||
output = "dye:yellow",
|
output = "dye:yellow 4",
|
||||||
recipe = {"vessels:glass_bottle_full", "default:mese_crystal_fragment"},
|
recipe = "default:mese_crystal_fragment",
|
||||||
})
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "cooking",
|
||||||
output = "dye:white",
|
output = "dye:white 5",
|
||||||
recipe = {"vessels:glass_bottle_full", "default:stone"},
|
recipe = "default:stone",
|
||||||
})
|
})
|
||||||
--Dye Crafting Recipes
|
--Dye Crafting Recipes
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
|
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 364 B |
Before Width: | Height: | Size: 465 B After Width: | Height: | Size: 352 B |
Before Width: | Height: | Size: 463 B After Width: | Height: | Size: 348 B |
Before Width: | Height: | Size: 462 B After Width: | Height: | Size: 370 B |
Before Width: | Height: | Size: 464 B After Width: | Height: | Size: 367 B |
Before Width: | Height: | Size: 451 B After Width: | Height: | Size: 371 B |
Before Width: | Height: | Size: 462 B After Width: | Height: | Size: 376 B |
Before Width: | Height: | Size: 448 B After Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 466 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 460 B After Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 462 B After Width: | Height: | Size: 364 B |
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 381 B |
Before Width: | Height: | Size: 457 B After Width: | Height: | Size: 376 B |
Before Width: | Height: | Size: 436 B After Width: | Height: | Size: 375 B |
Before Width: | Height: | Size: 443 B After Width: | Height: | Size: 389 B |
|
@ -8,13 +8,6 @@ minetest.register_craftitem("vessels:glass_bottle", {
|
||||||
groups = {vessel=1},
|
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( {
|
minetest.register_craft( {
|
||||||
output = "vessels:glass_bottle 10",
|
output = "vessels:glass_bottle 10",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
@ -55,16 +48,7 @@ minetest.register_craft( {
|
||||||
{ "", "default:steel_ingot", "" }
|
{ "", "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
|
-- Make sure we can recycle them
|
||||||
|
|
||||||
|
|