mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-05 01:50:27 +01:00
add river water can
This commit is contained in:
parent
1a45ad19d4
commit
1fa1572121
BIN
technic/textures/technic_river_water_can.png
Normal file
BIN
technic/textures/technic_river_water_can.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
|
@ -112,3 +112,21 @@ minetest.register_craft({
|
|||
{'technic:zinc_ingot', 'technic:stainless_steel_ingot', 'technic:zinc_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_can({
|
||||
can_name = 'technic:river_water_can',
|
||||
can_description = S("River Water Can"),
|
||||
can_inventory_image = "technic_river_water_can.png",
|
||||
can_capacity = 16,
|
||||
liquid_source_name = "default:river_water_source",
|
||||
liquid_flowing_name = "default:river_water_flowing",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:river_water_can 1',
|
||||
recipe = {
|
||||
{'technic:zinc_ingot', 'technic:rubber', 'technic:zinc_ingot'},
|
||||
{'default:steel_ingot', '', 'default:steel_ingot'},
|
||||
{'technic:zinc_ingot', 'default:steel_ingot', 'technic:zinc_ingot'},
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue
Block a user