Pyronic

Untitled

Dec 23rd, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 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