Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 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. on click:if (have goldenTouch and chance(1%)) yield 1 goldenBall
  24. icon:https://myrealdomain.com/images/football-transparent.png
  25. no text
  26. class:bigButton hasFlares
  27. icon class:shadowed
  28. tooltip origin:bottom
  29. tooltip class:red
  30.  
  31. Resources
  32. *ball|balls
  33. name:Ball|Balls
  34. desc:These are your balls. You can use them to purchase things. Your goal is to have as many balls as possible!
  35. icon:icons[0,0]
  36. class:noBackground
  37. show earned
  38.  
  39. *goldenBall|goldenBalls
  40. name:Golden ball|Golden balls
  41. desc:These shiny balls are terribly rare, terribly precious and terribly fun to use!
  42. icon:icons[0,1]
  43. class:noBackground
  44. hidden when 0
  45.  
  46. Shinies
  47. *luckySoccerBall
  48. on click:log Woop
  49. movement:onRight moveLeft fade bounce:0.05
  50. frequency:60
  51. frequency variation:30
  52. icon:https://www.teenmissions.org/wp-content/uploads/2016/05/1407858226.png
  53. class:bigButton
  54. on click:
  55. $boost=1
  56. if (have clover) $boost=4
  57. if (chance(25%))
  58. //get at least 7, or between 1 and 3 minutes of our ball production
  59. $amount=max(7,random(balls:ps*60*1,bunnies:ps*60*3))*$boost
  60. toast The lucky soccer ball grants you<//><b>[$amount] balls</b>.
  61. yield $amount balls
  62. else
  63. $amount=1*$boost
  64. toast The lucky soccer ball grants you<//><b>[$amount] golden balls[s?$amount]</b>!
  65. yield $amount goldenBalls
  66. end
  67. end
  68.  
  69. Buildings
  70. *TEMPLATE
  71. on click:anim glow
  72.  
  73. *curling league|curling leagues
  74. name:Curling league|Curling leagues
  75. desc:A small profestional sport.<//><b>Effect:</b><.>Produces 1 ball every 10 seconds.
  76. icon:icons[3,0]
  77. cost:15 balls
  78. on tick:yield 0.1 ball
  79. unlocked
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement