Initial commit

master
Austin 2018-01-03 22:21:17 -08:00
parent 9fe2d97828
commit c87dd6011e
5 changed files with 40 additions and 0 deletions

23
README.md Normal file
View File

@ -0,0 +1,23 @@
# Advanced Ores - Iron ore pack
Author: Austin Pachano (SonosFuer)
Liscense: [MIT](https://opensource.org/licenses/MIT)
Mod for [Minetest](https://www.minetest.net/)
This mod is an orepack that adds iron to the game.
## Dependencies
advancedores_core
advancedores_extended
advancedores_tools
## Credit
### Resources
For now all textures are borrowed from minetest game until
new textures are created
Gambit (CC BY-SA 3.0):
default_iron_lump.png -> lump.png
kilbith (CC BY-SA 3.0):
default_tin_ingot.png -> ingot.png
celeron55, Perttu Ahola <celeron55@gmail.com> (CC BY-SA 3.0):
deafult_mineral_iron.png -> ore.png

17
init.lua Normal file
View File

@ -0,0 +1,17 @@
ore = {}
ore.name = "iron"
ore.resources = "/resources"
ore.spawn = {
ore_type = "scatter",
wherein = "default:stone",
clust_scarcity = 7*7*7,
clust_num_ores = 5,
clust_size = 3,
height_min = -31000,
height_max = -4000,
flags = "absheight",
}
ore.tools = {}
ore.extended = {}

BIN
resources/ingot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

BIN
resources/lump.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

BIN
resources/ore.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B