Advertisement
Guest User

Untitled

a guest
Jul 6th, 2022
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. planet {
  2. name = "Kerbin"
  3. orbitDistance = 13_599_840.km
  4. orbitPeriod = 1.years + 61.days
  5.  
  6. gravity = earthGravity
  7. dayLength = 5.hours + 59.minutes
  8.  
  9. atmosphere {
  10. pressure = 1.atm
  11.  
  12. NITROGEN percent 75
  13. OXYGEN percent 24.5
  14. CARBON_DIOXIDE ppm 5000
  15. }
  16.  
  17. generator = "world".generator
  18.  
  19. moon {
  20. name = "Mun"
  21.  
  22. orbitDistance = 12_000.km
  23. orbitalPeriod = 6.days + 2.hours
  24.  
  25. gravity = 1.63.ms2
  26. dayLength = eternalNight
  27.  
  28. atmosphere = noAtmosphere
  29.  
  30. generator = simplexOctaveGenerator {
  31. averageY = 50
  32. maxDeviation = 35
  33. scale = 0.01
  34. octaves = 8
  35. amplitude = 0.5
  36. frequency = 0.5
  37.  
  38. materials {
  39. LIGHT_GRAY_CONCRETE_POWEDER top 2
  40. BEDROCK bottom 1
  41.  
  42. everythingElse { random, x, y, z, topY ->
  43. if (random.percentChance(20)) {
  44. return DIAMOND_ORE
  45. } else {
  46. return STONE
  47. }
  48. }
  49. }
  50. }
  51. }
  52. }
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement