Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. Let's make a game!
  2. name:Sports Clicker
  3. by:Cooper Nervick
  4. desc:This is an idle game based around all the sports out there.<//>collect as many balls as possible!
  5. created:16/10/2019
  6. updated:16/10/2019
  7. version:1
  8.  
  9. Settings
  10. background:https://ak1.picdn.net/shutterstock/videos/9400901/thumb/1.jpg
  11. building cost increase:115%
  12. building cost refund:50%
  13.  
  14. Layout
  15. use default
  16.  
  17. Buttons
  18. *ballButton
  19. name:Make a ball
  20. desc:Click this football to get more balls!
  21. on click:anim icon wobble
  22. on click:yield 1 ball
  23. class:bigButton hasFlares
  24. icon class:shadowed
  25. tooltip origin:bottom
  26. tooltip class:red
  27.  
  28. Resources
  29. *ball|balls
  30. name:Ball|Balls
  31. desc:These are your balls. You can use them to purchase things. Your goal is to have as many balls as possible!
  32. icon:icons[0,0]
  33. class:noBackground
  34. show earned
  35.  
  36. *goldenBall|goldenBalls
  37. name:Golden ball|Golden balls
  38. desc:These shiny balls are terribly rare, terribly precious and terribly fun to use!
  39. icon:icons[0,1]
  40. class:noBackground
  41. hidden when 0
  42.  
  43. Shinies
  44. *luckySoccerBall
  45. on click:log Woop
  46. movement:onRight moveLeft fade bounce:0.05
  47. frequency:60
  48. frequency variation:30
  49. icon:https://www.teenmissions.org/wp-content/uploads/2016/05/1407858226.png
  50. class:bigButton
  51. on click:
  52. $boost=1
  53. if (have clover) $boost=4
  54. if (chance(25%))
  55. //get at least 7, or between 1 and 3 minutes of our ball production
  56. $amount=max(7,random(balls:ps*60*1,bunnies:ps*60*3))*$boost
  57. toast The lucky soccer ball grants you<//><b>[$amount] balls</b>.
  58. yield $amount balls
  59. else
  60. $amount=1*$boost
  61. toast The lucky soccer ball grants you<//><b>[$amount] golden balls[s?$amount]</b>!
  62. yield $amount goldenBalls
  63. end
  64. end
  65.  
  66. Buildings
  67. *TEMPLATE
  68. on click:anim glow
  69.  
  70. *curlingLeague|curlingLeagues
  71. name:Curling league|Curling leagues
  72. desc:A small profestional sport.<//><b>Effect:</b><.>Produces 1 ball every 10 seconds.
  73. icon:icons[3,0]
  74. cost:15 balls
  75. on tick:yield 0.1 ball
  76. unlocked
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement