Pyronic

Untitled

Dec 23rd, 2018
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. Let's make a game!
  2. name:Money Clicker
  3. by:Alito
  4. desc:Money
  5. created:25/7/2017
  6. updated:24/10/2017
  7. version:1
  8.  
  9. Settings
  10. stylesheet:stuff/bigBlue.css
  11.  
  12. Layout
  13. use default
  14.  
  15. Buttons
  16. *moneyButton
  17. name:Make some money
  18. desc:Click for money
  19. on click:yield 1 money
  20.  
  21. Resources
  22. *money
  23. name:money
  24. desc:Money
  25. show earned
  26.  
  27. Buildings
  28.  
  29. *machines
  30. name:Machines
  31. desc:Earn a bit more money with these machines.
  32. cost:100 money
  33. on tick:yield 0.5 money
  34. unlocked
  35.  
  36. *workers
  37. name:Workers
  38. desc:These professional workers earn more money than machines.
  39. cost:500 money
  40. on tick:yield 2.5 money
  41. unlocked
  42.  
  43. *miners
  44. name:Miners
  45. desc:These powerful miners mine every single ore from stone to diamond.
  46. cost:2000 money
  47. on tick:yield 10 money
  48. unlocked
  49.  
  50. Upgrades
  51.  
  52. *doublemoney1
  53. name:Double Money I
  54. desc:Doubles your clicking.
  55. cost:100 money
  56. passive:multiply money yield of moneyButton by 2
  57. req:50 money
  58.  
  59. *doublemoney2
  60. name:Double Money II
  61. desc:Doubles your clicking.
  62. cost:1000 money
  63. passive:multiply money yield of moneyButton by 2
  64. req:500 money
  65.  
  66. *doublemoney3
  67. name:Double Money III
  68. desc:Doubles your clicking.
  69. cost:10000 money
  70. passive:multiply money yield of moneyButton by 2
  71. req:5000 money
  72.  
  73. *triplemoney1
  74. name:Triple Money I
  75. desc:Triples your clicking.
  76. cost:100000 money
  77. passive:multiply money yield of moneyButton by 3
  78. req:50000 money
  79.  
  80. //building upgrades
  81.  
  82. *buildingUpgrade1
  83. name:Better Machines
  84. desc:Doubles production of machines.
  85. cost:1000 money
  86. passive:multiply yield of machines by 2
  87. req:(machines>=10)
  88.  
  89. *buildingUpgrade2
  90. name:Better Workers
  91. desc:Doubles production of workers.
  92. cost:5000 money
  93. passive:multiply yield of workers by 2
  94. req:(workers>=10)
  95.  
  96. *buildingUpgrade3
  97. name:Copper Mine
  98. desc:Doubles production of miners.
  99. cost:25000 money
  100. passive:multiply yield of miners by 2
  101. req:(miners>=10)
  102.  
  103. Achievements
  104.  
  105. *moneyAchiev1
  106. name:A Pretty Penny
  107. desc:Have 100 money.
  108. req:100 money
Advertisement
Add Comment
Please, Sign In to add comment