IronDizaster

Untitled

Aug 24th, 2022 (edited)
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. Let's make a game!
  2. name:Mining idle
  3. by:Orteil
  4. desc:This is mining idle, made with Idle Game Maker.<//>Make bunnies and shoot for the stars!
  5. created:23/08/2022
  6. updated:23/08/2022
  7. version:1
  8.  
  9. Settings
  10. background:stuff/meadow.jpg
  11. building cost increase:115%
  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. *mineButton
  21. name:Mine for materials!
  22. desc:Get mining and click on this stone for ore!
  23. on click:anim icon wobble
  24. on click:yield 1 ore
  25. on click:if (chance(1%)) yield 1 gemstone
  26. icon:https://i.imgur.com/awxzazw.png
  27. no text
  28. class:bigButton hasFlares
  29. icon class:shadowed
  30. tooltip origin:bottom
  31. tooltip class:red
  32.  
  33. Resources
  34.  
  35. *ore
  36. name:Ore
  37. desc:This is your ore. You can use it to purchase upgrades, But sometimes you will need to forge them into bars to get more complex upgrades!
  38. icon:icons[0,0]
  39. class:noBackground
  40. show earned
  41.  
  42. *bar|bars
  43. name:Bar|Bars
  44. desc:These are your bars. You can use it to purchase complex upgrades, But rare gems can pay for other stuff like workers.
  45. icon:icons[0,0]
  46. class:noBackground
  47. show earned
  48.  
  49. *gemstone|gemstones
  50. name:Gemstone|Gemstones
  51. desc:These precious gemstones are extremely hard to find!
  52. icon:icons[0,1]
  53. class:noBackground
  54. hidden when 0
  55.  
  56. Shinies
  57. *luckyBunny
  58. on click:log Woop
  59. movement:onRight moveLeft fade bounce:0.05
  60. frequency:120
  61. frequency variation:60
  62. icon:stuff/luckyBunny.png
  63. class:bigButton
  64. on click:yield 10 gemstones
  65.  
  66. Buildings
  67. *TEMPLATE
  68. on click:anim glow
  69.  
  70. *worker1
  71. name:Worker 1
  72. desc: A nice worker who can be payed with gemstones. They automatically mine for you!
  73. icon:icons[3,0]
  74. cost:5 gemstones
  75. on tick:yield 0.1 ore
  76. unlocked
  77.  
  78.  
  79. Upgrades
  80. *TEMPLATE
  81. on click:anim glow
  82. on earn:hide this
  83.  
  84. *Anironicupgrade
  85. name:An ironic upgrade
  86. desc:METAL CHANGE<//>You are now mining IRON. It gives double the value of copper!
  87. icon:icons[1,1]
  88. cost:100 ore
  89. passive:multiply ore yield of mineButton by 2
  90. req:100 ore:earned
  91.  
  92. *Shinyeyes
  93. name:Shiny eyes
  94. desc:GEM PRODUCTION UP<//>You now will get double the gemstones you used to when mining!
  95. icon:icons[1,1]
  96. cost:10 gemstones
  97. passive:multiply ore yield of mineButton by 2
  98. req:10 gemstones:earned
  99.  
  100. *Coffeeone
  101. name:Coffee one
  102. desc:WORKER COFFEE<//>This gives coffee to worker 1 specifically, Making them make MUCH more ore!
  103. icon:icons[1,1]
  104. cost:10 gemstones
  105. passive:multiply yield of worker1 by 2
  106. req:have worker1
  107.  
  108. *Forgingbeginner
  109. name:Forging beginner
  110. desc:FORGING<//>This slowly turns
  111. icon:icons[1,1]
  112. cost:10 gemstones
  113. on tick:
  114. if (ore>4)
  115. yield 0.2 bars
  116. lose 1 ore
  117. end
  118. end
  119. req:100 ore:earned
Advertisement
Add Comment
Please, Sign In to add comment