mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-23 17:30:30 +01:00
Add river water can (#527)
This commit is contained in:
parent
1a45ad19d4
commit
904800abde
@ -21,6 +21,9 @@ celeron55 (Perttu Ahola) modified by Zefram (CC BY-SA 3.0):
|
|||||||
sdzen (Elise Staudter) (CC BY-SA 3.0):
|
sdzen (Elise Staudter) (CC BY-SA 3.0):
|
||||||
* most of the older 16x16 textures
|
* most of the older 16x16 textures
|
||||||
|
|
||||||
|
leftshift (CC BY-SA 3.0):
|
||||||
|
* technic_river_water_can.png
|
||||||
|
|
||||||
RealBadAngel: (WTFPL)
|
RealBadAngel: (WTFPL)
|
||||||
* Everything else.
|
* Everything else.
|
||||||
|
|
||||||
@ -32,4 +35,4 @@ veikk0 (Veikko Mäkelä) (CC BY-SA 4.0):
|
|||||||
* technic_hv_nuclear_reactor_siren_danger_loop.ogg
|
* technic_hv_nuclear_reactor_siren_danger_loop.ogg
|
||||||
* Derived from "Nuclear alarm.wav" by Freesound.org user rene___ from <https://freesound.org/people/rene___/sounds/56778/>. Originally licensed under CC0 1.0 <https://creativecommons.org/publicdomain/zero/1.0/>
|
* Derived from "Nuclear alarm.wav" by Freesound.org user rene___ from <https://freesound.org/people/rene___/sounds/56778/>. Originally licensed under CC0 1.0 <https://creativecommons.org/publicdomain/zero/1.0/>
|
||||||
|
|
||||||
CC BY-SA 4.0: <https://creativecommons.org/licenses/by-sa/4.0/>
|
CC BY-SA 4.0: <https://creativecommons.org/licenses/by-sa/4.0/>
|
||||||
|
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: 346 B |
@ -112,3 +112,21 @@ minetest.register_craft({
|
|||||||
{'technic:zinc_ingot', 'technic:stainless_steel_ingot', 'technic:zinc_ingot'},
|
{'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