22 lines
370 B
Lua
22 lines
370 B
Lua
--ore definitions
|
|
ore = {
|
|
{name = "air", image = " ", rgb = {255,255,255}}, --id 1
|
|
{name = "rock", image = "#", rgb = {168,168,168} }, --id 2
|
|
{name = "dirt", image = "#", rgb = {87,59,12} }, --id 3
|
|
{name = "grass", image = "#", rgb = {1,142,14} }, --id 4
|
|
|
|
|
|
|
|
}
|
|
|
|
--create water
|
|
|
|
--lighting
|
|
|
|
--fix collision
|
|
|
|
--fix consistent maps
|
|
|
|
|
|
--print(ore[1]["name"])
|