Advertisement
wrb1068

Untitled

Jul 22nd, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.26 KB | None | 0 0
  1. Let's make a game!
  2. name:Money Clicker
  3. by:Warabi
  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:21/7/2019
  6. updated:21/7/2019
  7. version:1
  8.  
  9. Settings
  10. background:stuff/meadow.jpg
  11. building cost increase:150%
  12. building cost refund:50%
  13. spritesheet:icons, 48 by 48, stuff/bunnyIcons.png
  14. stylesheet:stuff/bigBlue.css
  15.  
  16. Layout
  17. use default
  18.  
  19. Buttons
  20. *Bank
  21. name:Bank
  22. desc:Click to make money!
  23. on click:anim icon wobble
  24. on click:yield 1 yen
  25. icon:stuff/bunny.png
  26. no text
  27. class:bigButton hasFlares
  28. icon class:shadowed
  29. tooltip origin:bottom
  30. tooltip class:red
  31.  
  32. Resources
  33. *yen
  34. name:yen
  35. desc:These are your money. You can use them to purchase things. Your goal is to have as many money as possible!
  36. icon:icons[0,0]
  37. class:noBackground
  38. show earned
  39.  
  40. Buildings
  41. *TEMPLATE
  42. on click:anim glow
  43.  
  44. *oneyenmachine|oneyenmachines
  45. name:One yen coin production machine|One yen coin production machines
  46. desc:A small machine that makes one yen coin.<//><b>Effect:</b><.>Produces 1 yen every 10 seconds.
  47. icon:icons[3,0]
  48. cost:10 yen
  49. on tick:yield 0.1 yen
  50. unlocked
  51.  
  52. *fiveyenmachine|fiveyenmachines
  53. name:Five yen coin production machine|Five yen coin production machines
  54. desc:A small machine that makes five yen coin.<//><b>Effect:</b><.>Produces 5 yen every 10 seconds.
  55. icon:icons[3,1]
  56. cost:20 yen
  57. on tick:yield 0.5 yen
  58. req:10 yen:earned
  59.  
  60. *tenyenmachine|tenyenmachines
  61. name:Ten yen coin production machine|Ten yen coin production machines
  62. desc:A small machine that makes ten yen coin.<//><b>Effect:</b><.>Produces 1 yen per second.
  63. icon:icons[3,2]
  64. cost:100 yen
  65. on tick:yield 1 yen
  66. req:50 yen:earned
  67.  
  68. Upgrades
  69. *TEMPLATE
  70. on click:anim glow
  71.  
  72. //bank upgrades
  73. //inspiration : http://rabbit.org/suggested-vegetables-and-fruits-for-a-rabbit-diet/
  74.  
  75. *highinterestrate
  76. name:High interest rate
  77. desc:You can withdraw a lot of money.<//><b>Effect:</b><.>Double yen/click
  78. icon:icons[1,1]
  79. cost:100 yen
  80. passive:multiply yen yield of bank by 2
  81. req:10 yen:earned
  82.  
  83. *bubbleeconomy
  84. name:Bubble economy
  85. desc:I am happy, I am not happy ...<//><b>Effect:</b><.>Double yen/click
  86. icon:icons[1,2]
  87. cost:200 yen
  88. passive:multiply yen yield of bank by 2
  89. req:50 yen:earned
  90.  
  91. //building upgrades
  92.  
  93. *oneyenUpgrade1
  94. name:Hard alum
  95. desc:It looks like fragile silver.<//><b>Effect:</b><.>One yen coin production machine production x2
  96. icon:icons[2,0] icons[3,0]
  97. cost:100 yen
  98. passive:multiply yield of oneyenmachine by 2
  99. req:oneyenmachines>=1
  100.  
  101. *fiveUpgrade1
  102. name:False Oriharukon
  103. desc:Value priced metal.<//><b>Effect:</b><.>Five yen coin production machine production x2
  104. icon:icons[2,0] icons[3,1]
  105. cost:200 yen
  106. passive:multiply yield of fiveyenmachine by 2
  107. req:fiveyenmachines>=1
  108.  
  109. Achievements
  110. *TEMPLATE
  111. on click:anim glow
  112.  
  113. *yenAchiev1
  114. name:Those who laugh at one yen cry at one yen
  115. desc:Have <b>1</b> yen.
  116. req:1 yen
  117. icon:icons[2,4] icons[0,2] icons[0,6]
  118. *yenAchiev2
  119. name:A piece of metal or a piece of paper
  120. desc:Have <b>1000</b> yen.
  121. req:1000 yen
  122. icon:icons[2,4] icons[0,3] icons[0,6]
  123. *yenAchiev3
  124. name:Affordable to a thief
  125. desc:Have <b>100000</b> yen.
  126. req:100000 yen
  127. icon:icons[2,4] icons[0,4] icons[0,6]
  128.  
  129. *clickAchiev1
  130. name:Still enough
  131. desc:Click the bank <b>10</b> times.
  132. req:10 bank clicks
  133. icon:icons[2,2] icons[0,2] icons[0,6]
  134. *clickAchiev2
  135. name:All right, okay.
  136. desc:Click the bank <b>100</b> times.
  137. req:100 bank clicks
  138. icon:icons[2,2] icons[0,3] icons[0,6]
  139. *clickAchiev3
  140. name:Let's split up a little
  141. desc:Click the bank <b>1000</b> times.
  142. req:1000 bank clicks
  143. icon:icons[2,2] icons[0,4] icons[0,6]
  144.  
  145. *yenPsAchiev1
  146. name:I can not make it in time
  147. desc:Produce <b>1</b> yen per second.
  148. req:1 yen per second
  149. icon:icons[2,3] icons[0,2] icons[0,6]
  150. *yenPsAchiev2
  151. name:Currency in the village
  152. desc:Produce <b>10</b> yen per second.
  153. req:10 yen per second
  154. icon:icons[2,3] icons[0,3] icons[0,6]
  155. *yenPsAchiev3
  156. name:Outer central bank
  157. desc:Produce <b>100</b> yen per second.
  158. req:100 yen per second
  159. icon:icons[2,3] icons[0,4] icons[0,6]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement