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.

33 lines
467 B

  1. package constants
  2. // game constants
  3. const GALAXYSIZE = 50
  4. const SOLARSYSTEMSIZE = 15
  5. // MetalMineLevels contains the constants of productivity for each level, sorted from 0 to X levels
  6. var MetalMineLevels = []int64{
  7. 0,
  8. 1,
  9. 5,
  10. 10,
  11. // TODO this will be same strategy with all the buildings and research
  12. }
  13. var CrystalMineLevels = []int64{
  14. 0,
  15. 1,
  16. 5,
  17. 10,
  18. }
  19. var DeuteriumMineLevels = []int64{
  20. 0,
  21. 1,
  22. 5,
  23. 10,
  24. }
  25. var EnergyMineLevels = []int64{
  26. 0,
  27. 1,
  28. 5,
  29. 10,
  30. }