2
0

testArena.lua 433 B

1234567891011121314151617181920212223242526
  1. local testArena = {}
  2. ----------------
  3. -- Meta
  4. ----------------
  5. testArena.name = 'Test Arena'
  6. testArena.width = 800
  7. testArena.height = 600
  8. testArena.weather = nil
  9. testArena.background = data.media.graphics.map.grass
  10. ----------------
  11. -- Spawn Points
  12. ----------------
  13. testArena.spawn = {}
  14. testArena.spawn[purple] = {
  15. x = 64,
  16. y = 300
  17. }
  18. testArena.spawn[orange] = {
  19. x = testArena.width - 64,
  20. y = 300
  21. }
  22. return testArena