dye crafts the pilzadam way
|
@ -1 +1,2 @@
|
|||
default
|
||||
default
|
||||
vessels
|
|
@ -133,33 +133,34 @@ dyelocal = nil
|
|||
|
||||
-- EOF
|
||||
|
||||
--Dye Smelting Recipes
|
||||
--Dye Base Crafting Recipes
|
||||
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "dye:red 4",
|
||||
recipe = "default:apple",
|
||||
type = "shapeless",
|
||||
output = "dye:black",
|
||||
recipe = {"vessels:glass_bottle_full", "default:coal_lump"},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "dye:black 4",
|
||||
recipe = "default:coal_lump",
|
||||
type = "shapeless",
|
||||
output = "dye:blue",
|
||||
recipe = {"vessels:glass_bottle_full", "default:cactus"},
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "dye:blue 8",
|
||||
recipe = "default:cactus",
|
||||
type = "shapeless",
|
||||
output = "dye:red",
|
||||
recipe = {"vessels:glass_bottle_full", "default:apple"},
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "dye:yellow 4",
|
||||
recipe = "default:mese_crystal",
|
||||
type = "shapeless",
|
||||
output = "dye:yellow",
|
||||
recipe = {"vessels:glass_bottle_full", "default:mese_crystal_fragment"},
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "dye:white 5",
|
||||
recipe = "default:stone",
|
||||
type = "shapeless",
|
||||
output = "dye:white",
|
||||
recipe = {"vessels:glass_bottle_full", "default:stone"},
|
||||
})
|
||||
--Dye Crafting Recipes
|
||||
minetest.register_craft({
|
||||
|
|
Before Width: | Height: | Size: 364 B After Width: | Height: | Size: 443 B |
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 465 B |
Before Width: | Height: | Size: 348 B After Width: | Height: | Size: 463 B |
Before Width: | Height: | Size: 370 B After Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 367 B After Width: | Height: | Size: 464 B |
Before Width: | Height: | Size: 371 B After Width: | Height: | Size: 451 B |
Before Width: | Height: | Size: 376 B After Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 448 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 466 B |
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 460 B |
Before Width: | Height: | Size: 364 B After Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 381 B After Width: | Height: | Size: 443 B |
Before Width: | Height: | Size: 376 B After Width: | Height: | Size: 457 B |
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 436 B |
Before Width: | Height: | Size: 389 B After Width: | Height: | Size: 443 B |
|
@ -8,6 +8,13 @@ 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 = {
|
||||
|
@ -48,7 +55,16 @@ 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
|
||||
|
||||
|
|
BIN
mods/vessels/textures/vessels_water_bottle.png
Normal file
After Width: | Height: | Size: 458 B |
2
nano.save
Normal file
|
@ -0,0 +1,2 @@
|
|||
x^
|
||||
|