Adrian
2020-01-26 904800abde586337bbb03e5dcbe48170677efbce
Add river water can (#527)

1 files added
2 files modified
21 ■■■■■ changed files
technic/README.md 3 ●●●●● patch | view | raw | blame | history
technic/textures/technic_river_water_can.png patch | view | raw | blame | history
technic/tools/cans.lua 18 ●●●●● patch | view | raw | blame | history
technic/README.md
@@ -21,6 +21,9 @@
sdzen (Elise Staudter) (CC BY-SA 3.0):
  * most of the older 16x16 textures
leftshift (CC BY-SA 3.0):
  * technic_river_water_can.png
RealBadAngel: (WTFPL)
  * Everything else.
technic/textures/technic_river_water_can.png
technic/tools/cans.lua
@@ -112,3 +112,21 @@
        {'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'},
    }
})