IronDizaster

Untitled

Feb 28th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 58.85 KB | None | 0 0
  1. Let's make a game!
  2. name:Bubble Gum Clicker
  3. by:IronDizaster
  4. forum post:Bubble Gum Clicker
  5. desc:<#ff99ff>You live in a world where Bubbles can be sold for cash.<//></><#ff99ff>Do you have what it takes to become a true bubble gum capitalist?
  6. created:25/01/2019
  7. version:2
  8.  
  9. Settings
  10. building cost increase:115%
  11. building cost refund:50%
  12. stylesheet:stuff/bigBlue.css
  13. tiling background:https://i.imgur.com/P3NJ6Ch.png
  14. Shinies
  15.  
  16. *goldenBubble
  17. name:Golden Bubble
  18. on click:
  19. if (chance(30%))
  20. $amount=(bubbles:ps*150)
  21. yield $amount bubbles
  22. toast <#ffcc00>Lucky!</#> You gained <#ffcc00>[$amount]</#> bubbles!
  23. else
  24. $amount=(bubbles:ps*60)
  25. yield $amount bubbles
  26. toast You gained <#ff99ff>[$amount]</#> bubbles.
  27.  
  28.  
  29. end
  30. end
  31.  
  32. movement:anywhere growShrink
  33. icon:https://i.imgur.com/YzHJtXM.png
  34. frequency:
  35. duration:25
  36. frequency:20
  37. frequency variation:375
  38. no text
  39. no tooltip
  40. class:hasFlares
  41.  
  42.  
  43. Resources
  44. *bubble|bubbles
  45. name:Bubbles
  46. icon:https://i.imgur.com/NyBboJj.png
  47.  
  48.  
  49.  
  50. *cash
  51. name:Cash
  52. icon:https://i.imgur.com/Et6ATxG.png
  53.  
  54.  
  55.  
  56.  
  57.  
  58. *CashPS1
  59. hidden
  60.  
  61. *MPrinterPS
  62. hidden
  63.  
  64. *MachinePS1
  65. hidden
  66.  
  67.  
  68. *WorkerPS
  69. hidden
  70.  
  71. *MinePS
  72. hidden
  73.  
  74. *FactoryPS
  75. hidden
  76.  
  77. *LabPS
  78. hidden
  79.  
  80. *3DPrinterPS
  81. hidden
  82.  
  83. *ShipmentPS
  84. hidden
  85.  
  86. *WizardPS
  87. hidden
  88.  
  89.  
  90.  
  91.  
  92.  
  93. CSS
  94. .thing
  95. {
  96.  
  97. border-radius:8px;
  98. }
  99.  
  100.  
  101.  
  102. #box-changelog {
  103. height: 200px;
  104. border: 4px solid black;
  105. border-radius:21px;
  106. padding: 3px
  107. margin:0px;
  108. }
  109.  
  110. .wobble2
  111. {
  112. animation:wobble2 0.5s;
  113. }
  114. @keyframes wobble2
  115. {
  116. 0% {transform:translateZ(0) scale(1.05);}
  117. 20% {transform:translateZ(0) scale(0.95);}
  118. 40% {transform:translateZ(0) scale(1.05);}
  119. 60% {transform:translateZ(0) scale(0.975);}
  120. 80% {transform:translateZ(0) scale(1.025);}
  121. 99% {transform:scale(1,1)}
  122. 100% {}
  123. }
  124.  
  125. .OButton {
  126.  
  127. display: inline-block;
  128. width: 200px;
  129. height: 50px;
  130. padding: 5px;
  131. outline:3px inset #ff6699;
  132. background-color:#ffb3cc;
  133. border-radius:0px;
  134.  
  135. }
  136.  
  137.  
  138.  
  139.  
  140.  
  141. Layout
  142.  
  143. *main
  144. contains:res, buttons
  145. *res
  146. contains:Resources
  147. class:fullWidth
  148. *buttons
  149. contains:Buttons
  150. *store
  151. contains:buildings, upgrades
  152. *buildings
  153. contains:BulkDisplay, Buildings, changelog
  154. header:Buildings
  155. tooltip origin:left
  156.  
  157.  
  158. *upgrades
  159. contains:Upgrades
  160. header:Upgrades
  161. costs:hide
  162. names:hide
  163.  
  164.  
  165. *sellbubbles
  166. contains:tag:Sell
  167. in:res
  168. class:bottom
  169.  
  170. *changelog
  171. contains:Log
  172. class:bottom
  173.  
  174. *OButton
  175. in:main
  176. class:bottom
  177. contains:tag:bUPGRODO
  178. contains:tag:UPGRODO
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193. Buttons
  194.  
  195.  
  196.  
  197. *BubbleGum
  198. name:Bubble Gum
  199. desc:Pop to gain more income!
  200. on click:yield 1 bubble
  201. on click:anim wobble2
  202.  
  203.  
  204.  
  205. on click:if (have PointyClicks) yield (bubbles:ps*0.001) bubbles
  206. on click:if (have SteelClicks) yield (bubbles:ps*0.001) bubbles
  207. on click:if (have TitaniumClicks) yield (bubbles:ps*0.001) bubbles
  208. on start:log <t><#e6ffe6><u>Change Log</u></#></t><//></><t><#404040>17/03/2019 - Update 3</#><//><.>Added the changelog you're reading right now<.>Bubble gum button now wobbles on click<.>Added 29 new upgrades (now 98)<.>Added a background<.>1 new building - the money printer<.>37 new achievements (now 47)<.>New shiny: <#ffcc00>The Golden Bubble!</#><//>Has a 30% chance to be a <#ffcc00>Lucky</#> Golden Bubble!<.>Buildings now show their production info<.>Changed more ugly sprites<//></><t><#404040>23/02/2019 - Update 2</#><.>Added new resource - cash<.>21 new upgrades - now 69 <b>( ͡° ͜ʖ ͡°)</b><.>Upgrade edges are now round<.>Upgrades wobble on click<.>10 Achievements<.>Nerfed buildings & ramped up prices (sorry)<.>Changed ugly sprites<//></><#404040><t>15/02/2019 - Release</#></t><.>48 upgrades<.>7 buildings<.>1 resource<.>not much else
  209. on load:log <t><#e6ffe6><u>Change Log</u></#></t><//></><t><#404040>17/03/2019 - Update 3</#><//><.>Added the changelog you're reading right now<.>Bubble gum button now wobbles on click<.>Added 29 new upgrades (now 98)<.>Added a background<.>1 new building - the money printer<.>37 new achievements (now 47)<.>New shiny: <#ffcc00>The Golden Bubble!</#><//>Has a 30% chance to be a <#ffcc00>Lucky</#> Golden Bubble!<.>Buildings now show their production info<.>Changed more ugly sprites<//></><t><#404040>23/02/2019 - Update 2</#><.>Added new resource - cash<.>21 new upgrades - now 69 <b>( ͡° ͜ʖ ͡°)</b><.>Upgrade edges are now round<.>Upgrades wobble on click<.>10 Achievements<.>Nerfed buildings & ramped up prices (sorry)<.>Changed ugly sprites<//></><#404040><t>15/02/2019 - Release</#></t><.>48 upgrades<.>7 buildings<.>1 resource<.>not much else
  210. class:bigButton hasFlares
  211. icon:https://i.imgur.com/suGXlaB.png
  212. icon class:shadowed
  213. tooltip origin:bottom
  214. tooltip class:red
  215.  
  216. *sell
  217. name:Sell Bubbles
  218. desc:Sell your bubbles for profit!<//></><i>HUGE thanks to <b><#0F92FF>RadicalRobot</#></b> for telling me how to do this! (Go play his game Jelly Miner)
  219. on click:anim glow
  220. on click:yield (1*bubbles) cash
  221. on click:if (have PlainBubbles) yield (0.05*bubbles) cash
  222. on click:if (have OrangeBubbles) yield (0.05*bubbles) cash
  223. on click:if (have LemonBubbles) yield (0.05*bubbles) cash
  224. on click:if (have WatermelonBubbles) yield (0.05*bubbles) cash
  225. on click:if (have StrawberryBubbles) yield (0.05*bubbles) cash
  226. on click:if (have GrapeBubbles) yield (0.05*bubbles) cash
  227. on click:if (have MangoBubbles) yield (0.05*bubbles) cash
  228. on click:if (have MintBubbles) yield (0.05*bubbles) cash
  229. on click:if (have LimeBubbles) yield (0.05*bubbles) cash
  230. on click:if (have JamFilledBubbles) yield (0.05*bubbles) cash
  231. on click:if (have PumpkinBubbles) yield (0.05*bubbles) cash
  232. on click:if (have WarheadBubbles) yield (0.05*bubbles) cash
  233. on click:if (have ChilliBubbles) yield (0.05*bubbles) cash
  234. on click:if (have MiniBubbles) yield (0.05*bubbles) cash
  235. on click:if (have CubeBubbles) yield (0.1*bubbles) cash
  236. on click:if (have JawbreakerBubbles) yield (0.1*bubbles) cash
  237. icon:https://i.imgur.com/7vChxQR.png
  238. on click:lose bubbles
  239. tooltip origin:bottom
  240. class:bottom
  241. tag:Sell
  242.  
  243.  
  244. *boughtUpgrades
  245. name:Bought Upgrades
  246. tag:bUPGRODO
  247. on click:show tag:ownedupgrade
  248. on click:hide tag:upgrade
  249. on click:anim glow
  250. on click:show tag:UPGRODO
  251. on click:hide tag:bUPGRODO
  252. class:OButton
  253.  
  254.  
  255. *UPgrades
  256. name:Upgrades
  257. tag:UPGRODO
  258. on click:
  259. show tag:upgrade
  260. hide upgrades
  261. hide tag:ownedupgrade
  262. show tag:bUPGRODO
  263. hide tag:UPGRODO
  264. anim glow
  265. class:OButton
  266. if (have PlainBubbles) hide PlainBubbles
  267. if (have OrangeBubbles) hide OrangeBubbles
  268. if (have StrawberryBubbles) hide StrawberryBubbles
  269. if (have LemonBubbles) hide LemonBubbles
  270. if (have GrapeBubbles) hide GrapeBubbles
  271. if (have WatermelonBubbles) hide WatermelonBubbles
  272. if (have MangoBubbles) hide MangoBubbles
  273. if (have MintBubbles) hide MintBubbles
  274. if (have LimeBubbles) hide LimeBubbles
  275. if (have JamFilledBubbles) hide JamFilledBubbles
  276. if (have PumpkinBubbles) hide PumpkinBubbles
  277. if (have WarheadBubbles) hide WarheadBubbles
  278. if (have ChilliBubbles) hide ChilliBubbles
  279. if (have MiniBubbles) hide MiniBubbles
  280. if (have JawbreakerBubbles) hide JawbreakerBubbles
  281. if (have CubeBubbles) hide CubeBubbles
  282.  
  283.  
  284.  
  285.  
  286. hidden
  287.  
  288. end
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296. Buildings
  297.  
  298. *TEMPLATE
  299. on click:anim glow
  300.  
  301.  
  302. *debugBuilding
  303. name:FOR TESTING
  304. desc:none
  305. cost:0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 cash
  306. on tick:yield 999999999 cash
  307. on tick:yield 999999999 bubbles
  308. unlocked
  309.  
  310.  
  311. *bubbleMachine|bubbleMachines
  312. name:Bubble Machine|Bubble Machines
  313. desc:<//></>A simple bubble machine.<//><b>Base Effect:</b><.>0.1 bubble/second<.>0.1 cash/second<//></><q><b>1</b> Bubble Machine produces around <b>[((MachinePS1:ps)/bubbleMachine)]</b> BPS & <b>[((CashPS1:ps)/bubbleMachine)]</b> CPS. <//><q>You have [?(this=0)|<b>0</b> Bubble Machines.|<b>[this]</b> Bubble Machines] producing around <b>[MachinePS1:ps]</b> BPS & <b>[CashPS1:ps]</b> CPS.<//></><q>Note:Idle Game Maker currently doesn't have support for decimal numbers.</q>
  314. cost:15 cash
  315. on tick:yield 0.1 cash
  316. on tick:yield 0.1 bubbles
  317. on tick:yield 0.1 MachinePS1
  318. on tick:yield 0.1 CashPS1
  319. unlocked
  320. tag:building
  321. icon:https://i.imgur.com/DLQyldc.png
  322.  
  323. *MoneyPrinter|MoneyPrinters
  324. name:Money Printer|Money Printers
  325. desc:<//></>A Money Printer to print money for you.<//><b>Base Effect:</b><.>2 cash/second<//></><//><q><b>1</b> Money Printer produces around <b>[((MPrinterPS:ps)/MoneyPrinter)]</b> CPS.<//><q>You have [?(this=0)|<b>0</b> Money Printers.|<b>[this]</b> Money Printers] producing around <b>[MPrinterPS:ps]</b> CPS.
  326. cost:1000 cash
  327. on tick:yield 2 cash
  328. on tick:yield 2 MPrinterPS
  329. icon:https://i.imgur.com/sYZ5nGZ.png
  330. tag:building
  331. req:750 cash:earned
  332.  
  333. *bubbleWorker|bubbleWorkers
  334. name:Bubble Worker|Bubble Workers
  335. desc:<//></>A bubble worker to blow bubbles for you.<//><b>Base Effect:</b><.>1 bubble/second<//></><//><q><b>1</b> Bubble Worker produces around <b>[((WorkerPS:ps)/bubbleWorker)]</b> BPS.<//><q>You have [?(this=0)|<b>0</b> Bubble Workers.|<b>[this]</b> Bubble Workers] producing around <b>[WorkerPS:ps]</b> BPS.
  336. icon:https://i.imgur.com/PCeOsZ7.png
  337. cost:100 cash
  338. on tick:yield 1 bubbles
  339. tag:building
  340. on tick:yield 1 WorkerPS
  341.  
  342. req:75 cash:earned
  343.  
  344. *bubbleMine|bubbleMines
  345. name:Bubble Mine|Bubble Mines
  346. icon:https://i.imgur.com/NI3Rzwv.png
  347. desc:<//></>A mine full of bubbles.<//><b>Base Effect:</b><.>21 bubbles/second<//></><//><q><b>1</b> Bubble Mine produces around <b>[((MinePS:ps)/bubbleMine)]</b> BPS.<//><q>You have [?(this=0)|<b>0</b> Bubble Mines.|<b>[this]</b> Bubble Mines] producing around <b>[MinePS:ps]</b> BPS.
  348. cost:5500 cash
  349. tag:building
  350. on tick:yield 21 bubbles
  351. on tick:yield 21 MinePS
  352. req:6000 cash:earned
  353.  
  354. *bubbleFactory|bubbleFactories
  355. name:Bubble Factory|Bubble Factories
  356. desc:<//></>A factory that produces alot of bubbles.<//><b>Base Effect:</b><.>80 bubbles/second<//></><q><b>1</b> Bubble Factory produces around <b>[((FactoryPS:ps)/bubbleFactory)]</b> BPS.<//><q>You have [?(this=0)|<b>0</b> Bubble Factories.|<b>[this]</b> Bubble Factories] producing around <b>[FactoryPS:ps]</b> BPS.
  357. icon:https://i.imgur.com/g7onB8S.png
  358. cost:50000 cash
  359. tag:building
  360. on tick:yield 80 bubbles
  361. on tick:yield 80 FactoryPS
  362. req:50000 cash:earned
  363.  
  364. *bubbleLab|bubbleLabs
  365. name:Bubble Lab|Bubble Labs
  366. desc:<//></>A scientific research facility on bubbles.<//><b>Base Effect:</b><.>250 bubbles/second<//></><//><q><b>1</b> Bubble Lab produces around <b>[((LabPS:ps)/bubbleLab)]</b> BPS.<//><q>You have [?(this=0)|<b>0</b> Bubble Labs.|<b>[this]</b> Bubble Labs] producing around <b>[LabPS:ps]</b> BPS.
  367. cost:550000 cash
  368. tag:building
  369. icon:https://i.imgur.com/NTW46aJ.png
  370. on tick:yield 250 bubbles
  371. on tick:yield 250 LabPS
  372. req:75000 cash:earned
  373.  
  374. *3DPrinter|3DPrinters
  375. name:3D Printer|3D Printers
  376. desc:<//></>A 3D printer to print bubbles.<//><b>Base Effect:</b><.>1111 bubbles/second<//></><//><q><b>1</b> 3D Printer produces around <b>[((3DPrinterPS:ps)/3DPrinter)]</b> BPS.<//><q>You have [?(this=0)|<b>0</b> 3D Printers.|<b>[this]</b> 3D Printers] producing around <b>[3DPrinterPS:ps]</b> BPS.
  377. cost:2500000 cash
  378. icon:https://i.imgur.com/7B8pCOy.png
  379. on tick:yield 1111 bubbles
  380. on tick:yield 1111 3DPrinterPS
  381. req:3000000 cash:earned
  382. tag:building
  383.  
  384. *Shipment
  385. name:Shipment
  386. desc:<//></>A rocket to bring in bubbles from the bubble planet.<//></><//><b>Base Effect:</b><.>6000 bubbles/second<//></><//><q><b>1</b> Shipment produces around <b>[((ShipmentPS:ps)/Shipment)]</b> BPS.<//><q>You have [?(this=0)|<b>0</b> Shipment.|<b>[this]</b> Shipment] producing around <b>[ShipmentPS:ps]</b> BPS.
  387. cost:18500000 cash
  388. icon:https://i.imgur.com/D7x42kd.png
  389. on tick:yield 6000 bubbles
  390. on tick:yield 6000 ShipmentPS
  391. req:20000000 cash:earned
  392. tag:building
  393.  
  394. *Wizard
  395. name:Wizard|Wizards
  396. desc:<//></>A wizard that creates bubbles through magic.<//></><//><b>Base Effect:</b><.>37500 bubbles/second<//></><//><q><b>1</b> Wizard produces around <b>[((WizardPS:ps)/Wizard)]</b> BPS.<//><q>You have [?(this=0)|<b>0</b> Wizards.|<b>[this]</b> Wizards] producing around <b>[WizardPS:ps]</b> BPS.
  397. cost:150000000 cash
  398. icon:https://i.imgur.com/CFro1Xt.png
  399. on tick:yield 37500 bubbles
  400. on tick:yield 37500 WizardPS
  401. req:180000000 cash:earned
  402.  
  403. Upgrades
  404.  
  405. *TEMPLATE
  406. on click:anim wobble
  407.  
  408.  
  409.  
  410. *PointyClicks
  411. name:Pointy Clicks
  412. desc:With pointier clicks, you gain more bubbles per click!<//><b>Effect:</b><.>Clicking gains 0.01% of your BPS.
  413. cost:100000 cash
  414. tag:upgrade
  415. req:10000 cash:earned
  416. icon:https://i.imgur.com/nFTo3CM.png
  417.  
  418. *SteelClicks
  419. name:Steel Clicks
  420. desc:With heavier clicks, you click the bubble harder, allowing the button to yield more bubbles!<//><b>Effect:</b><.>Clicking gains 0.01% of your BPS.
  421. cost:10000000 cash
  422. tag:upgrade
  423. req:1000000 cash:earned
  424. icon:https://i.imgur.com/3qIjEcG.png
  425.  
  426. *TitaniumClicks
  427. name:Titanium Clicks
  428. desc:Even heavier and stronger.<//><b>Effect:</b><.>Clicking gains 0.01% of your BPS.
  429. cost:125000000 cash
  430. tag:upgrade
  431. req:80000000 cash:earned
  432. icon:https://i.imgur.com/Zrexwsh.png
  433.  
  434. *BetterFingers
  435. name:Better Fingers
  436. desc:For every building you own, you get more motivated to click more efficiently.<//><b>Effect:</b><.>+0.05 bubbles/click per building owned.
  437. tag:upgrade
  438. cost:9500 cash
  439. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleMachine)
  440. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleWorker)
  441. passive:increase bubbles yield of BubbleGum by 0.05*(MoneyPrinter)
  442. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleMine)
  443. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleFactory)
  444. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleLab)
  445. passive:increase bubbles yield of BubbleGum by 0.05*(3DPrinter)
  446. passive:increase bubbles yield of BubbleGum by 0.05*(Shipment)
  447. req:5000 cash:earned
  448. icon:https://i.imgur.com/txIt3TO.png
  449.  
  450. *SteelFingers
  451. name:Steel Fingers
  452. desc:You click harder with heavier fingers.<//><b>Effect:</b><.>+0.05 bubbles/click per building owned.
  453. cost:10000000 cash
  454. tag:upgrade
  455. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleMachine)
  456. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleWorker)
  457. passive:increase bubbles yield of BubbleGum by 0.05*(MoneyPrinter)
  458. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleMine)
  459. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleFactory)
  460. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleLab)
  461. passive:increase bubbles yield of BubbleGum by 0.05*(3DPrinter)
  462. passive:increase bubbles yield of BubbleGum by 0.05*(Shipment)
  463. req:5000000 cash:earned
  464. icon:https://i.imgur.com/eM69ghz.png
  465.  
  466. *TitaniumFingers
  467. name:Titanium Fingers
  468. desc:You click <b>even</b> harder with <b>even</b> heavier fingers.<//><b>Effect:</b><.>+0.05 bubbles/click per building owned.
  469. cost:145000000 cash
  470. tag:upgrade
  471. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleMachine)
  472. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleWorker)
  473. passive:increase bubbles yield of BubbleGum by 0.05*(MoneyPrinter)
  474. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleMine)
  475. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleFactory)
  476. passive:increase bubbles yield of BubbleGum by 0.05*(bubbleLab)
  477. passive:increase bubbles yield of BubbleGum by 0.05*(3DPrinter)
  478. passive:increase bubbles yield of BubbleGum by 0.05*(Shipment)
  479. req:100000000 cash:earned
  480. icon:https://i.imgur.com/cAfUStF.png
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487. *PlainBubbles
  488. name:Plain Bubbles
  489. desc:As basic as it gets.<//><b>Effect:</b><.>+1 bubbles/click<.>Bubble Machine cash yield is 3% higher<.>Bubbles are sold for 0.05 more cash.
  490. icon:https://i.imgur.com/kztYpxP.png
  491. cost:125 cash
  492. tag:upgrade
  493. on earn:hide this
  494.  
  495. req:155 cash:earned
  496.  
  497. *PlainBubbles2
  498. name:Plain Bubbles
  499. desc:As basic as it gets.<//><b>Effect:</b><.>+1 bubbles/click<.>Bubble Machine cash yield is 3% higher<.>Bubbles are sold for 0.05 more cash.
  500. icon:https://i.imgur.com/kztYpxP.png
  501. passive:increase bubbles yield of BubbleGum by 1
  502. passive:multiply cash yield of bubbleMachine by 1.03
  503. passive:multiply CashPS1 yield of bubbleMachine by 1.03
  504. tag:ownedupgrade
  505. req:have PlainBubbles
  506. no text
  507.  
  508. hidden
  509.  
  510.  
  511. *OrangeBubbles
  512. name:Orange Bubbles
  513. desc:Slightly sour.<//><b>Effect:</b><.>+2 bubbles/click<.>Bubble Machine cash yield is 3% higher<.>Bubbles are sold for 0.05 more cash.
  514. cost:8500 cash
  515. icon:https://i.imgur.com/dgrVGnU.png
  516. tag:upgrade
  517. on earn:
  518. hide this
  519. yield OrangeBubbles2
  520. end
  521. req:1550 cash:earned
  522.  
  523. *OrangeBubbles2
  524. name:Orange Bubbles
  525. desc:Slightly sour.<//><b>Effect:</b><.>+2 bubbles/click<.>Bubble Machine cash yield is 3% higher<.>Bubbles are sold for 0.05 more cash.
  526. cost:8500 cash
  527. passive:increase bubbles yield of BubbleGum by 2
  528. passive:multiply cash yield of bubbleMachine by 1.03
  529. passive:multiply CashPS1 yield of bubbleMachine by 1.03
  530. icon:https://i.imgur.com/dgrVGnU.png
  531. tag:ownedupgrade
  532. req:have OrangeBubbles
  533. no text
  534.  
  535. hidden
  536.  
  537. *LemonBubbles
  538. name:Lemon Bubbles
  539. desc:More sour than you think.<//><b>Effect:</b><.>+3 bubbles/click<.>Bubble Machine cash yield is 3% higher<.>Bubbles are sold for 0.05 more cash.
  540. cost:100000 cash
  541. icon:https://i.imgur.com/rQ029W6.png
  542. passive:increase bubbles yield of BubbleGum by 3
  543. passive:multiply cash yield of bubbleMachine by 1.03
  544. passive:multiply CashPS1 yield of bubbleMachine by 1.03
  545. tag:upgrade
  546. req:25000 cash:earned
  547.  
  548. *WatermelonBubbles
  549. name:Watermelon Bubbles
  550. desc:Pleasantly sweet.<//><b>Effect:</b><.>+3 bubbles/click<.>Bubble Machine cash yield is 3% higher<.>Bubbles are sold for 0.05 more cash.
  551. cost:215000 cash
  552. icon:https://i.imgur.com/wdYOAcE.png
  553. passive:increase bubbles yield of BubbleGum by 3
  554. passive:multiply cash yield of bubbleMachine by 1.03
  555. passive:multiply CashPS1 yield of bubbleMachine by 1.03
  556. req:75000 cash:earned
  557. tag:upgrade
  558.  
  559. *StrawberryBubbles
  560. name:Strawberry Bubbles
  561. desc:Perfectly juicy.<//><b>Effect:</b><.>+4 bubbles/click<.>Bubble Machine cash yield is 4% higher<.>Bubbles are sold for 0.05 more cash.
  562. cost:500000 cash
  563. icon:https://i.imgur.com/fRfo7hn.png
  564. passive:increase bubbles yield of BubbleGum by 4
  565. passive:multiply cash yield of bubbleMachine by 1.04
  566. passive:multiply CashPS1 yield of bubbleMachine by 1.04
  567. req:135000 cash:earned
  568. tag:upgrade
  569.  
  570. *GrapeBubbles
  571. name:Grape Bubbles
  572. desc:Got any grapes?<//><b>Effect:</b><.>+5 bubbles/click<.>Bubble Machine cash yield is 5% higher<.>Bubbles are sold for 0.05 more cash.
  573. cost:1400000 cash
  574. icon:https://i.imgur.com/N6s4mSl.png
  575. passive:increase bubbles yield of BubbleGum by 5
  576. passive:multiply cash yield of bubbleMachine by 1.05
  577. passive:multiply CashPS1 yield of bubbleMachine by 1.05
  578. req:200000 cash:earned
  579. tag:upgrade
  580.  
  581. *MangoBubbles
  582. name:Mango Bubbles
  583. desc:Tropical.<//><b>Effect:</b><.>+6 bubbles/click<.>Bubble Machine cash yield is 6% higher<.>Bubbles are sold for 0.05 more cash.
  584. cost:5000000 cash
  585. icon:https://i.imgur.com/7lZCjRJ.png
  586. passive:increase bubbles yield of BubbleGum by 6
  587. passive:multiply cash yield of bubbleMachine by 1.06
  588. passive:multiply CashPS1 yield of bubbleMachine by 1.06
  589. req:1800000 cash:earned
  590. tag:upgrade
  591. *MintBubbles
  592. name:Mint Bubbles
  593. desc:Refreshing.<//><b>Effect:</b><.>+7 bubbles/click<.>Bubble Machine cash yield is 7% higher<.>Bubbles are sold for 0.05 more cash.
  594. cost:25000000 cash
  595. icon:https://i.imgur.com/P0KwBK1.png
  596. passive:increase bubbles yield of BubbleGum by 7
  597. passive:multiply cash yield of bubbleMachine by 1.07
  598. passive:multiply CashPS1 yield of bubbleMachine by 1.07
  599. req:20000000 cash:earned
  600. tag:upgrade
  601.  
  602. *LimeBubbles
  603. name:Lime Bubbles
  604. desc:Like lemons, but green.<//><b>Effect:</b><.>+9 bubbles/click<.>Bubble Machine cash yield is 9% higher<.>Bubbles are sold for 0.05 more cash.
  605. cost:95000000 cash
  606. icon:https://i.imgur.com/Vn94jEa.png
  607. passive:increase bubbles yield of BubbleGum by 9
  608. passive:multiply cash yield of bubbleMachine by 1.09
  609. passive:multiply CashPS1 yield of bubbleMachine by 1.09
  610. req:50000000 cash:earned
  611. tag:upgrade
  612.  
  613. *JamFilledBubbles
  614. name:Jam Filled Bubbles
  615. desc:<b>Jam</b> packed with flavour.<//><b>Effect:</b><.>+11 bubbles/click<.>Bubble Machine cash yield is 11% higher<.>Bubbles are sold for 0.05 more cash.
  616. icon:https://i.imgur.com/1XmY7U1.png
  617. cost:195500000 cash
  618. passive:increase bubbles yield of BubbleGum by 11
  619. passive:multiply cash yield of bubbleMachine by 1.11
  620. passive:multiply CashPS1 yield of bubbleMachine by 1.11
  621. req:100000000 cash:earned
  622. tag:upgrade
  623. *PumpkinBubbles
  624. name:Pumpkin Bubbles
  625. desc:Funky.<//><b>Effect:</b><.>+13 bubbles/click<.>Bubble Machine cash yield is 13% higher<.>Bubbles are sold for 0.05 more cash.
  626. icon:https://i.imgur.com/eIeUHJk.png
  627. cost:425000000 cash
  628. passive:increase bubbles yield of BubbleGum by 13
  629. passive:multiply cash yield of bubbleMachine by 1.13
  630. passive:multiply CashPS1 yield of bubbleMachine by 1.13
  631. req:225000000 cash:earned
  632. tag:upgrade
  633. *WarheadBubbles
  634. name:Warhead Bubbles
  635. desc:It's nice! If you like bloody tongues.<//><b>Effect:</b><.>+16 bubbles/click<.>Bubble Machine cash yield is 15% higher<.>Bubbles are sold for 0.05 more cash.
  636. icon:https://i.imgur.com/nzX58GC.png
  637. cost:850000000 cash
  638. passive:increase bubbles yield of BubbleGum by 16
  639. passive:multiply cash yield of bubbleMachine by 1.15
  640. passive:multiply CashPS1 yield of bubbleMachine by 1.15
  641. req:800000000 cash:earned
  642. tag:upgrade
  643. *ChilliBubbles
  644. name:Chilli Bubbles
  645. desc:It burns..<//><b>Effect:</b><.>+19 bubbles/click<.>Bubble Machine cash yield is 20% higher<.>Bubbles are sold for 0.05 more cash.
  646. icon:https://i.imgur.com/4oGCxrS.png
  647. cost:1500000000 cash
  648. passive:increase bubbles yield of BubbleGum by 19
  649. passive:multiply cash yield of bubbleMachine by 1.20
  650. passive:multiply CashPS1 yield of bubbleMachine by 1.20
  651. req:1200000000 cash:earned
  652. tag:upgrade
  653. *MiniBubbles
  654. name:Mini Bubbles
  655. desc:Divide the size, double the price!<//><b>Effect:</b><.>+22 bubbles/click<.>Bubble Machine cash yield is 25% higher<.>Bubbles are sold for 0.05 more cash.
  656. icon:https://i.imgur.com/iHufyBe.png
  657. cost:5000000000 cash
  658. passive:increase bubbles yield of BubbleGum by 22
  659. passive:multiply cash yield of bubbleMachine by 1.25
  660. passive:multiply CashPS1 yield of bubbleMachine by 1.25
  661. req:4000000000 cash:earned
  662. tag:upgrade
  663. *CubeBubbles
  664. desc:With enough of these, you could build a fortress.<//><b>Effect:</b><.>+28 bubbles/click<.>Bubble Machine cash yield is 45% higher<.>Bubbles are sold for <b>0.1</b> more cash.
  665. name:Cube Bubbles
  666. icon:https://i.imgur.com/ieLDlgy.png
  667. cost:45000000000 cash
  668. req:25000000000 cash:earned and have LabUpgrade5
  669. passive:increase bubbles yield of BubbleGum by 28
  670. passive:multiply cash yield of bubbleMachine by 1.45
  671. passive:multiply CashPS1 yield of bubbleMachine by 1.45
  672. tag:upgrade
  673. *JawbreakerBubbles
  674. name:Jawbreaker Bubbles
  675. desc:Some say it's tougher than steel.<//><b>Effect:</b><.>+40 bubbles/click<.>Bubble Machine cash yield is 50% higher<.>Bubbles are sold for <b>0.1</b> more cash.
  676. passive:increase bubbles yield of BubbleGum by 40
  677. passive:multiply cash yield of bubbleMachine by 1.50
  678. passive:multiply CashPS1 yield of bubbleMachine by 1.50
  679. cost:350000000000 cash
  680. req:125000000000 cash:earned
  681. icon:https://i.imgur.com/2LjHxmw.png
  682. tag:upgrade
  683.  
  684.  
  685. *roboticJaw
  686. name:Robotic Jaw
  687. desc:You chew bubbles faster.<//><b>Effect:</b><.>x2 bubbles/click
  688. cost:25000 cash
  689. icon:https://i.imgur.com/G5rshWq.png
  690. passive:multiply bubbles yield of BubbleGum by 2
  691. req:28000 cash:earned
  692. tag:upgrade
  693.  
  694. *TwoJaws
  695. name:Double Jaws
  696. desc:Through genetic engineering in the bubble labs, you can now grow 2 jaws.<//><b>Effect:</b><.>x2 bubbles/click
  697. icon:https://i.imgur.com/f1g38XP.png
  698. cost:1400000 cash
  699. passive:multiply bubbles yield of BubbleGum by 2
  700. req: (bubbleLabs>=3)
  701. tag:upgrade
  702.  
  703. *ambidextrous
  704. name:Ambidextrous
  705. desc:You click with both of your hands! Genius!<//><b>Effect:</b><.>x2 bubbles/click
  706. cost:500000 cash
  707. passive:multiply bubbles yield of BubbleGum by 2
  708. req:100000 cash:earned
  709. icon:https://i.imgur.com/p3WFhz6.png
  710. tag:upgrade
  711.  
  712. *mintyGum
  713. name:Minty Gum
  714. desc:Minty fresh.<//><b>Effect:</b><.>Increases production speed of all resources by 1%.
  715. cost:999999 cash
  716. icon:https://i.imgur.com/x3OYVjm.png
  717. passive:multiply yield of bubbles by 1.01
  718. passive:multiply yield of cash by 1.01
  719. tag:upgrade
  720.  
  721. passive:multiply CashPS1 yield of bubbleMachine by 1.01
  722. passive:multiply MachinePS1 yield of bubbleMachine by 1.01
  723. passive:multiply WorkerPS yield of bubbleWorker by 1.01
  724. passive:multiply MinePS yield of bubbleMine by 1.01
  725. passive:multiply FactoryPS yield of bubbleFactory by 1.01
  726. passive:multiply LabPS yield of bubbleLab by 1.01
  727. passive:multiply 3DPrinterPS yield of 3DPrinter by 1.01
  728. passive:multiply ShipmentPS yield of Shipment by 1.01
  729. req:1000000 cash:earned
  730.  
  731. *toothpasteGum
  732. name:Toothpaste Gum
  733. cost:10000000 cash
  734. desc:A chewy alternative to brushing your teeth.<//><b>Effect:</b><.>Increases production speed of all resources by 1%.
  735. icon:https://i.imgur.com/iFosflV.png
  736. passive:multiply yield of bubbles by 1.01
  737. passive:multiply yield of cash by 1.01
  738. tag:upgrade
  739. passive:multiply CashPS1 yield of bubbleMachine by 1.01
  740. passive:multiply MachinePS1 yield of bubbleMachine by 1.01
  741. passive:multiply WorkerPS yield of bubbleWorker by 1.01
  742. passive:multiply MinePS yield of bubbleMine by 1.01
  743. passive:multiply FactoryPS yield of bubbleFactory by 1.01
  744. passive:multiply LabPS yield of bubbleLab by 1.01
  745. passive:multiply 3DPrinterPS yield of 3DPrinter by 1.01
  746. passive:multiply ShipmentPS yield of Shipment by 1.01
  747. req:5000000 cash:earned
  748.  
  749.  
  750.  
  751. *nuttyGum
  752. name:Nutty Gum
  753. desc:Tastes <b>nutty.</b><//><b>Effect:</b><.>Increases production speed of all resources by 1%.
  754. cost:10000000 cash
  755. icon:https://i.imgur.com/byUdl6Z.png
  756. passive:multiply yield of bubbles by 1.01
  757. passive:multiply yield of cash by 1.01
  758. tag:upgrade
  759. passive:multiply CashPS1 yield of bubbleMachine by 1.01
  760. passive:multiply MachinePS1 yield of bubbleMachine by 1.01
  761. passive:multiply WorkerPS yield of bubbleWorker by 1.01
  762. passive:multiply MinePS yield of bubbleMine by 1.01
  763. passive:multiply FactoryPS yield of bubbleFactory by 1.01
  764. passive:multiply LabPS yield of bubbleLab by 1.01
  765. passive:multiply 3DPrinterPS yield of 3DPrinter by 1.01
  766. passive:multiply ShipmentPS yield of Shipment by 1.01
  767. req:5250000 cash:earned
  768.  
  769. *chocolateGum
  770. name:Chocolate Gum
  771. desc:Raw cocoa. With 95% sugar of course!<//><b>Effect:</b><.>Increases production speed of all resources by 1%.
  772. cost:10000000 cash
  773. icon:https://i.imgur.com/kNv0aBX.png
  774. passive:multiply yield of bubbles by 1.01
  775. passive:multiply yield of cash by 1.01
  776. tag:upgrade
  777. passive:multiply CashPS1 yield of bubbleMachine by 1.01
  778. passive:multiply MachinePS1 yield of bubbleMachine by 1.01
  779. passive:multiply WorkerPS yield of bubbleWorker by 1.01
  780. passive:multiply MinePS yield of bubbleMine by 1.01
  781. passive:multiply FactoryPS yield of bubbleFactory by 1.01
  782. passive:multiply LabPS yield of bubbleLab by 1.01
  783. passive:multiply 3DPrinterPS yield of 3DPrinter by 1.01
  784. passive:multiply ShipmentPS yield of Shipment by 1.01
  785. req:5500000 cash:earned
  786.  
  787. *IQgum
  788. name:IQ Gum
  789. desc:Supposedly, chewing on this gum highers your IQ.<//><b>Effect:</b><.>Increases production speed of all resources by 1%.
  790. cost:25000000 cash
  791. passive:multiply yield of bubbles by 1.01
  792. passive:multiply yield of cash by 1.01
  793. tag:upgrade
  794. passive:multiply CashPS1 yield of bubbleMachine by 1.01
  795. passive:multiply MachinePS1 yield of bubbleMachine by 1.01
  796. passive:multiply WorkerPS yield of bubbleWorker by 1.01
  797. passive:multiply MinePS yield of bubbleMine by 1.01
  798. passive:multiply FactoryPS yield of bubbleFactory by 1.01
  799. passive:multiply LabPS yield of bubbleLab by 1.01
  800. passive:multiply 3DPrinterPS yield of 3DPrinter by 1.01
  801. passive:multiply ShipmentPS yield of Shipment by 1.01
  802. req:15500000 cash:earned
  803. icon:https://i.imgur.com/ue9AvMu.png
  804.  
  805.  
  806.  
  807.  
  808.  
  809.  
  810. *StackingClicks
  811. name:Machine Clicks
  812. desc:We don't know how it works, it just does, ok?<//><b>Effect:</b><.>+0.1 bubbles/click per bubble machine owned.
  813. icon:https://i.imgur.com/UAw34lf.png
  814. cost:50000 cash
  815. passive:increase bubbles yield of BubbleGum by 0.1*(bubbleMachine)
  816. req: (bubbleMachines>=15)
  817. tag:upgrade
  818. *WorkerClicks
  819. name:Worker Clicks
  820. desc:Workers now click for you.<//><b>Effect:</b><.>+0.1 bubbles/click per bubble worker owned.
  821. icon:https://i.imgur.com/JzItAqf.png
  822. cost:460000 cash
  823. passive:increase bubbles yield of BubbleGum by 0.1*(bubbleWorker)
  824. req: (bubbleWorkers>=20)
  825. tag:upgrade
  826.  
  827.  
  828.  
  829.  
  830. //MACHINE UPGRADES
  831.  
  832.  
  833.  
  834.  
  835.  
  836.  
  837. *MachineUpgrade0
  838. name:Pricier Costs
  839. desc:Bubble gum inside the machine costs more.<//><b>Effect:</b><.>Bubble Machines are x2 more efficient.
  840. icon:https://i.imgur.com/HYL3ndp.png
  841. cost:125 cash
  842. passive:multiply yield of bubbleMachine by 2
  843. req: (bubbleMachines>=1)
  844. tag:upgrade
  845. *MachineUpgrade1
  846. name:Extra Gears
  847. desc:Adds extra gears to a bubble machine.<//><b>Effect:</b><.>Bubble Machines are x2 more efficient.
  848. icon:https://i.imgur.com/iCvzUcj.png
  849. cost:1000 cash
  850. passive:multiply yield of bubbleMachine by 2
  851. req: (bubbleMachines>=5)
  852. tag:upgrade
  853. *machineUpgrade2
  854. name:Oiled Gears
  855. desc:Oiled gears grant extra efficiency.<//><b>Effect:</b><.>Bubble Machines are x2 more efficient.
  856. cost:2500 cash
  857. icon:https://i.imgur.com/bKxtv91.png
  858. passive:multiply yield of bubbleMachine by 2
  859. req: (bubbleMachines>=10)
  860. tag:upgrade
  861. *machineUpgrade3
  862. name:Faster Mechanism
  863. desc:Mechanism inside the bubble machine gets an upgrade. <//><b>Effect:</b><.>Bubble Machines are x2 more efficient.
  864. cost:6500 cash
  865. icon:https://i.imgur.com/w5p0QWh.png
  866. passive:multiply yield of bubbleMachine by 2
  867. req: (bubbleMachines>=20)
  868. tag:upgrade
  869. *machineUpgrade4
  870. name:Decreasing Prices
  871. icon:https://i.imgur.com/HYL3ndp.png
  872. cost:155000 cash
  873. desc:For every building you own, mechanisms inside the machine get cheaper due to more and more bubble generation.<//><b>Effect:</b><.>Bubble Machines gain 0.2 BPs per building owned.
  874. passive:increase bubbles yield of bubbleMachine by 0.2*(bubbleMachine)
  875. passive:increase bubbles yield of bubbleMachine by 0.2*(bubbleWorker)
  876. passive:increase bubbles yield of bubbleMachine by 0.2*(MoneyPrinter)
  877. passive:increase bubbles yield of bubbleMachine by 0.2*(bubbleMine)
  878. passive:increase bubbles yield of bubbleMachine by 0.2*(bubbleFactory)
  879. passive:increase bubbles yield of bubbleMachine by 0.2*(bubbleLab)
  880. passive:increase bubbles yield of bubbleMachine by 0.2*(3DPrinter)
  881. passive:increase bubbles yield of bubbleMachine by 0.2*(Shipment)
  882. tag:upgrade
  883. passive:increase MachinePS1 yield of bubbleMachine by 0.2*(bubbleMachine)
  884. passive:increase MachinePS1 yield of bubbleMachine by 0.2*(bubbleWorker)
  885. passive:increase MachinePS1 yield of bubbleMachine by 0.2*(MoneyPrinter)
  886. passive:increase MachinePS1 yield of bubbleMachine by 0.2*(bubbleMine)
  887. passive:increase MachinePS1 yield of bubbleMachine by 0.2*(bubbleFactory)
  888. passive:increase MachinePS1 yield of bubbleMachine by 0.2*(bubbleLab)
  889. passive:increase MachinePS1 yield of bubbleMachine by 0.2*(3DPrinter)
  890. passive:increase MachinePS1 yield of bubbleMachine by 0.2*(Shipment)
  891.  
  892. req: (bubbleMachines>=40)
  893.  
  894. *machineUpgrade5
  895. name:Ad Campaign
  896. desc:You now run ads for your bubble machines.<//><b>Effect:</b><.>Bubble Machines are x2.5 more efficient.
  897. icon:https://i.imgur.com/R0WGjG6.png
  898. cost:895000 cash
  899. passive:multiply yield of bubbleMachine by 2.5
  900. req: (bubbleMachines>=55)
  901. tag:upgrade
  902. *machineUpgrade6
  903. name:Nano Gears
  904. desc:Thousands upon thousands of tiny gears in the machine allow for extremely fast customer service.<//><b>Effect:</b><.>Bubble Machines are <b>x6.5</b> more efficient.
  905. cost:3000000000 cash
  906. icon:https://i.imgur.com/eF3DMKP.png
  907. passive:multiply yield of bubbleMachine by 6.5
  908. req: (bubbleMachines>=75) and have LabUpgrade5
  909. tag:upgrade
  910.  
  911.  
  912.  
  913.  
  914. //MONEY PRINTER UPGRADES
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921. *mPrinterUpgrade1
  922. name:5 Dollar Bills
  923. desc:Money printers now print 5 dollar bills.<//><b>Effect:</b><.>Money printer production rate increased by 5
  924. cost:11000 cash
  925. icon:https://i.imgur.com/En0hkcj.png
  926. passive:increase cash yield of MoneyPrinter by 5*(MoneyPrinter)
  927. passive:increase MPrinterPS yield of MoneyPrinter by 5*(MoneyPrinter)
  928. req: (MoneyPrinter>=1)
  929. tag:upgrade
  930.  
  931. *mPrinterUpgrade2
  932. name:10 Dollar Bills
  933. desc:Money printers now print 10 dollar bills.<//><b>Effect:</b><.>Money printer production rate increased by 10
  934. cost:111000 cash
  935. icon:https://i.imgur.com/GCgyQxd.png
  936. passive:increase cash yield of MoneyPrinter by 10*(MoneyPrinter)
  937. passive:increase MPrinterPS yield of MoneyPrinter by 10*(MoneyPrinter)
  938. req: (MoneyPrinter>=5)
  939. tag:upgrade
  940. *mPrinterUpgrade3
  941. name:20 Dollar Bills
  942. desc:Money printers now print 20 dollar bills.<//><b>Effect:</b><.>Money printer production rate increased by 20
  943. cost:1111000 cash
  944. icon:https://i.imgur.com/VxsrFpp.png
  945. passive:increase cash yield of MoneyPrinter by 20*(MoneyPrinter)
  946. passive:increase MPrinterPS yield of MoneyPrinter by 20*(MoneyPrinter)
  947. req: (MoneyPrinter>=10)
  948. tag:upgrade
  949. *mPrinterUpgrade4
  950. name:50 Dollar Bills
  951. desc:Money printers now print 50 dollar bills.<//><b>Effect:</b><.>Money printer production rate increased by 50
  952. cost:27250000 cash
  953. icon:https://i.imgur.com/bqYl8hu.png
  954. passive:increase cash yield of MoneyPrinter by 50*(MoneyPrinter)
  955. passive:increase MPrinterPS yield of MoneyPrinter by 50*(MoneyPrinter)
  956. req: (MoneyPrinter>=20)
  957. tag:upgrade
  958. *mPrinterUpgrade5
  959. name:Double Printing Compartment
  960. desc:Money printers print two bills at the same time. <//><b>Effect:</b><.>Money printer efficiency multiplied by 2
  961. cost:350000000 cash
  962. icon:https://i.imgur.com/cic5BcY.png
  963. passive:multiply cash yield of MoneyPrinter by 2
  964. passive:multiply MPrinterPS yield of MoneyPrinter by 2
  965. req: (MoneyPrinter>=35)
  966. tag:upgrade
  967. *mPrinterUpgrade6
  968. name:100 Dollar Bills
  969. desc:Money printers now print 100 dollar bills.<//><b>Effect:</b><.>Money printer production rate increased by 100
  970. cost:1000000000 cash
  971. passive:increase cash yield of MoneyPrinter by 100*(MoneyPrinter)
  972. passive:increase MPrinterPS yield of MoneyPrinter by 100*(MoneyPrinter)
  973. req: (MoneyPrinter>=45)
  974. icon:https://i.imgur.com/fhi1esl.png
  975. tag:upgrade
  976.  
  977.  
  978.  
  979.  
  980.  
  981.  
  982.  
  983.  
  984. //WORKER UPGRADES
  985.  
  986.  
  987.  
  988.  
  989.  
  990.  
  991.  
  992. *WorkerUpgrade0
  993. name:Sturdier Hats
  994. desc:Your workers feel safer.<//><b>Effect:</b><.>Bubble Workers are x2 more efficient.
  995. cost:555 cash
  996. icon:https://i.imgur.com/0OUD2JK.png
  997. passive:multiply yield of bubbleWorker by 2
  998. req:(bubbleWorker>=1)
  999. tag:upgrade
  1000. *WorkerUpgrade1
  1001. name:Skill+
  1002. desc:Your workers are more skilled at producing bubbles.<//><b>Effect:</b><.>Bubble Workers are x2 more efficient.
  1003. cost:1500 cash
  1004. icon:https://i.imgur.com/TBUthv5.png
  1005. passive:multiply yield of bubbleWorker by 2
  1006. req: (bubbleWorkers>=5)
  1007. tag:upgrade
  1008. *workerUpgrade2
  1009. name:Skill++
  1010. desc:Your workers are even more skilled at producing bubbles.<//><b>Effect:</b><.>Bubble Workers are x2 more efficient.
  1011. cost:5500 cash
  1012. icon:https://i.imgur.com/2ikorMh.png
  1013. passive:multiply yield of bubbleWorker by 2
  1014. req: (bubbleWorkers>=10)
  1015. tag:upgrade
  1016.  
  1017. *workerUpgrade3
  1018. name:Graduation
  1019. desc:Your workers graduated a school teaching how to chew bubbles efficiently.<//><b>Effect:</b><.>Bubble Workers are x2 more efficient.
  1020. cost:25000 cash
  1021. icon:https://i.imgur.com/JEkX4sD.png
  1022. passive:multiply yield of bubbleWorker by 2
  1023. req:(bubbleWorkers>=15)
  1024. tag:upgrade
  1025.  
  1026. *workerUpgrade4
  1027. name:PhD
  1028. desc:Your workers are now experts at chewing bubbles.<//><b>Effect:</b><.>Bubble Workers are x2 more efficient.
  1029. cost:100000 cash
  1030. icon:
  1031. passive:multiply yield of bubbleWorker by 2
  1032. req:(bubbleWorkers>=20)
  1033. icon:https://i.imgur.com/g3dIH5u.png
  1034. tag:upgrade
  1035.  
  1036. *workerUpgrade5
  1037. name:Engineers
  1038. icon:https://i.imgur.com/0OUD2JK.png
  1039. desc:Your workers now forcefully have to operate bubble machines.<//><b>Effect:</b><.>Bubble Workers are x2 more efficient.</b><.>Bubble Machines are 0.15% more efficient per worker.
  1040. cost:250000 cash
  1041. passive:multiply yield of bubbleWorker by 2
  1042. passive:multiply yield of bubbleMachine by 0.15*(bubbleWorker)
  1043. req: (bubbleWorkers>=20)
  1044. tag:upgrade
  1045.  
  1046. *workerUpgrade6
  1047. name:Cheaper Salary
  1048. icon:https://i.imgur.com/HYL3ndp.png
  1049. desc:You give less bubbles per month to your workers.<//><b>Effect:</b><.>Bubble Workers are 30% cheaper.<.>Bubble Workers are x2 more efficient.
  1050. cost:1550000 cash
  1051. passive:multiply cost of bubbleWorker by 0.70
  1052. passive:multiply yield of bubbleWorker by 2
  1053. req: (bubbleWorkers>=40)
  1054. tag:upgrade
  1055.  
  1056. *workerUpgrade7
  1057. name:Permanent Job
  1058. desc:Your workers can no longer quit their job.<//><b>Effect:</b><.>Bubble Workers are 3x as effective.<.>Bubble Workers are 20% cheaper.
  1059. cost:45500000 cash
  1060. icon:https://i.imgur.com/rxgeIBF.png
  1061. passive:multiply cost of bubbleWorker by 0.80
  1062. passive:multiply yield of bubbleWorker by 3
  1063. req: (bubbleWorkers>=60)
  1064. tag:upgrade
  1065.  
  1066. *workerUpgrade8
  1067. name:Genetic Modificatiom
  1068. desc:Your workers are genetically modified to increase productivity even further.<//><b>Effect:</b><.>Bubble Workers are <b>6x</b> more effective.<.>Buildings are <b>0.015% more effective</b> per bubble worker owned.<q><#a60000>This is probably not the best idea...</#></q>
  1069. cost:1000000000000 cash
  1070. icon:https://i.imgur.com/ZDc8FSZ.png
  1071. req: (bubbleWorkers>=80) and have LabUpgrade5
  1072. passive:multiply yield of bubbleWorker by 6
  1073. passive:multiply yield of bubbleMachine by 0.015*(bubbleWorker)
  1074. passive:multiply yield of MoneyPrinter by 0.015*(bubbleWorker)
  1075. passive:multiply yield of bubbleMine by 0.015*(bubbleWorker)
  1076. passive:multiply yield of bubbleFactory by 0.015*(bubbleWorker)
  1077. passive:multiply yield of bubbleLab by 0.015*(bubbleWorker)
  1078. passive:multiply yield of 3DPrinter by 0.015*(bubbleWorker)
  1079. passive:multiply yield of Shipment by 0.015*(bubbleWorker)
  1080. tag:upgrade
  1081.  
  1082. *workerUpgrade9
  1083. name:Implanted nano chips
  1084. desc:Implant tiny chips that re-program the worker to only do the tasks he's supposed to.<//><b>Effect:</b><.>Buildings are an additional 0.02% more effective per bubble worker owned.<q><#a60000>This is REALLY not a good idea...</#></q>
  1085. cost:8000000000000 cash
  1086. req: (bubbleWorker>=100) and have LabUpgrade5
  1087. icon:https://i.imgur.com/fS6VhjE.png
  1088. passive:multiply yield of bubbleMachine by 0.020*(bubbleWorker)
  1089. passive:multiply yield of MoneyPrinter by 0.020*(bubbleWorker)
  1090. passive:multiply yield of bubbleMine by 0.020*(bubbleWorker)
  1091. passive:multiply yield of bubbleFactory by 0.020*(bubbleWorker)
  1092. passive:multiply yield of bubbleLab by 0.020*(bubbleWorker)
  1093. passive:multiply yield of 3DPrinter by 0.020*(bubbleWorker)
  1094. passive:multiply yield of Shipment by 0.020*(bubbleWorker)
  1095. icon:https://i.imgur.com/fS6VhjE.png
  1096.  
  1097. tag:upgrade
  1098.  
  1099.  
  1100.  
  1101.  
  1102. //MINE UPGRADES
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108. *MineUpgrade0
  1109. name:Gloves
  1110. desc:Your hands hurt less while digging for bubbles.<//><b>Effect:</b><.>Bubble Mines are x2 more efficient.
  1111. passive:multiply yield of bubbleMine by 2
  1112. icon:https://i.imgur.com/1oVr57t.png
  1113. cost:10000 cash
  1114. req: (bubbleMine>=1)
  1115. tag:upgrade
  1116.  
  1117. *MineUpgrade1
  1118. name:Wooden Tools
  1119. desc:You now dig with wooden tools instead of hands.<//><b>Effect:</b><.>Bubble Mines are x2 more efficient.
  1120. icon:https:https://i.imgur.com/f34qxd2.png
  1121. passive:multiply yield of bubbleMine by 2
  1122. cost:100000 cash
  1123. icon:https://i.imgur.com/f34qxd2.png
  1124. req: (bubbleMine>=5)
  1125. tag:upgrade
  1126.  
  1127. *MineUpgrade2
  1128. desc:You now use stone tools.<//><b>Effect:</b><.>Bubble Mines are x2 more efficient.
  1129. name:Stone Tools
  1130. cost:400000 cash
  1131. icon:https://i.imgur.com/5S0qttV.png
  1132. passive:multiply yield of bubbleMine by 2
  1133. req: (bubbleMine>=10)
  1134. tag:upgrade
  1135.  
  1136.  
  1137. *MineUpgrade3
  1138. name:Iron Tools
  1139. desc:You now use iron tools.<//><b>Effect:</b><.>Bubble Mines are x2 more efficient.
  1140. icon:https://i.imgur.com/db4u4MB.png
  1141. cost:1000000 cash
  1142. passive:multiply yield of bubbleMine by 2
  1143. req: (bubbleMine>=25)
  1144. tag:upgrade
  1145.  
  1146. *Miners
  1147. name:Miners
  1148. desc:Your workers now forcefully have to mine for you.<//><b>Effect:</b><.>Bubble Mines are 0.10% more efficient per Bubble Worker.<.>Bubble Workers are x2 more efficient.
  1149. icon:https://i.imgur.com/GHfIxFW.png
  1150. cost:35000000 cash
  1151. passive:multiply yield of bubbleMine by 0.10*(bubbleWorker)
  1152. passive:multiply yield of bubbleWorker by 2
  1153. req: (bubbleMine>=35)
  1154. tag:upgrade
  1155.  
  1156. *DualWield
  1157. name:Dual Wield
  1158. desc:You use both of your hands to mine.<//><b>Effect:</b><.>Bubble Mines are x2 more efficient.
  1159. cost:100000000 cash
  1160. passive:multiply yield of bubbleMine by 2
  1161. req: (bubbleMine>=40)
  1162. icon:https://i.imgur.com/q9fNblI.png
  1163. tag:upgrade
  1164.  
  1165.  
  1166. *MineUpgrade4
  1167. name:Emerald Tools
  1168. desc:You now use emerald tools.<//><b>Effect:</b><.>Bubble Mines are x2.5 more efficient.
  1169. icon:https://i.imgur.com/EtK6wNR.png
  1170. cost:175000000 cash
  1171. passive:multiply yield of bubbleMine by 2.5
  1172. req: (bubbleMine>=45)
  1173. tag:upgrade
  1174.  
  1175. *MineUpgrade5
  1176. name:Diamond Tools
  1177. desc:You now use diamond tools.<//><b>Effect:</b><.>Bubble Mines are x2 more efficient.
  1178. cost:250000000 cash
  1179. passive:multiply yield of bubbleMine by 2
  1180. req: (bubbleMine>=55)
  1181. icon:https://i.imgur.com/4Wk3lf5.png
  1182. tag:upgrade
  1183.  
  1184.  
  1185. *MineUpgrade7
  1186. name:Tektite Tools
  1187. desc:A very rare material found in the deepest of depths.<//><b>Effect:</b><.>Bubble Mines are x2.5 more efficient.
  1188. cost:950000000 cash
  1189. passive:multiply yield of bubbleMine by 2.5
  1190. req: (bubbleMine>=76)
  1191. icon:https://i.imgur.com/2u2Upqz.png
  1192. tag:upgrade
  1193.  
  1194.  
  1195. *MineUpgrade8
  1196. name:Unobtainium Tools
  1197. desc:So rare it's considered unobtainable.<//><b>Effect:</b><.>Bubble Mines are x2 more efficient.
  1198. cost:250000000000 cash
  1199. passive:multiply yield of bubbleMine by 2
  1200. req: (bubbleMine>=86)
  1201. icon:https://i.imgur.com/ndyF7eo.png
  1202. tag:upgrade
  1203.  
  1204. *MineUpgrade9
  1205. name:Enchant All
  1206. desc:Fully enchanted.<//><b>Effect:</b><.>Bubble Mines are <b>x7</b> more efficient.<//></><q>Efficiency enchantment.level.32767</q>
  1207. cost:1666000000000 cash
  1208. passive:multiply yield of bubbleMine by 7
  1209. req: (bubbleMine>=100)
  1210. icon:https://i.imgur.com/RyDBC0U.png
  1211. tag:upgrade
  1212.  
  1213.  
  1214.  
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223. //FACTORY UPGRADES
  1224.  
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233. *FactoryUpgrade0
  1234. name:Sturdier Conveyors
  1235. desc:Conveyors are higher quality.<//><b>Effect:</b><.>Bubble Factories are x2 more efficient.
  1236. icon:https://i.imgur.com/tea3j7W.png
  1237. cost:125000 cash
  1238. passive:multiply yield of bubbleFactory by 2
  1239. req: (bubbleFactory>=1)
  1240. tag:upgrade
  1241.  
  1242. *FactoryUpgrade1
  1243. name:More Conveyors
  1244. desc:Factories gain extra conveyors, allowing for more bubble transport.<//><b>Effect:</b><.>Bubble Factories are x2 more efficient.
  1245. icon:https://i.imgur.com/tea3j7W.png
  1246. cost:435000 cash
  1247. passive:multiply yield of bubbleFactory by 2
  1248. req: (bubbleFactory>=5)
  1249. tag:upgrade
  1250. *FactoryUpgrade2
  1251. name:Faster Conveyors
  1252. desc:Conveyors in the factories gain extra speed, allowing for faster bubble transport.<//><b>Effect:</b><.>Bubble Factories are x2 more efficient.
  1253. cost:1300000 cash
  1254. icon:https://i.imgur.com/Vni5IZ9.png
  1255. passive:multiply yield of bubbleFactory by 2
  1256. req: (bubbleFactory>=10)
  1257. tag:upgrade
  1258. *FactoryUpgrade3
  1259. name:Bigger Foundations
  1260. desc:Your factories are bigger.<//><b>Effect:</b><.>Bubble Factories are x2 more efficient.
  1261. cost:12255000 cash
  1262. icon:https://i.imgur.com/fzYdbJY.png
  1263. passive:multiply yield of bubbleFactory by 2
  1264. req: (bubbleFactory>=17)
  1265. tag:upgrade
  1266. *FactoryUpgrade4
  1267. name:Controllers
  1268. desc:Your workers now forcefully have to control factories for you.<//><b>Effect:</b><.>Bubble Factories are 0.06% more efficient per Bubble Worker.<.>Bubble Workers are x2 more efficient.
  1269. passive:multiply yield of bubbleFactory by 0.06*(bubbleWorker)
  1270. passive:multiply yield of bubbleWorker by 2
  1271. cost:75500000 cash
  1272. req: (bubbleFactory>=25)
  1273. icon:https://i.imgur.com/E9TIWWq.png
  1274. tag:upgrade
  1275. *FactoryUpgrade5
  1276. name:Uranium Conveyors
  1277. desc:Radioactivity extracted.<//><b>Effect:</b><.>Bubble Factories are x2 more efficient.
  1278. icon:https://i.imgur.com/5JDqneK.png
  1279. cost:150550000 cash
  1280. req: (bubbleFactory>=37)
  1281. tag:upgrade
  1282. *FactoryUpgrade6
  1283. name:Wider Conveyors
  1284. desc:Wider conveyors allow for more bubble transportation.<//><b>Effect:</b><.>Bubble Factories are x2 more efficient.
  1285. cost:10000000000 cash
  1286. req: (bubbleFactory>=50)
  1287. icon:https://i.imgur.com/M8BoyTg.png
  1288. tag:upgrade
  1289.  
  1290.  
  1291.  
  1292.  
  1293.  
  1294. //LAB UPGRADES
  1295.  
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301. *LabUpgrade0
  1302. name:Bigger Labs
  1303. desc:Your labs are bigger.<//><b>Effect:</b><.>Bubble Labs are x2 more efficient.
  1304. cost:1000000 cash
  1305. passive:multiply yield of bubbleLab by 2
  1306. icon:https://i.imgur.com/nv7DKU7.png
  1307. req: (bubbleLab>=1)
  1308. tag:upgrade
  1309. *LabUpgrade1
  1310. name:High Quality Equipment
  1311. desc:Wow. These lab coats sure are pricy!<//><b>Effect:</b><.>Bubble Labs are x2 more efficient.
  1312. cost:2400000 cash
  1313. icon:https://i.imgur.com/ADeQVSC.png
  1314. passive:multiply yield of bubbleLab by 2
  1315. req: (bubbleLab>=3)
  1316. tag:upgrade
  1317. *LabUpgrade2
  1318. name:Cloning I
  1319. desc:New breakthrough in science allows bubbles to be cloned.<//><b>Effect:</b><.>Bubble Labs are x2 more efficient.
  1320. cost:9000000 cash
  1321. icon:https://i.imgur.com/yU8u6Tl.png
  1322. passive:multiply yield of bubbleLab by 2
  1323. req: (bubbleLab>=10)
  1324. tag:upgrade
  1325.  
  1326. *LabUpgrade3
  1327. name:Cloning II
  1328. desc:Cloning is faster.<//><b>Effect:</b><.>Bubble Labs are x2 more efficient.
  1329. icon:https://i.imgur.com/Nr1by7E.png
  1330. cost:29000000 cash
  1331. passive:multiply yield of bubbleLab by 2
  1332. req: (bubbleLab>=20)
  1333. tag:upgrade
  1334. *LabUpgrade4
  1335. name:Scientists
  1336. desc:Your workers now forcefully have to research in your bubble labs.<//><b>Effect:</b><.>Bubble Labs are 0.05% more efficient per Bubble Worker.<.>Bubble Workers are x2 more efficient.
  1337. cost:100000000 cash
  1338. icon:https://i.imgur.com/yxQWfST.png
  1339. passive:multiply yield of bubbleLab by 0.05*(bubbleWorker)
  1340. passive:multiply yield of bubbleWorker by 2
  1341. req: (bubbleLab>=32)
  1342. tag:upgrade
  1343. *LabUpgrade5
  1344. name:Nano Technology
  1345. desc:The future is now.<//><b>Effect:</b><.>Bubble Labs are x3 more efficient.<.>Unlocks <b>powerful</b> upgrades.
  1346. cost:1200000000 cash
  1347. icon:https://i.imgur.com/ItTRWmM.png
  1348. passive:multiply yield of bubbleLab by 3
  1349. req: (bubbleLab>=41)
  1350. tag:upgrade
  1351. *LabUpgrade6
  1352. name:Cloning III
  1353. desc:Cloning is <b>even</b> faster.<//><b>Effect:</b><.>Bubble Labs are x3.5 more efficient.
  1354. cost:11000000000 cash
  1355. icon:https://i.imgur.com/WXcAzOO.png
  1356. passive:multiply yield of bubbleLab by 2
  1357. req: (bubbleLab>=51)
  1358. tag:upgrade
  1359. *LabUpgrade7
  1360. name:Anti-Aging Concoction
  1361. desc:Bubble workers no longer age and live <i><b>forever.</b></i><//><b>Effect:</b><.>Bubble Workers are <b>x15</b> more efficient.
  1362. cost:505000000000 cash
  1363. icon:https://i.imgur.com/P4dQ8BD.png
  1364. passive:multiply yield of bubbleWorker by 15
  1365. req: (bubbleLab>=63)
  1366. tag:upgrade
  1367. *LabUpgrade8
  1368. name:Cloning IV
  1369. desc:Cloning is super fast.<//><b>Effect:</b><.>Bubble Labs are x5 more efficient.<//></><q>There is only so much room!</q>
  1370. cost:3200000000000 cash
  1371. icon:https://i.imgur.com/IracEsv.png
  1372. passive:multiply yield of bubbleLab by 5
  1373. req: (bubbleLab>=75)
  1374. tag:upgrade
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381.  
  1382.  
  1383.  
  1384.  
  1385.  
  1386. //3D PRINTER UPGRADES
  1387.  
  1388.  
  1389.  
  1390.  
  1391.  
  1392.  
  1393.  
  1394.  
  1395. *PrinterUpgrade0
  1396. name:Slow Speed
  1397. desc:The printer print sligthly faster.<//><b>Effect:</b><.>3D Printers are x2 more efficient.
  1398. cost:5000000 cash
  1399. icon:https://i.imgur.com/fxTWZTx.png
  1400. passive:multiply yield of 3DPrinter by 2
  1401. req: (3DPrinter>=1)
  1402. tag:upgrade
  1403. *PrinterUpgrade1
  1404. name:More Fillament
  1405. desc:Allows the printer to print bubbles longer.<//><b>Effect:</b><.>3D Printers are x2 more efficient.
  1406. cost:15500000 cash
  1407. icon:https://i.imgur.com/keRXmFx.png
  1408. passive:multiply yield of 3DPrinter by 2
  1409. req: (3DPrinter>=5)
  1410. tag:upgrade
  1411. *PrinterUpgrade2
  1412. name:Bigger Base
  1413. desc:The base of the printer gets larger, allowing it to print more bubbles.<//><b>Effect:</b><.>3D Printers are x2 more efficient.
  1414. cost:55000000 cash
  1415. icon:https://i.imgur.com/yuK8QF0.png
  1416. passive:multiply yield of 3DPrinter by 2
  1417. req: (3DPrinter>=10)
  1418. tag:upgrade
  1419. *PrinterUpgrade3
  1420. name:Average Speed
  1421. desc:The printer prints faster.<//><b>Effect:</b><.>3D Printers are x2 more efficient.
  1422. icon:https://i.imgur.com/JA5BJQx.png
  1423. cost:180000000 cash
  1424. passive:multiply yield of 3DPrinter by 2
  1425. req: (3DPrinter>=18)
  1426. tag:upgrade
  1427. *PrinterUpgrade4
  1428. name:Printed Cursors
  1429. desc:The 3D Printer prints cursors to boost your bubbles per click.<//><b>Effect:</b><.>+3 bubbles/click per 3D Printer owned. (Stacks with clicking upgrades)
  1430. cost:500000000 cash
  1431. icon:https://i.imgur.com/s1SbClW.png
  1432. passive:increase yield of BubbleGum by 3*(3DPrinter)
  1433. req: (3DPrinter>=25)
  1434. tag:upgrade
  1435. *PrinterUpgrade5
  1436. name:Programmers
  1437. desc:Your workers are now forced to operate 3D Printers.<//><b>Effect:</b><.>3D Printers are 0.05% more efficient per Bubble Worker owned.<.>Bubble Workers are x2 more efficient.
  1438. cost:950000000 cash
  1439. icon:https://i.imgur.com/riFMJSC.png
  1440. passive:multiply yield of 3DPrinter by 0.05*(bubbleWorker)
  1441. passive:multiply yield of bubbleWorker by 2
  1442. tag:upgrade
  1443. req: (3DPrinter>=33)
  1444.  
  1445. *PrinterUpgrade6
  1446. name:Cooling System
  1447. desc:The printer has a harder time overheating.<//><b>Effect:</b><.>3D Printers are x2 more efficient.
  1448. icon:https://i.imgur.com/nitMAcX.png
  1449. passive:multiply yield of 3DPrinter by 2
  1450. cost:2500000000 cash
  1451. req: (3DPrinter>=40)
  1452. tag:upgrade
  1453. *PrinterUpgrade7
  1454. name:Liquid Cooling
  1455. desc:The printer has a <b>way</b> harder time overheating.<//><b>Effect:</b><.>3D Printers are x3 more efficient.
  1456. icon:https://i.imgur.com/X2f42Rd.png
  1457. passive:multiply yield of 3DPrinter by 3
  1458. cost:25500000000 cash
  1459. req: (3DPrinter>=50)
  1460. tag:upgrade
  1461.  
  1462.  
  1463.  
  1464.  
  1465. //SHIPMENT UPGRADES
  1466.  
  1467.  
  1468.  
  1469.  
  1470.  
  1471. *ShipmentUpgrade0
  1472. name:Bigger Hull
  1473. desc:Rocket ships have a bigger hull, allowing for more bubble transportation.<//><b>Effect:</b><.>Shipment is x2 more efficient.
  1474. icon:https://i.imgur.com/UP1dZEn.png
  1475. passive:multiply yield of Shipment by 2
  1476. cost:50000000 cash
  1477. req: (Shipment>=1)
  1478. tag:upgrade
  1479. *ShipmentUpgrade1
  1480. name:More Fuel
  1481. desc:Your rocket ships have more storage for fuel.<//><b>Effect:</b><.>Shipment is x2 more efficient.
  1482. cost:111000000 cash
  1483. icon:https://i.imgur.com/2WK6EG2.png
  1484. passive:multiply yield of Shipment by 2
  1485. req: (Shipment>=5)
  1486. tag:upgrade
  1487. *ShipmentUpgrade2
  1488. name:More Storage
  1489. desc:Your rocket ships have more storage overall.<//><b>Effect:</b><.>Shipment is x2 more efficient.
  1490. icon:https://i.imgur.com/nsjsIkw.png
  1491. cost:285000000 cash
  1492. passive:multiply yield of Shipment by 2
  1493. req: (Shipment>=10)
  1494. tag:upgrade
  1495. *ShipmentUpgrade3
  1496. name:Efficient Boosters
  1497. desc:Your rocket ships have their boosters upgraded.<//><b>Effect:</b><.>Shipment is x2 more efficient.
  1498. cost:685000000 cash
  1499. icon:https://i.imgur.com/BbwUVHC.png
  1500. passive:multiply yield of Shipment by 2
  1501. req: (Shipment>=20)
  1502. tag:upgrade
  1503. *ShipmentUpgrade4
  1504. name:Light Speed
  1505. desc:Your rockets are now able to travel at light speed.<//><b>Effect:</b><.>Shipment is <b>x3</b> more efficient.
  1506. cost:4450000000 cash
  1507. passive:multiply yield of Shipment by 3
  1508. req: (Shipment>=27)
  1509. icon:https://i.imgur.com/qslDiIf.png
  1510. tag:upgrade
  1511. *ShipmentUpgrade5
  1512. name:Astronauts
  1513. desc:Your workers forcefully have to operate your rockets.<//><b>Effect:</b><.>Shipment is 0.05% more efficient per Bubble Worker.<.>Bubble Workers are x2 more efficient.
  1514. passive:multiply yield of Shipment by 0.05*(bubbleWorker)
  1515. passive:multiply yield of bubbleWorker by 2
  1516. cost:20000000000 cash
  1517. icon:https://i.imgur.com/1eU4rIe.png
  1518. req: (Shipment>=35)
  1519. tag:upgrade
  1520. *ShipmentUpgrade6
  1521. name:Warp Speed
  1522. desc:Your rockets are now able to travel faster than light.<//><b>Effect:</b><.>Shipment is x2 more efficient.
  1523. passive:multiply yield of Shipment by 2
  1524. cost:100000000000 cash
  1525. icon:https://i.imgur.com/KS4XtPB.png
  1526. req: (Shipment>=42)
  1527. tag:upgrade
  1528. *ShipmentUpgrade7
  1529. name:Trading Center
  1530. desc:You trade bubbles with aliens from the universe.<//><b>Effect:</b><.>Shipment is x3 more efficient.
  1531. passive:multiply yield of Shipment by 3
  1532. cost:750000000000 cash
  1533. icon:https://i.imgur.com/PjZnYAj.png
  1534. req: (Shipment>52)
  1535. tag:upgrade
  1536.  
  1537. Achievements
  1538. *TEMPLATE
  1539. on click:anim glow
  1540.  
  1541.  
  1542.  
  1543. //BUBBLE ACHIEVEMENTS
  1544.  
  1545.  
  1546.  
  1547.  
  1548. *bubbleAchiev1
  1549. name:Yummy
  1550. desc:Produce a total of <#ff99ff>1</#> bubble.
  1551. icon:https://i.imgur.com/JwhCYV0.png
  1552. req:1 bubbles:earned
  1553.  
  1554. *bubbleAchiev2
  1555. name:Hoarder
  1556. desc:Produce a total of <#ff99ff>1000</#> bubbles.
  1557. icon:https://i.imgur.com/lU2grVf.png
  1558. req:1000 bubbles:earned
  1559.  
  1560. *bubbleAchiev3
  1561. name:Producer
  1562. desc:Produce a total of <#ff99ff>10 000</#> bubbles.
  1563. icon:https://i.imgur.com/Hcc8WY6.png
  1564. req:10000 bubbles:earned
  1565.  
  1566. *bubbleAchiev4
  1567. name:Connoisseur
  1568. desc:Produce a total of <#ff99ff>100 000</#> bubbles.
  1569. icon:https://i.imgur.com/pkuiyzb.png
  1570. req:100000 bubbles:earned
  1571.  
  1572. *bubbleAchiev5
  1573. name:Specialist
  1574. desc:Produce a total of <#ff99ff>1 million</#> bubbles.
  1575. req:1000000 bubbles:earned
  1576. icon:https://i.imgur.com/AtKuqgu.png
  1577.  
  1578. *bubbleAchiev6
  1579. name:Expert
  1580. desc:Produce a total of <#ff99ff>1 billion</#> bubbles.
  1581. req:1000000000 bubbles:earned
  1582. icon:https://i.imgur.com/O49hNlG.png
  1583.  
  1584.  
  1585.  
  1586.  
  1587.  
  1588. //MONEY ACHIEVEMENTS
  1589.  
  1590.  
  1591.  
  1592.  
  1593.  
  1594. *moneyAchiev1
  1595. name:Dollar dollar bill y'all
  1596. desc:Produce a total of <#51c200>1</#> cash.
  1597. req:1 cash:earned
  1598. icon:https://i.imgur.com/eU7CdP0.png
  1599.  
  1600. *moneyAchiev2
  1601. name:Pocket money
  1602. desc:Produce a total of <#51c200>100</#> cash.
  1603. req:100 cash:earned
  1604. icon:https://i.imgur.com/dztAUr4.png
  1605.  
  1606. *moneyAchiev3
  1607. name:Money stash
  1608. desc:Produce a total of <#51c200>10 000</#> cash.
  1609. req:10000 cash:earned
  1610. icon:https://i.imgur.com/0qta8Zc.png
  1611. *moneyAchiev4
  1612. name:In my bank account
  1613. desc:Produce a total of <#51c200>100 000</#> cash.
  1614. req:100000 cash:earned
  1615. icon:https://i.imgur.com/REcTD6U.png
  1616.  
  1617. *moneyAchiev5
  1618. name:Millionaire
  1619. desc:Produce a total of <#51c200>1 million</#> cash.
  1620. req:1000000 cash:earned
  1621. icon:https://i.imgur.com/jpbCw6e.png
  1622.  
  1623. *moneyAchiev6
  1624. name:Small loan of a million dollars
  1625. desc:Produce a total of <#51c200>1 billion</#> cash.
  1626. req:1000000000 cash:earned
  1627. icon:https://i.imgur.com/oNtEpUF.png
  1628.  
  1629.  
  1630.  
  1631.  
  1632. //MACHINE ACHIEVEMENTS
  1633.  
  1634.  
  1635.  
  1636.  
  1637. *machineAchiev1
  1638. name:The start of something beautiful
  1639. desc:Build <b>1</b> bubble machine.
  1640. req: (bubbleMachine>=1)
  1641. icon:https://i.imgur.com/RhXMy2a.png
  1642.  
  1643. *machineAchiev2
  1644. name:Rustling gears
  1645. desc:Build <b>50</b> bubble machines.
  1646. req: (bubbleMachine>=50)
  1647. icon:https://i.imgur.com/oCBPRrF.png
  1648.  
  1649. *machineAchiev3
  1650. name:Workshop
  1651. desc:Build <b>100</b> bubble machines.
  1652. req: (bubbleMachine>=100)
  1653. icon:https://i.imgur.com/K9zmUvE.png
  1654.  
  1655. *machineAchiev4
  1656. name:Builder
  1657. desc:Build <b>150</b> bubble machines.
  1658. req: (bubbleMachine>=150)
  1659. icon:https://i.imgur.com/y6yANZW.png
  1660.  
  1661.  
  1662.  
  1663.  
  1664.  
  1665.  
  1666. //WORKER ACHIEVEMENTS
  1667.  
  1668.  
  1669.  
  1670.  
  1671.  
  1672.  
  1673. *workerAchiev1
  1674. name:Employee
  1675. desc:Hire <b>1</b> bubble worker.
  1676. req: (bubbleWorker>=1)
  1677. icon:https://i.imgur.com/yXcE8vX.png
  1678.  
  1679. *workerAchiev2
  1680. name:Employer
  1681. desc:Hire <b>50</b> bubble workers.
  1682. req: (bubbleWorker>=50)
  1683. icon:https://i.imgur.com/Y2hNc0S.png
  1684.  
  1685. *workerAchiev3
  1686. name:Organization
  1687. desc:Hire <b>100</b> bubble workers.
  1688. req: (bubbleWorker>=100)
  1689. icon:https://i.imgur.com/nc1nonE.png
  1690.  
  1691. *workerAchiev4
  1692. name:Company
  1693. desc:Hire <b>150</b> bubble workers.
  1694. req: (bubbleWorker>=150)
  1695. icon:https://i.imgur.com/JKfBFg7.png
  1696.  
  1697.  
  1698.  
  1699.  
  1700.  
  1701. //MONEY PRINTER ACHIEVEMENTS
  1702.  
  1703.  
  1704.  
  1705.  
  1706.  
  1707. *mPrinterAchiev1
  1708. name:Illegal activity
  1709. desc:Buy <b>1</b> money printer.<//></><q>"I mean, you gotta spend money to make money, right?"</q>
  1710. req: (MoneyPrinter>=1)
  1711. icon:https://i.imgur.com/4TrLPoK.png
  1712.  
  1713.  
  1714.  
  1715. *mPrinterAchiev2
  1716. name:Criminal
  1717. desc:Buy <b>50</b> money printers.
  1718. req: (MoneyPrinter>=50)
  1719. icon:https://i.imgur.com/BTnA98F.png
  1720.  
  1721.  
  1722. *mPrinterAchiev3
  1723. name:Money maker
  1724. desc:Buy <b>100</b> money printers.
  1725. req: (MoneyPrinter>=100)
  1726. icon:https://i.imgur.com/nYAdizI.png
  1727.  
  1728. *mPrinterAchiev4
  1729. name:Money generator
  1730. desc:Buy <b>150</b> money printers.
  1731. req: (MoneyPrinter>=150)
  1732. icon:https://i.imgur.com/Ng81f0Y.png
  1733.  
  1734.  
  1735.  
  1736.  
  1737.  
  1738.  
  1739.  
  1740. //MINE ACHIEVEMENTS
  1741.  
  1742.  
  1743.  
  1744.  
  1745.  
  1746. *mineAchiev1
  1747. name:You know the drill
  1748. desc:Own <b>1</b> bubble mine.
  1749. req: (bubbleMine>=1)
  1750. icon:https://i.imgur.com/Nfqvuso.png
  1751.  
  1752.  
  1753. *mineAchiev2
  1754. name:Caved-in
  1755. desc:Own <b>50</b> bubble mines.
  1756. req: (bubbleMine>=50)
  1757. icon:https://i.imgur.com/CiGApPz.png
  1758.  
  1759.  
  1760. *mineAchiev3
  1761. name:Cashed-in
  1762. desc:Own <b>100</b> bubble mines.
  1763. req: (bubbleMine>=100)
  1764. icon:https://i.imgur.com/ejOZOyM.png
  1765.  
  1766. *mineAchiev4
  1767. name:Maze
  1768. desc:Own <b>150</b> bubble mines.
  1769. req: (bubbleMine>=150)
  1770. icon:https://i.imgur.com/mEyn0ST.png
  1771.  
  1772.  
  1773.  
  1774.  
  1775.  
  1776. //FACTORY ACHIEVEMENTS
  1777.  
  1778.  
  1779.  
  1780.  
  1781. *factoryAchiev1
  1782. name:Manufacturer
  1783. desc:Buy <b>1</b> bubble factory.
  1784. req: (bubbleFactory>=1)
  1785. icon:https://i.imgur.com/elGzPts.png
  1786.  
  1787. *factoryAchiev2
  1788. name:Owner
  1789. desc:Buy <b>50</b> bubble factories.
  1790. req: (bubbleFactory>=50)
  1791. icon:https://i.imgur.com/yhvxjta.png
  1792.  
  1793. *factoryAchiev3
  1794. name:Polluted
  1795. desc:Buy <b>100</b> bubble factories.
  1796. req: (bubbleFactory>=100)
  1797. icon:https://i.imgur.com/H9MC9Cq.png
  1798.  
  1799. *factoryAchiev4
  1800. name:Smoked sky
  1801. desc:Buy <b>150</b> bubble factories.
  1802. req: (bubbleFactory>=150)
  1803. icon:https://i.imgur.com/19BZgD8.png
  1804.  
  1805.  
  1806.  
  1807.  
  1808. //LAB UPGRADES
  1809.  
  1810.  
  1811.  
  1812.  
  1813.  
  1814. *labAchiev1
  1815. name:Home study
  1816. desc:Own <b>1</b> bubble lab.
  1817. req: (bubbleLab>=1)
  1818. icon:https://i.imgur.com/b4eZ2bi.png
  1819.  
  1820. *labAchiev2
  1821. name:Experiments
  1822. desc:Own <b>50</b> bubble labs.
  1823. req: (bubbleLab>=50)
  1824. icon:https://i.imgur.com/oJW4nI8.png
  1825.  
  1826. *labAchiev3
  1827. name:Researcher
  1828. desc:Own <b>100</b> bubble labs.
  1829. req: (bubbleLab>=100)
  1830. icon:https://i.imgur.com/ba7xRcd.png
  1831.  
  1832. *labAchiev4
  1833. name:Mad scientist
  1834. desc:Own <b>150</b> bubble labs.
  1835. req: (bubbleLab>=150)
  1836. icon:https://i.imgur.com/qMv4dNW.png
  1837.  
  1838.  
  1839.  
  1840.  
  1841.  
  1842. //3D PRINTER ACHIEVEMENTS
  1843.  
  1844.  
  1845.  
  1846.  
  1847. *3DPrinterAchiev1
  1848. name:Paperwork
  1849. desc:Own <b>1</b> 3D Printer.
  1850. req: (3DPrinter>=1)
  1851. icon:https://i.imgur.com/HcuM6ek.png
  1852.  
  1853. *3DPrinterAchiev2
  1854. name:3 Dimensional
  1855. desc:Own <b>50</b> 3D Printers.
  1856. req: (3DPrinter>=50)
  1857. icon:https://i.imgur.com/V7n6KQW.png
  1858.  
  1859. *3DPrinterAchiev3
  1860. name:Printing printers
  1861. desc:Own <b>100</b> 3D Printers.
  1862. req: (3DPrinter>=100)
  1863. icon:https://i.imgur.com/W9eZxfx.png
  1864.  
  1865. *3DPrinterAchiev4
  1866. name:Totally printed
  1867. desc:Own <b>150</b> 3D Printers.
  1868. req: (3DPrinter>=150)
  1869. icon:https://i.imgur.com/TNA96Oh.png
  1870.  
  1871.  
  1872.  
  1873.  
  1874.  
  1875. //SHIPMENT ACHIEVEMENTS
  1876.  
  1877.  
  1878.  
  1879.  
  1880.  
  1881. *shipmentAchiev1
  1882. name:Journey through space
  1883. desc:Own <b>1</b> shipment.
  1884. req: (Shipment>=1)
  1885. icon:https://i.imgur.com/ncRsNW6.png
  1886.  
  1887.  
  1888.  
  1889. *shipmentAchiev2
  1890. name:I ship it
  1891. desc:Own <b>50</b> shipments.
  1892. req: (Shipment>=50)
  1893. icon:https://i.imgur.com/tZGnRmU.png
  1894.  
  1895. *shipmentAchiev3
  1896. name:Inter-planetary
  1897. desc:Own <b>100</b> shipments.
  1898. req: (Shipment>=100)
  1899. icon:https://i.imgur.com/o6uR5vu.png
  1900.  
  1901. *shipmentAchiev4
  1902. name:Interstellar
  1903. desc:Own <b>150</b> shipments.<//></><q>"Come on, TARS."</q>
  1904. req: (Shipment>=150)
  1905. icon:https://i.imgur.com/TEzQiFo.png
  1906.  
  1907.  
  1908.  
  1909.  
  1910. //SHINY ACHIEVEMENTS
  1911.  
  1912.  
  1913.  
  1914.  
  1915.  
  1916. *shinyAchiev1
  1917. name:Lucky day
  1918. desc:Click <b>1</b> golden bubble.
  1919. req:1 goldenBubble:clicks
  1920. icon:https://i.imgur.com/1E8Ucbz.png
  1921.  
  1922. *shinyAchiev2
  1923. name:Lucky number 7
  1924. desc:Click <b>7</b> golden bubbles.
  1925. req:7 goldenBubble:clicks
  1926. icon:https://i.imgur.com/0bXvyKG.png
  1927.  
  1928. *shinyAchiev3
  1929. name:Golden clover
  1930. desc:Click <b>17</b> golden bubbles.
  1931. req:17 goldenBubble:clicks
  1932. icon:https://i.imgur.com/oo8dgA2.png
  1933.  
  1934.  
  1935.  
  1936.  
  1937.  
  1938. //SECRET ACHIEVEMENTS
Add Comment
Please, Sign In to add comment