Pyronic

game

Dec 23rd, 2018 (edited)
620
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.25 KB | None | 0 0
  1. Let's make a game!
  2. name:Money Maker
  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. building cost increase:100%
  12. building cost refund:100%
  13.  
  14. CSS
  15. #game.filtersOn .thing.cantAfford.notOwned
  16. {
  17. filter:blur(1px);
  18. }
  19.  
  20. Layout
  21. use default
  22.  
  23. Resources
  24. *money
  25. name:Money
  26. desc:Total Money
  27. icon:https://i.imgur.com/mPG0i0d.png
  28. show earned
  29. start with:10
  30.  
  31. *time
  32. name:Time
  33. desc:Total Time
  34. icon:https://i.imgur.com/UxevYw6.png
  35. show earned
  36. on tick:yield 1 time
  37.  
  38.  
  39. *tokens
  40. name:Tokens
  41. desc:Tokens are used for buying prestige upgrades
  42. icon:https://i.imgur.com/IBn3GSp.png
  43. hidden when 0
  44.  
  45.  
  46. *multiplier
  47. name:Multiplier
  48. desc:Multiplies your money income
  49. passive:multiply money yield of printers by ((multiplier)*1)
  50. icon:https://i.imgur.com/H4qcpcr.png
  51. start with:1
  52. Buildings
  53.  
  54. *printers
  55. name:Printers
  56. desc:1 money per sec
  57. cost:10 money
  58. on tick:yield 1 money
  59.  
  60. *workers
  61. name:Workers
  62. desc:1 printer per sec
  63. cost:100 money
  64. on tick:yield 1 printers
  65. unlocked
  66.  
  67. *managers
  68. name:Managers
  69. desc:1 workers per sec
  70. cost:10000 money
  71. on tick:yield 1 workers
  72. unlocked
  73.  
  74. *owners
  75. name:Owners
  76. desc:1 manager per sec
  77. cost:1000000 money
  78. on tick:yield 1 managers
  79. unlocked
  80.  
  81. *companies
  82. name:Companies
  83. desc:1 (all of the above) per sec
  84. cost:1000000000 money
  85. on tick:yield 1 printers
  86. on tick:yield 1 workers
  87. on tick:yield 1 managers
  88. on tick:yield 1 owners
  89. req:10 multiplier
  90.  
  91.  
  92. Upgrades
  93. *betterPrinters
  94. name:Better Printers
  95. desc:Doubles the production of printers
  96. cost:100000 money, 10000 printers
  97. passive:multiply money yield of printers by 2
  98. req:(printers>=10000)
  99.  
  100. *photoPrinters
  101.  
  102. name:Photorealistic Printers
  103. desc:Triples the production of printers
  104. cost:100000000 money, 100000 printers
  105. passive:multiply money yield of printers by 3
  106. req:(printers>=100000)
  107.  
  108. *3dPrinters
  109. name:3D Printers
  110. desc:10x the production of printers
  111. cost:1000000000000 money, 10000000 printers
  112. passive:multiply money yield of printers by 10
  113. req:(printers>=10000000)
  114.  
  115. *4dPrinters
  116. name:4D Printers
  117. desc:24x the production of printers
  118. cost:100000000000000000 money, 1000000000000 printers
  119. passive:multiply money yield of printers by 24
  120. req:(printers>=1000000000000)
  121. *fasterWorkers
  122. name:Faster Workers
  123. desc:Doubles the production of workers
  124. cost:100000 printers, 10000 workers
  125. passive:multiply printers yield of workers by 2
  126. req:(workers>=10000)
  127.  
  128. *hecticWorkers
  129. name:Hectic Workers
  130. desc:Triples the production of workers
  131. cost:1000000 printers, 100000 workers
  132. passive:multiply printers yield of workers by 3
  133. req:(workers>=100000)
  134.  
  135. *robotWorkers
  136. name:Robot Workers
  137. desc:10x the production of workers
  138. cost:100000000 printers, 10000000 workers
  139. passive:multiply printers yield of workers by 10
  140. req:(workers>=10000000)
  141.  
  142. *cyborgWorkers
  143. name:Cyborg Workers
  144. desc:24x the production of workers
  145. cost:100000000000000 printers, 1000000000 workers
  146. passive:multiply printers yield of workers by 24
  147. req:(workers>=1000000000)
  148.  
  149.  
  150.  
  151. *betterManagers
  152. name:Better Managers
  153. desc:Doubles the production of managers
  154. cost:100000 workers, 10000 managers
  155. passive:multiply workers yield of managers by 2
  156. req:(managers>=10000)
  157.  
  158. *organizedManagers
  159. name:Organized Managers
  160. desc:Triples the production of managers
  161. cost:100000000 workers, 100000 managers
  162. passive:multiply workers yield of managers by 3
  163. req:(managers>=100000)
  164.  
  165. *betterOwners
  166. name:Better Owners
  167. desc:Doubles the production of owners
  168. cost:100000 managers, 10000 owners
  169. passive:multiply managers yield of owners by 2
  170. req:(owners>=10000)
  171.  
  172. *mindfulOwners
  173. name:Mindful Owners
  174. desc:Triples the production of owners
  175. cost:100000000 managers, 100000 owners
  176. passive:multiply managers yield of owners by 3
  177. req:(owners>=100000)
  178.  
  179. Upgrades
  180.  
  181. *prestige
  182. name:Prestige
  183. desc:Reset the game for tokens (+1 Multiplier)
  184. on earn:yield ((money:earned/4500000)-(tokens:earned)) tokens
  185. on earn:yield 1 multiplier
  186. on earn:lose :Upgrades
  187. on earn:lose :Buildings
  188. on earn:lose money
  189. on earn:yield 10 money
  190. req:10000000 money
  191.  
  192. *superprestige
  193. name:Super Prestige
  194. desc:Reset the game for tokens (+100 Multipliers)
  195. on earn:yield ((money:earned/4500000)-(tokens:earned)) tokens
  196. on earn:yield 100 multiplier
  197. on earn:lose :Upgrades
  198. on earn:lose :Buildings
  199. on earn:lose money
  200. on earn:yield 10 money
  201. req:1000000000000000000000000 money
  202.  
  203.  
  204.  
  205.  
  206.  
  207. //prestige upgrades
  208. *coffee
  209. name:Coffee
  210. desc:x5 production of workers
  211. passive:multiply printers yield of workers by 5
  212. cost:20 tokens
  213. req:1 tokens
  214.  
  215. *superprinters
  216. name:Super Printers
  217. desc:x10 production of printers
  218. passive:multiply money yield of printers by 10
  219. cost:75 tokens
  220. req:20 tokens
  221.  
  222. *companyboost1
  223. name:Company Boost 1
  224. desc:Buildings are 2x better
  225. passive:multiply money yield of printers by 2
  226. passive:multiply printers yield of workers by 2
  227. passive:multiply workers yield of managers by 2
  228. passive:multiply managers yield of owners by 2
  229. cost:350 tokens
  230. req:150 tokens
  231.  
  232. *donuts
  233. name:Donuts
  234. desc:x20 production of workers
  235. passive:multiply printers yield of workers by 20
  236. cost:1250 tokens
  237. req:450 tokens
  238.  
  239. *specialscanner
  240. name:Special Scanner
  241. desc:x45 production of printers
  242. passive:multiply money yield of printers by 45
  243. cost:27500 tokens
  244. req:10000 tokens
  245.  
  246. *companyboost2
  247. name:Company Boost 2
  248. desc:Buildings are 2x better
  249. passive:multiply money yield of printers by 3
  250. passive:multiply printers yield of workers by 3
  251. passive:multiply workers yield of managers by 3
  252. passive:multiply managers yield of owners by 3
  253. cost:150000 tokens
  254. req:75000 tokens
  255.  
  256. *multi1
  257. name:Multiplier Boost I
  258. desc:+1 multiplier
  259. on earn:yield 1 multiplier
  260. cost:1500000 tokens
  261. req:1 tokens
  262.  
  263. *multi2
  264. name:Multiplier Boost II
  265. desc:+2 multiplier
  266. on earn:yield 2 multiplier
  267. cost:1500000000 tokens
  268. req:1 tokens
  269.  
  270. *multi3
  271. name:Multiplier Boost III
  272. desc:+3 multiplier
  273. on earn:yield 3 multiplier
  274. cost:15000000000000 tokens
  275. req:1 tokens
  276.  
  277. *multi4
  278. name:Multiplier Boost IV
  279. desc:+4 multiplier
  280. on earn:yield 5 multiplier
  281. cost:150000000000000000 tokens
  282. req:1 tokens
  283.  
  284. *multi5
  285. name:Multiplier Boost V
  286. desc:x2 multiplier
  287. on earn:yield (multiplier) multiplier
  288. cost:1500000000000000000000000000000000000000 tokens
  289. req:1 tokens
  290. *Exercise
  291. name:Exercise
  292. desc:x10 production of workers
  293. passive:multiply printers yield of workers by 10
  294. cost:750000000 tokens
  295. req:10000000 tokens
  296.  
  297. *moneyuniverse
  298. name:Money Universe
  299. desc:xNonillion production of workers
  300. passive:multiply printers yield of workers by 1000000000000000000000000000000
  301. cost:1000000000000000000000000000000000000000000000000000000000000 tokens
  302. req:1 tokens
  303.  
  304. *qb1
  305. name:Quick Buy 1
  306. desc:+1 million companies
  307. on earn:yield 1000000 companies
  308. cost:1500000000 tokens
  309. req:1 tokens
  310.  
  311. *qb2
  312. name:Quick Buy 2
  313. desc:+1 quadrillion companies
  314. on earn:yield 1000000000000000 companies
  315. cost:15000000000000000000000 tokens
  316. req:1 tokens
  317.  
  318. *lucky
  319. name:Lucky!
  320. desc:+x7.77 septillion production of printers
  321. passive:multiply money yield of printers by 7777777777777777777777777
  322. cost:2 tokens
  323. req:7777777777777777777777777 tokens
Add Comment
Please, Sign In to add comment