Advertisement
Leaaa

versuch2

Feb 16th, 2020
568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.16 KB | None | 0 0
  1. Let's make a game!
  2. name:After Earth
  3. by:Lea
  4. desc:This is a simple idle game to showcase some of the basic functionalities of Idle Game Maker.<//>Make bunnies and shoot for the stars!
  5. created:25/7/2017
  6. updated:24/10/2017
  7. version:1
  8.  
  9. Settings
  10. background:https://i.imgur.com/fWFBa8q.png
  11. building cost increase:115%
  12. building cost refund:50%
  13. spritesheet:icons, 48 by 48, stuff/bunnyIcons.png
  14. stylesheet:https://codepen.io/Lea210/pen/gOpPOxE.css
  15. Layout
  16. use default
  17.  
  18.  
  19. Buttons
  20. *bunnyButton
  21. name:Move in new resident
  22. desc:Click the mars to move in a resident!
  23. on click:anim icon wobble
  24. on click:yield 1 bunny
  25. on click:if (have parsley and chance(1%)) yield 1 bunny
  26. icon:https://i.imgur.com/ck3Xvlm.png
  27. no text
  28. class:bigButton hasFlares
  29. icon class:shadowed
  30.  
  31.  
  32. Resources
  33. *bunny|bunnies
  34. name:Resident|Residents
  35. desc:Life on earth has become incredibly hard. You are a space architect and engineer who works for Elon Musk. He wants that humans live on Mars. Your job is to pobulate Mars with new residents. They work for you and build necessary buildings. Move the whole of humanity to Mars and make Elon proud!!
  36. icon:https://i.imgur.com/IlXFsce.png
  37. class:noBackground
  38. show earned
  39. start with: 1
  40.  
  41.  
  42. Shinies
  43. *luckyBunny
  44. on click:log Woop
  45. movement:onRight moveLeft fade bounce:0.05
  46. frequency:60
  47. frequency variation:30
  48. icon:https://i.imgur.com/2zizQYk.png
  49. class:shinie
  50. on click:
  51. $boost=1
  52. if (have parsley) $boost=4
  53. if (chance(25%))
  54. //get at least 7, or between 1 and 3 minutes of our bunny production
  55. $amount=max(7,random(bunnies:ps*60*1,bunnies:ps*60*3))*$boost
  56. toast <//><b>[$amount] Alien residents want to move in!</b>
  57. yield $amount bunnies
  58. else
  59. $amount=1*$boost
  60. toast <//><b>[$amount] Alien residents want to move in![?$amount]</b>
  61. yield $amount bunny
  62. end
  63. end
  64.  
  65. Buildings
  66. *TEMPLATE
  67. on click:anim glow
  68.  
  69. *cage|cages
  70. name:Space Station|Space Stations
  71. desc:A Space Station floating above Mars.<//><b>Effect:</b><.> Every 10 seconds a human moves from the Space Station to Mars.
  72. icon:https://i.imgur.com/pkYU0AJ.png
  73. cost:15 bunnies
  74. on tick:yield 0.1 bunny
  75. unlocked
  76.  
  77. *hutch|hutches
  78. name:o2 dome|o2 domes
  79. desc:This dome produces o2 and allows more humans to come.<//><b>Effect:</b><.>Allows one human every two seconds to come.
  80. icon:https://i.imgur.com/ShLV4hE.png
  81. cost:100 bunnies
  82. on tick:yield 0.5 bunnies
  83. req:100 bunnies:earned
  84.  
  85.  
  86.  
  87. Upgrades
  88. *TEMPLATE
  89. on click:anim glow
  90.  
  91. //food upgrades
  92. //inspiration : http://rabbit.org/suggested-vegetables-and-fruits-for-a-rabbit-diet/
  93.  
  94. *parsley
  95. name:Tesla Rocket
  96. desc:This tiny rocket can transport about 10 people to mars.<//><b>Effect:</b><.>+10 residents/click
  97. icon:https://i.imgur.com/JWJGOks.png
  98. cost:100 bunnies
  99. passive:increase bunny yield of bunnyButton by 10
  100. req:10 bunnies:earned
  101.  
  102. *spinach
  103. name:Cybertruck
  104. desc:Makes movement on Mars more efficient.<//><b>Effect:</b><.>+1 resident/click
  105. icon:https://i.imgur.com/v9mqMXT.png
  106. cost:200 bunnies
  107. passive:increase bunny yield of bunnyButton by 1
  108. req:50 bunnies:earned
  109.  
  110.  
  111. Achievements
  112. *TEMPLATE
  113. on click:anim glow
  114.  
  115. *bunnyAchiev1
  116. name:Mars is multicultural!
  117. desc: You have moved in some aliens who want to live on mars.
  118. req:luckyBunny:clicks>0
  119. icon:https://i.imgur.com/BQhkvDk.png
  120. *bunnyAchiev2
  121. name:Daddy is proud of you!
  122. desc:You have moved the whole humanity to Mars!(7530000000 people)
  123. req:7530000000 bunnies
  124. icon:https://i.imgur.com/TzEl5EW.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement