You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

planetdata.lua 305 B

2 years ago
2 years ago
2 years ago
1234567891011121314151617181920
  1. planetdata = {
  2. {
  3. x = 0, y = 0,
  4. r = 500000, m = 5e15,
  5. xSpeed = 0, ySpeed = 0,
  6. name = "Testos",
  7. colour = {42, 04, 20},
  8. parent = "star"
  9. },
  10. {
  11. x = 2000000, y = 0,
  12. r = 40000, m = 4e7,
  13. xSpeed = 0, ySpeed = 12000,
  14. name = "Deez",
  15. colour = {50, 50, 50},
  16. parent = 1
  17. }
  18. }
  19. return planetdata