init.lua 864 B

12345678910111213141516171819202122232425262728293031
  1. xtraores = {}
  2. xtraores.path = minetest.get_modpath("xtraores")
  3. -- Minerals.
  4. dofile(xtraores.path .. "/minerals.lua")
  5. -- Lumps.
  6. dofile(xtraores.path .. "/ores.lua")
  7. -- Bars.
  8. dofile(xtraores.path .. "/items.lua")
  9. -- Don't add a bunch new armors/tools. :( It's hard enough finding/adjusting
  10. -- unique stats for the weapons/armor I already have.
  11. -- dofile(xtraores.path .. "/armor.lua")
  12. -- dofile(xtraores.path .. "/tools.lua")
  13. -- Bricks.
  14. dofile(xtraores.path .. "/oreblocks.lua")
  15. -- This is just the antracite torch. Seems to already be good for 3D, would fit
  16. -- well with Naraxen's look. Maybe fix this up someday.
  17. -- dofile(xtraores.path .. "/other_blocks.lua")
  18. -- Special shapes.
  19. dofile(xtraores.path .. "/walls.lua")
  20. dofile(xtraores.path .. "/stairs.lua")
  21. -- Mapgen ore registrations.
  22. dofile(xtraores.path .. "/mapgen.lua")