Advertisement
Somebody1297

Potato Clicker

Feb 18th, 2020
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.27 KB | None | 0 0
  1. Let's make a game!
  2. name:Potato Clicker
  3. by:Totally Not Maddox
  4. desc:Click and gain some shiny, nice potatoes! Save up and then buy upgrades to get more PpS (Potatoes per Second)!
  5. created:2/18/2020
  6. version:Beta
  7. Settings
  8. building cost increase:115%
  9. building cost refund:75%
  10. stylesheet:stuff/bigBlue.css
  11. Layout
  12. use default
  13. Buttons
  14. *potato
  15. name:Potato
  16. desc:Click this potato to grant yourself more potatoes!
  17. on click:anim icon wobble
  18. on click:yield 1 potatoes
  19. no text
  20. class:bigButton hasFlares
  21. icon class:shadowed
  22. tooltip origin:bottom
  23. tooltip class:red
  24. icon:https://sdl-stickershop.line.naver.jp/products/0/0/1/1361417/android/stickers/14287238.png;compress=true
  25. Resources
  26. //Regular Resources
  27.  
  28. *potatoes
  29. name:Potatoes
  30. desc:These are the potatoes that you have gained that you can spend.
  31. show earned
  32. class:noBackground
  33. icon:http://pixelartmaker.com/art/8553003eb90b0b7.png
  34.  
  35. *potatoChips
  36. name:Potato Chips
  37. desc:Extra shiny and crunchy potato chips that you can use to buy upgrades!
  38. show earned
  39. hidden when 0
  40. class:noBackground
  41. icon:http://pixelartmaker.com/art/611228231a6b93e.png
  42.  
  43. //Variable Resources
  44.  
  45. *cursorp
  46. name:Cursor Yield
  47. desc:How much Cursors make every second.
  48. text:[cursorp:ps] Cursors
  49. always hidden
  50.  
  51. *masherp
  52. name:Masher Yield
  53. desc:How much Mashers make every second.
  54. text:[masherp:ps] Mashers
  55. always hidden
  56.  
  57. *farmp
  58. name:Farm Yield
  59. desc:How much Farms make every second.
  60. text:[farmp:ps] Farms
  61. always hidden
  62.  
  63. *factoryp
  64. name:Factory Yield
  65. desc:How much Factories make every second.
  66. text:[factoryp:ps] Factories
  67. always hidden
  68.  
  69. *minep
  70. name:Mine Yield
  71. desc:How much Mines make every second.
  72. text:[factory:ps] Mines
  73. always hidden
  74. Buildings
  75. *TEMPLATE
  76. on click:anim glow
  77.  
  78. *cursor
  79. name:Cursors
  80. desc:Gets you some cursors to automatically click for you.<//><b>Effect:</b><.>Grants +0.2 potatoes a second.<//><b>Current Effect:</b><.>Producing <b>[cursorp:ps]</b> potatoes a second!
  81. on tick:
  82. yield 0.2 potatoes
  83. yield 0.2 cursorp
  84. end
  85. cost:10 potatoes
  86. icon:http://pixelartmaker.com/art/3e273d1c5df1be5.png
  87. unlocked
  88.  
  89. *masher
  90. name:Mashers
  91. desc:Buys you some potato mashers to make more potatoes!<//><b>Effect:</b><.>Grants +1 potatoes a second.<//><b>Current Effect:</b><.>Producing <b>[masherp:ps]</b> potatoes a second!
  92. on tick:
  93. yield 1 potatoes
  94. yield 1 masherp
  95. end
  96. cost:100 potatoes
  97. icon:http://pixelartmaker.com/art/0b4e4db549e46e9.png
  98. req:100 potatoes:earned
  99.  
  100. *farm
  101. name:Farms
  102. desc:Hires farmers to grow potatoes.<//><b>Effect:</b><.>Grants +5 potatoes a second.<//><b>Current Effect:</b><.>Producing <b>[farmp:ps]</b> potatoes a second!
  103. on tick:
  104. yield 5 potatoes
  105. yield 5 farmp
  106. end
  107. cost:1500 potatoes
  108. icon:http://pixelartmaker.com/art/0a02e7e6e5bfbe1.png
  109. req:1000 potatoes:earned
  110.  
  111. *factory
  112. name:Factories
  113. desc:Potato factories that develop potatoes from scratch!<//><b>Effect:</b><.>Grants +10 potatoes a second.<//><b>Current Effect:</b><.>Producing <b>[factoryp:ps]</b> potatoes a second!
  114. on tick:
  115. yield 10 potatoes
  116. yield 10 factoryp
  117. end
  118. cost:10500 potatoes
  119. icon:http://pixelartmaker.com/art/e63f83c60662459.png
  120. req:9000 potatoes:earned
  121.  
  122. *mine
  123. name:Mines
  124. desc:Potato mineshafts that have potatoes! How convenient. <//><b>Effect:</b><.>Grants +100 potatoes a second<//><b>Currect Effect:</b><.>Producing <b>[minep:ps]</b> potatoes a second!
  125. on tick:
  126. yield 100 potatoes
  127. yield 100 minep
  128. end
  129. cost:25000 potatoes
  130. icon:http://pixelartmaker.com/art/84f65a23b2ed0a4.png
  131. req:20000 potatoes:earned
  132. Upgrades
  133. //Double Upgrades
  134.  
  135. *doubleclick
  136. name:Bronze Clicks
  137. desc:<//><b>Effect:</b><.>Doubles the amount of your clicking power, and your cursor PpS!
  138. cost:1 potatoChips
  139. cost:100 potatoes
  140. req:cursor>=1
  141. passive:multiply yield of cursor by 2
  142. passive:multiply yield of cursorp by 2
  143. passive:multiply yield of potato by 2
  144. icon:http://pixelartmaker.com/art/c8ccb2cb71f0d17.png
  145.  
  146. *doubleclick1
  147. name:Silver Clicks
  148. desc: Replaces you bronze clicks with silver!<//><b>Effect:</b>Doubles the amount of your clicking power, and your cursor PpS!
  149. cost:2 potatoChips
  150. cost:1000 potatoes
  151. req:doubleclick
  152. req:cursor>=10
  153. passive:multiply yield of cursor by 2
  154. passive:multiply yield of cursorp by 2
  155. passive:multiply yield of potato by 2
  156. icon:http://pixelartmaker.com/art/fadc99b83e9f120.png
  157.  
  158. *doubleclick2
  159. name:Golden Clicks
  160. desc:Replaces your silver clicks with gold!<//><b>Effect:</b>Doubles the amount of your clicking power, and your cursor PpS!
  161. cost:7 potatoChips
  162. cost:100000 potatoes
  163. req:doubleclick1
  164. req:cursor>=50
  165. icon:http://pixelartmaker.com/art/0861290bf16001a.png
  166. passive:multiply yield of cursor by 2
  167. passive:multiply yield of cursorp by 2
  168. passive:multiply yield of potato by 2
  169.  
  170. *doublemasher
  171. name:Gold Mashers
  172. desc:Instead of regular one's, your mashers are now made of gold!<//><b>Effect:</b><.>Doubles the amount of your masher PpS!
  173. cost:3 potatoChips
  174. cost:1000 potatoes
  175. passive:multiply yield of masher by 2
  176. passive:multiply yield of masherp by 2
  177. req:masher>=10
  178. icon:http://pixelartmaker.com/art/9380b7c763174cd.png
  179.  
  180. *doublefarm
  181. name:Robo-Farmers
  182. desc:Robot farmers that grow potatoes faster and more efficiently! <//><b>Effect:</b><.>Doubles the amount of your farm PpS!
  183. cost:4 potatoChips
  184. cost:5000 potatoes
  185. req:farm>=10
  186. passive:multiply yield of farm by 2
  187. passive:multiply yield of farmp by 2
  188. icon:http://pixelartmaker.com/art/3eea14fcb0ac585.png
  189.  
  190. *doublefactory
  191. name:Auto-Machines
  192. desc:Trades out the people working at your factories for machines to do the work for them.<//><b>Effect:</b><.>Doubles the amount of your factory PpS!
  193. cost:5 potatoChips
  194. cost:15000 potatoes
  195. passive:multiply yield of factory by 2
  196. passive:multiply yield of factoryp by 2
  197. req:factory>=10
  198. icon:http://pixelartmaker.com/art/9af32f5b596d5ac.png
  199.  
  200. //Production Upgrades
  201.  
  202. *productionUP1
  203. name:Potato Recipe
  204. desc:Now you can make handmade potatoes!<//><b>Effect:</b><.>PpS * 1% of your PpS
  205. passive:multiply yield of potatoes by 1.01
  206. icon:http://pixelartmaker.com/art/3129447ec3fe292.png
  207. req:500000 potatoes
  208. cost:1000000 potatoes
  209. Shinies
  210. *potatoChip
  211. on click:log Woop
  212. name:Potato Chip
  213. desc:Click this to get a potato chip!
  214. frequency:90
  215. on click:
  216. yield 1 potatoChips
  217. toast The bag of chips grants you<//><b>1 fresh and crunchy potato chip</b>!
  218. end
  219. icon:http://pixelartmaker.com/art/67d81f3fdfc7f97.png
  220. duration:30
  221. movement:onLeft moveRight fade bounce:0.05
  222. no text
  223. Achievements
  224. //Click Achievs
  225.  
  226. *10clickpotato
  227. name:Oh? Potato Appeared!
  228. desc:Click the potato <b>10</b> times. Every journey starts somewhere!
  229. req:10 potato:clicks
  230. *500clickpotato
  231. name:*clap clap clap*
  232. desc:Click the potato <b>1000</b> times. Even I'm impressed!
  233. req:500 potato:clicks
  234.  
  235. //Potatoes Altogether Achievs
  236.  
  237. *500potato
  238. name:Getting Somewhere
  239. desc:Congragulations on getting 500 potatoes! Have one to celebrate.
  240. req:500 potatoes
  241.  
  242. //Building Achievs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement