Pyronic

Untitled

Dec 23rd, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 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. *machine
  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:increase money yield of moneyButton by 1
  50. req:10
  51. //building upgrades
  52.  
  53. *buildingUpgrade1
  54. name:Better Machines
  55. desc:Doubles production of machines.
  56. cost:1000 money
  57. passive:multiply yield of machine by 2
  58. req:(machine>=10)
Advertisement
Add Comment
Please, Sign In to add comment