Pyronic

Untitled

Dec 23rd, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 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. Upgrades
  44.  
  45. *doublemoney1
  46. name:Double Money I
  47. desc:Doubles your clicking.
  48. cost:100 Money
  49. passive:multiply Money yield of moneyButton by 2
  50. req:50 Money
  51.  
  52. *doublemoney2
  53. name:Double Money II
  54. desc:Doubles your clicking.
  55. cost:1000 Money
  56. passive:multiply Money yield of moneyButton by 2
  57. req:500 Money
  58.  
  59. //building upgrades
  60.  
  61. *buildingUpgrade1
  62. name:Better Machines
  63. desc:Doubles production of machines.
  64. cost:1000 Money
  65. passive:multiply yield of machines by 2
  66. req:(machines>=10)
  67.  
  68. *buildingUpgrade2
  69. name:Better Workers
  70. desc:Doubles production of workers.
  71. cost:5000 Money
  72. passive:multiply yield of workers by 2
  73. req:(workers>=10)
Advertisement
Add Comment
Please, Sign In to add comment