Adding acid bucket and its texture

- You can now use all items in group:ingot to craft a bucket
- You can now take acid with the bucket
This commit is contained in:
LeMagnesium 2014-12-05 18:46:03 +01:00
parent 4cb7305d9b
commit be3e7d76e0
2 changed files with 11 additions and 2 deletions

View File

@ -5,13 +5,14 @@ local LIQUID_MAX = 8 --The number of water levels when liquid_finite is enabled
minetest.register_alias("bucket", "bucket:bucket_empty")
minetest.register_alias("bucket_water", "bucket:bucket_water")
minetest.register_alias("bucket_acid", "bucket:bucket_acid")
minetest.register_alias("bucket_lava", "bucket:bucket_lava")
minetest.register_craft({
output = "bucket:bucket_empty 1",
recipe = {
{"default:steel_ingot", "", "default:steel_ingot"},
{"", "default:steel_ingot", ""},
{"group:ingot", "", "group:ingot"},
{"", "group:ingot", ""},
}
})
@ -191,6 +192,14 @@ bucket.register_liquid(
"Lava Bucket"
)
bucket.register_liquid(
"default:acid_source",
"default:acid_flowing",
"bucket:bucket_acid",
"bucket_acid.png",
"Acid Bucket"
)
minetest.register_craft({
type = "fuel",
recipe = "bucket:bucket_lava",

View File

Before

Width:  |  Height:  |  Size: 190 B

After

Width:  |  Height:  |  Size: 190 B