Advertisement
Guest User

Cake Clicker IDLE GAME MAKER beta

a guest
Jan 20th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.65 KB | None | 0 0
  1. Let's make a game!
  2. name:Cake Clicker BETA
  3. desc:A game where you click cake and buy things to make cake. Based on my game on Scratch "Cake Clicker".
  4. version:0.0.1
  5. created:18/01/19
  6.  
  7.  
  8. Settings
  9. building cost increase:120%
  10. stylesheet:stuff/bigBlue.css
  11.  
  12.  
  13. CSS
  14. .box
  15. {
  16. text-align:center;
  17. padding:0px;
  18. box-shadow:none;
  19. }
  20.  
  21. .thing,.box-header,.box-footer,.box-bit
  22. {
  23. background:#39f;
  24. box-shadow:0px 0px 4px rgba(0,0,0,0.2),1px 1px 2px rgba(0,0,0,0.5),0px 0px 4px rgba(255,255,255,0.5) inset;
  25. }
  26. .box-bit{border-radius:20px;}
  27.  
  28. .box-header
  29. {
  30. border-bottom-left-radius:20px;
  31. border-bottom-right-radius:20px;
  32. margin-bottom:4px;
  33. }
  34. .box-footer
  35. {
  36. border-top-left-radius:20px;
  37. border-top-right-radius:20px;
  38. margin-top:4px;
  39. }
  40.  
  41.  
  42. #box-main
  43. {
  44. left:0px;
  45. top:0px;
  46. bottom:0px;
  47. overflow:hidden;
  48. width:60%;
  49. position:absolute;
  50. }
  51. #box-res.fullWidth
  52. {
  53. width:100%;
  54. top:5%;
  55. height:5%;
  56. min-height:32px;
  57. z-index:100;
  58. position:absolute;
  59. }
  60. #box-buttons
  61. {
  62. top:0px;
  63. right:0px;
  64. bottom:0px;
  65. left:0px;
  66. position:absolute;
  67. }
  68. #box-store
  69. {
  70. right:0px;
  71. top:0px;
  72. bottom:0px;
  73. width:40%;
  74. position:absolute;
  75. }
  76. #box-buildings,#box-upgrades
  77. {
  78. top:0px;
  79. bottom:0px;
  80. width:50%;
  81. right:0%;
  82. overflow-x:hidden;
  83. overflow-y:scroll;
  84. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  85. position:absolute;
  86. }
  87. #box-buildings
  88. {right:50%;}
  89.  
  90. #box-buildings{background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0.25) 20%);}
  91. #box-upgrades{background:rgba(0,0,0,0.3);}
  92.  
  93. #bulkDisplay{margin:-11px 24px 4px 24px;}
  94.  
  95.  
  96. .thing
  97. {
  98. display:inline-block;
  99. padding:0px;
  100. margin:2px;
  101. cursor:pointer;
  102. }
  103. .thing:hover,.thing.lit
  104. {
  105. background:#6cf;
  106. }
  107. .thing.cantAfford
  108. {
  109. opacity:0.65;
  110. }
  111. .upgrade.cantAfford
  112. {
  113. box-shadow:0px 0px 4px #39f;
  114. border-radius:8px;
  115. }
  116. .upgrade.cantAfford:hover
  117. {
  118. box-shadow:0px 0px 4px #6cf;
  119. }
  120. .upgrade.owned,.achiev.owned
  121. {
  122. background:#6cf;
  123. }
  124. .thing-text,.thing-costs{font-weight:bold;}
  125.  
  126. .building
  127. {
  128. border-top-left-radius:20px;
  129. border-bottom-left-radius:20px;
  130. display:block;
  131. margin-right:0px;
  132. font-size:14px;
  133. }
  134.  
  135. .fullWidth
  136. {
  137. display:block;
  138. margin-left:0px;
  139. margin-right:0px;
  140. z-index:10;
  141. }
  142. #game .fullWidth
  143. {
  144. height:auto;
  145. min-height:auto;
  146. }
  147. .fullWidth,.fullWidth:hover
  148. {
  149. /*background:rgba(0,0,0,0.5);
  150. background:linear-gradient(to bottom,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.25) 50%,rgba(0,0,0,0.5) 100%);*/
  151. background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,0.25) 50%,rgba(0,0,0,0) 100%);
  152. box-shadow:none;
  153. }
  154. .fullWidth:before,.fullWidth:after
  155. {
  156. content:'';
  157. height:1px;
  158. background:linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 50%,rgba(255,255,255,0) 100%);
  159. position:absolute;
  160. left:0px;
  161. right:0px;
  162. z-index:-1;
  163. }
  164. .fullWidth:before{top:-1px;}
  165. .fullWidth:after{bottom:-1px;}
  166.  
  167. .fullWidth .thing-icon
  168. {
  169. margin-top:-14px;
  170. margin-bottom:-14px;
  171. }
  172. .fullWidth .thing-text
  173. {
  174. margin-top:-4px;
  175. margin-bottom:-4px;
  176. }
  177.  
  178. #game.filtersOn .thing-icon{filter:drop-shadow(3px 3px 1px rgba(0,0,0,0.5));}
  179.  
  180.  
  181. Layout
  182. use default
  183.  
  184.  
  185.  
  186.  
  187. Buttons
  188. *bigcake
  189. name:bigcake
  190. icon:https://i.ibb.co/XYvH8d5/Cake.jpg
  191. no text
  192. no tooltip
  193. on click:yield 1 cake
  194.  
  195. Resources
  196. *cake
  197. name:Cake
  198. desc:These are your Cakes. Buy buildings with them and buy upgrades to improve them. Aim to get as many cakes as possible.
  199. icon:https://i.ibb.co/XYvH8d5/Cake.jpg
  200.  
  201. *legendarycake
  202. name:Legendary Cake
  203. desc:Earn these after clicking them when they randomly appear on screen. Use these for amazing upgrades!
  204. hidden when 0
  205. icon:https://i.ibb.co/kQF2rrZ/Legendary-Cake.jpg
  206.  
  207. Buildings
  208. *emojibaker
  209. name: Emoji Baker
  210. desc: Who said emojis can't bake? This little guy will make cake but very slowly.
  211. on tick:yield 1 cake
  212. cost:10 cake
  213. icon:https://i.ibb.co/W2vTxYg/Baker-Emoji.jpg
  214.  
  215.  
  216. *probaker
  217. name:Pro Baker
  218. desc: A qualified backing pro. Bakes faster than emojis!
  219. on tick:yield 3 cake
  220. cost:50 cake
  221. icon:https://i.ibb.co/rfprmVy/Pro-baker.jpg
  222.  
  223. *factory
  224. name:Factory
  225. desc: An entire factory dedicated to baking cakes.
  226. on tick:yield 10 cake
  227. cost:750 cake
  228. icon:https://i.ibb.co/9hJ2vSd/Factory.jpg
  229.  
  230.  
  231.  
  232. *waterfall
  233. name:Cakefall
  234. desc: A waterfall of cake. The cakes do not get soggy.
  235. on tick:yield 20 cake
  236. cost:1700 cake
  237. icon:https://i.ibb.co/4Y59NGg/Cakefall.jpg
  238.  
  239.  
  240.  
  241. *cakequake
  242. name:Cakequake
  243. desc: A constant earthquake of… CAKE!
  244. on tick:yield 35 cake
  245. cost:3000 cake
  246. icon:https://i.ibb.co/fdsxsqW/Cakequake.jpg
  247.  
  248.  
  249. *volcakeno
  250. name:Vol-cake-no
  251. desc:Your own volcano that spews out cake instead of molten rock
  252. on tick:yield 50 cake
  253. cost:10000 cake
  254. icon:https://i.ibb.co/ygxz3qz/Volcakeno.jpg
  255.  
  256.  
  257.  
  258. *cakeami
  259. name:Cakami
  260. desc:Lots of cake from the ocean falling down on cities. No people or animals were harmed. You keep the cake. You do not get sued.
  261. on tick:yield 99 cake
  262. cost:50001 cake
  263. icon:https://i.ibb.co/WcBm3f8/Cakami.jpg
  264.  
  265.  
  266. *antimattermachine
  267. name:Anti-Matter Machine
  268. desc:A modified version of Orteil's "Antimatter Condensers". Instead of cookies it produces cake out of the universes antimatter.
  269. on tick:yield 200 cake
  270. cost:109000 cake
  271. icon:https://i.ibb.co/BLvt7mt/Antimatter-machine.jpg
  272.  
  273.  
  274. *cloner
  275. name:Cloner
  276. desc:Clones cakes indefinitely at hypersonic speeds.
  277. on tick:yield 500 cake
  278. cost:999999 cake
  279. icon:https://i.ibb.co/KNkzjpt/Cloner.jpg
  280.  
  281.  
  282. *coder
  283. name:<Head> Cake CoDEr </head>
  284. desc:<body> I coDe CAkes ANd priNT TheM Out oF THiN aiR </body>
  285. on tick:yield 999 cake
  286. cost:9999999 cake
  287.  
  288. *insanemachine
  289. name:InSAne MAchinE
  290. desc: I aM moRe iNSAne tHAn My BroTHeR CoDEr. ThAt MEans I mAKe MorE CaKE!
  291. on tick:yield 2500 cake
  292. cost:62793025 cake
  293.  
  294. *timemachine
  295. name:Time Machine
  296. desc:TIME TRAVEL FOR DUMIES: Travel back in time. Get cake from past. Go back to present. Sell cake.
  297. on tick:yield 6000 cake
  298. cost:100000000 cake
  299.  
  300. *cakegenie
  301. name:Cake Genie
  302. desc:Genie: You get 3 wishes </> You: I wish for infinite wishes. </> Genie: But… all right. </> You: Now I wish for 15000 cakes every second. </> Genie: Sigh.
  303. on tick:yield 15000 cake
  304. cost:987654321 cake
  305.  
  306. *bakerlegend
  307. name:Legendary Baker
  308. desc:He has learnt the skill of baking legendary cakes but he needs to be payed ALOT. Also it takes a while to produce one.
  309. on tick:yield 0.1 legendarycake
  310. cost:99999999999 cake
  311.  
  312. *opbuilding
  313. name:The OP Cake Producing Building
  314. desc:A building fuelled by legendary cake. It makes cakes very fast.
  315. on tick:yield 999999999999999999999999999999999999999 cake
  316. cost:999 legendarycake
  317.  
  318.  
  319. //End of buildings
  320.  
  321.  
  322. Upgrades
  323. *shinersmile
  324. name: Shiner Smiles
  325. desc: Polish your emojis teeth and get double production from them.
  326. passive:multiply yield of emojibaker by 2
  327. cost:50 cake
  328.  
  329. *hearteyes
  330. name:Heart Eyes
  331. desc: Get TRIPLE production from emoji bakers.
  332. passive:multiply yield of emojibaker by 3
  333. cost:500 cake
  334.  
  335. *swirlinghearts
  336. name:Swirling Hearts
  337. desc: Get 5x production from emoji bakers.
  338. passive:multiply yield of emojibaker by 5
  339. cost:5000 cake
  340.  
  341. *fasterovens
  342. name:Faster Ovens
  343. desc:The big cake gives x2 more cake.
  344. passive:multiply yield of bigcake by 2
  345. cost:350 cake
  346.  
  347. *phd
  348. name: PHD
  349. desc: Train your bakers to a higher skill than required and double their production.
  350. passive:multiply yield of probaker by 2
  351. cost:400 cake
  352.  
  353. *999iq
  354. name:999 IQ
  355. desc:Make your bakers have a higher intelligence quotient than humanly possible. Oh, and increase their production by 300%
  356. passive:multiply yield of probaker by 3
  357. cost:1000 cake
  358.  
  359. *ultimatebakinggenius
  360. name:Ultimate Baking Genius
  361. desc:5x Pro Baker boost as they are now to smart to describe in words.
  362. passive:multiply yield of probaker by 5
  363. cost:15000 cake
  364.  
  365.  
  366. *freerangeeggs
  367. name:Free Range Eggs
  368. desc:Don't make cakes out of caged eggs! Get free ranged ones and get a 3x click boost.
  369. passive:multiply yield of bigcake by 3
  370. cost:3000 cake
  371.  
  372. *fasterconveyorbelts
  373. name:Faster Conveyors
  374. desc:Increase conveyor belt speed and increase your factories production!
  375. passive:multiply yield of factory by 2
  376. cost:1500 cake
  377.  
  378. *coffee
  379. name:Coffee
  380. desc:Gives coffee to your factory workers and makes them work quicker and get tired slower.
  381. passive:multiply yield of factory by 3
  382. cost:5000 cake
  383.  
  384. *cheapdesign
  385. name:Highly Efficient Workforce
  386. desc:Makes factories produce more by training their workforce.
  387. passive:multiply yield of factory by 5
  388. cost:50000 cake
  389.  
  390. *sweetersugar
  391. name:Sweeter Sugar
  392. desc:Extra sweet sugar to improve your click
  393. passive:multiply yield of bigcake by 4
  394. cost:10000 cake
  395.  
  396. *fasterbaterstream
  397. name:Faster Batter Stream
  398. desc:More batter = better cakefalls = win
  399. passive:multiply yield of waterfall by 2
  400. cost:15000 cake
  401.  
  402. *morecherries
  403. name:More Cheries
  404. desc:More cherries = much better cakefalls = win
  405. passive:multiply yield of waterfall by 3
  406. cost:30000 cake
  407.  
  408. *moreicing
  409. name:More Icing
  410. desc:More Icing = best cakefalls = win
  411. passive:multiply yield of waterfall by 5
  412. cost:60000 cake
  413.  
  414. *softerflour
  415. name:Softer Flour
  416. desc:Softer four improves the cake thus improving clicks.
  417. passive:multiply yield of bigcake by 5
  418. cost:30000 cake
  419.  
  420. *9magnitude
  421. name:9.9 magnitude
  422. desc:Stronger Cakequake that produces more cake.
  423. passive:multiply yield of cakequake by 2
  424. cost:70000 cake
  425.  
  426. *11magnitude
  427. name:11.0 magnitude
  428. desc:Even Stronger Cakequake that produces even more cake.
  429. passive:multiply yield of cakequake by 3
  430. cost:150000 cake
  431.  
  432. *deadlyquake
  433. name:Deadly Quake
  434. desc:Give your Cakequakes the power to kill - with cake.
  435. passive:multiply yield of cakequake by 5
  436. cost:750000 cake
  437.  
  438. *premiumcherries
  439. name:Premium Cherries
  440. desc:The best of the best when it comes to cherries. These bad boys will multiply cakes/click by 6.
  441. passive:multiply yield of bigcake by 6
  442. cost:700000 cake
  443.  
  444. *moreash
  445. name:More Icing Ash
  446. desc:More Icing Ash will double your Volcakenos CPS.
  447. passive:multiply yield of volcakeno by 2
  448. cost:900000 cake
  449.  
  450. *moreboulders
  451. name:More Cherry Boulders
  452. desc:More Cherry Boulders will tripple your Volcakenos CPS.
  453. passive:multiply yield of volcakeno by 3
  454. cost:1900000 cake
  455.  
  456. *pompeii
  457. name:Cakepeii
  458. desc:The ultimate Volcakeno. Quintuples all Volcakenos CPS.
  459. passive:multiply yield of volcakeno by 5
  460. cost:5000000 cake
  461.  
  462. *betterbutter
  463. name:Better Butter
  464. desc:This butter multiplies cakes/click by 7.
  465. passive:multiply yield of bigcake by 7
  466. cost:1500000 cake
  467.  
  468. *100morefeet
  469. name:+100 Feet
  470. desc:Higher Cakeamis produce more cake.
  471. passive:multiply yield of cakeami by 2
  472. cost:5500000 cake
  473.  
  474. *100moremiles
  475. name:+100 Miles
  476. desc:Even taller Cakeamis produce even more cake.
  477. passive:multiply yield of cakeami by 3
  478. cost:10000000 cake
  479.  
  480. *verytallwave
  481. name:Very Tall Wave
  482. desc:Cakeamis the size of Everest produce more cake than ever needed.
  483. passive:multiply yield of cakeami by 5
  484. cost:29000000 cake
  485.  
  486. *homegrowningredients
  487. name:Home Grown Ingredients
  488. desc:Grow ingredient for cake at home for better cake/click.
  489. passive:multiply yield of bigcake by 9
  490. cost:9000000 cake
  491.  
  492. *caketheory
  493. name:Cake Theory
  494. desc:A theory that the entire universe is made of cake. Antimatter machines would benefit from this knowledge.
  495. passive:multiply yield of antimattermachine by 2
  496. cost:50000000 cake
  497.  
  498. *cakelaw
  499. name:The Cake Law
  500. desc:A law that explains that the entire universe is made of cake. Antimatter machines would benefit from this increased knowledge.
  501. passive:multiply yield of antimattermachine by 3
  502. cost:200000000 cake
  503.  
  504. *dongles
  505. name:Do-Dongle-Thingy-Mahigs
  506. desc:Extra things put inside the Antimatter machines internal machinery increase its CPS.
  507. passive:multiply yield of antimattermachine by 5
  508. cost:500000000 cake
  509.  
  510. *coolclick
  511. name:Cool Click
  512. desc:10x Click
  513. passive:multiply yield of bigcake by 10
  514. cost:20000000 cake
  515.  
  516. *clonerupgrade1
  517. name:Generic Cloner Upgrade
  518. desc:Generic description.
  519. passive:multiply yield of cloner by 2
  520. cost:200000000 cake
  521.  
  522.  
  523. *epicclick
  524. name:EPIC Click
  525. desc:99x Click
  526. passive:multiply yield of bigcake by 99
  527. cost:15 legendarycake
  528.  
  529. *legendaryclick
  530. name:LEGENDARY Click
  531. desc:999x Click!
  532. passive:multiply yield of bigcake by 999
  533. cost:25 legendarycake
  534.  
  535. *insaneclick
  536. name:INSANE CLICK!!!
  537. desc:An insane 9999x Click!
  538. passive:multiply yield of bigcake by 9999
  539. cost:50 legendarycake
  540.  
  541. *ultimateclick
  542. name:ULTIMATE CLICK!!!
  543. desc:The <b> ULTIMATE </b> 99999x Click! Too bad it costs a lot.
  544. passive:multiply yield of bigcake by 99999
  545. cost:99 legendarycake
  546.  
  547.  
  548. *betterbakers
  549. name: Better Bakers
  550. desc:Improve your emoji and pro bakers with some delicious legendary cake.
  551. cost:5 legendarycake
  552. passive:multiply yield of probaker by 9
  553. passive:multiply yield of emojibaker by 9
  554.  
  555. *evenbetterbakers
  556. name: Even Better Bakers
  557. desc:Further improve your emoji and pro bakers with some more delicious legendary cake.
  558. cost:15 legendarycake
  559. passive:multiply yield of probaker by 99
  560. passive:multiply yield of emojibaker by 99
  561.  
  562. *legendarybakers
  563. name:Legendary Bakers
  564. desc:Make your pro and emoji bakers baking skills legendary! P.S it's 9999x
  565. cost:49 legendarycake
  566. passive:multiply yield of probaker by 9999
  567. passive:multiply yield of emojibaker by 9999
  568.  
  569. *disaterimprover
  570. name:Cake-Related Disaster Amplifier
  571. desc:Increase the CPS of Cake Related disasters by 99x!
  572. cost:50 legendarycake
  573. passive:multiply yield of waterfall by 99
  574. passive:multiply yield of cakequake by 99
  575. passive:multiply yield of volcakeno by 99
  576. passive:multiply yield of cakeami by 99
  577.  
  578. *extrainsanity
  579. name:ExTRa InSanItY!
  580. desc:Used to be the most expensive upgrade! Multiplies Coder and Insane Machine CPS by 99.
  581. cost:99 legendarycake
  582. passive:multiply yield of coder by 99
  583. passive:multiply yield of insanemachine by 99
  584.  
  585. *advanedmachinery
  586. name:Advanced Machinery
  587. desc:Get extra cogs in your factories, antimatter machines and time machines and improve their CPS!
  588. cost:90 legendarycake
  589. passive:multiply yield of factory by 999
  590. passive:multiply yield of timemachine by 99
  591. passive:multiply yield of antimattermachine by 9
  592.  
  593. *extraop
  594. name:Extra OP
  595. desc:Make the OP Cake Producing Building more overpowered! The absolute most expensive upgrade.
  596. cost:9999 legendarycake
  597. passive:multiply yield of opbuilding by 999999
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609. Achievements
  610. *firstcake
  611. name:My First Cake
  612. desc:Bake a cake (Click the big cake once).
  613. req:1 bigcake:clicks
  614.  
  615. *100cake
  616. name:Tiny Bakery
  617. desc:Bake 100 Cakes.
  618. req:100 cake
  619.  
  620. *1000cake
  621. name:Small Bakery
  622. desc:Bake 1000 Cakes.
  623. req:1000 cake
  624.  
  625. *10000cake
  626. name:Large Bakery
  627. desc:Bake 10000 Cakes.
  628. req:10000 cake
  629.  
  630. *100000cake
  631. name:Mega Bakery
  632. desc:Bake 100000 Cakes.
  633. req:100000 cake
  634.  
  635. *1000000cake
  636. name:Bakery World Empire
  637. desc:Bake 1000000 Cakes.
  638. req:1000000 cake
  639.  
  640. *10000000cake
  641. name:Galactic Bakery
  642. desc:Bake 10000000 Cakes.
  643. req:10000000 cake
  644.  
  645. *100000000cake
  646. name:Universal Bakery
  647. desc:Bake 100000000 Cakes.
  648. req:100000000 cake
  649.  
  650. *1000000000cake
  651. name:The Ultimate Bakery of All Time In Existence Ever At All.
  652. desc:Bake 1000000000 Cakes. Because of your amazing achievement you get a bonus cake.
  653. req:1000000000 cake
  654. passive:yield 1 cake
  655.  
  656. *onecps
  657. name:Hired Help
  658. desc:Get 1 CPS (Cakes per second)
  659. req:1 cake per second
  660.  
  661. *tencps
  662. name:Automation
  663. desc:Reach 10 CPS (Cakes per second)
  664. req:10 cake per second
  665.  
  666. *50cps
  667. name:Speedy production
  668. desc:Reach 50 CPS (Cakes per second)
  669. req:50 cake per second
  670.  
  671. *500cps
  672. name:Sit down and chillax
  673. desc:Reach 500 CPS (Cakes per second)
  674. req:500 cake per second
  675.  
  676. *1000cps
  677. name:Rolling in Cake
  678. desc:Reach 1000 CPS (Cakes per second)
  679. req:1000 cake per second
  680.  
  681. *99999cps
  682. name:Ummmm… You played the game to this point?
  683. desc:Reach 99999 CPS (You should know what CPS stands for now) Well thanks for playing as a reward you have 9x click power.
  684. req:99999 cake per second
  685. passive:multiply yield of bigcake by 9
  686.  
  687. *999999cps
  688. name:Simply Insane
  689. desc:You. Are. INSANE.
  690. req:999999 cake per second
  691.  
  692. *9999999cps
  693. name:HACKER!
  694. desc:You. Are. HACKING!!!!. Or did you get those really good buildings at the bottom?
  695. req:9999999 cake per second
  696.  
  697. *99999999cps
  698. name:How?
  699. desc:You have reached over 99999999 CPS. How? Anyway have 9999x click power. You deserved it!
  700. req:99999999 cake per second
  701. passive:multiply yield of bigcake by 9999
  702.  
  703. *10clicks
  704. name:Clicker
  705. desc:Your getting the hang of this! (Click ten times)
  706. req:10 bigcake:clicks
  707.  
  708. *100clicks
  709. name:Dedicated Clicker
  710. desc:Great clicking! Keep the good work up. (Click 100 times)
  711. req:100 bigcake:clicks
  712.  
  713. *1000clicks
  714. name:Cake slapper
  715. desc:You can stop now. The cake is getting hurt!
  716. req:1000 bigcake:clicks
  717.  
  718. *10000clicks
  719. name:Cake Whacker
  720. desc:PLEASE. STOP. HURTING. THE. CAKE!
  721. req:10000 bigcake:clicks
  722.  
  723. *100000clicks
  724. name:Cake Smacker
  725. desc: FATAL ERROR: COULD NOT LOCATE THE FILE NAMED "CAKE.JPG" </> Possible Causes: </> Clicking the cake [bigcake:clicks] times. </> Possible Fixes </> <b> <t> STOP ABUSING THE CAKE!!!!! </b> </t>
  726. req:100000 bigcake:clicks
  727.  
  728.  
  729. *1000000clicks
  730. name:Cake Screen Of Death
  731. desc: Wait you clicked [bigcake:clicks] many times? How?
  732. req:1000000 bigcake:clicks
  733.  
  734. *10emojibakers
  735. name:Learning about Texting
  736. desc:Have 10 Baker Emojis
  737. req:10 emojibaker
  738.  
  739. *50emojibakers
  740. name:Texts Sent
  741. desc:Have 50 Baker Emojis
  742. req:50 emojibaker
  743.  
  744. *100emojibakers
  745. name:Texting King
  746. desc:Have 100 Baker Emojis. Also gives your emojis a 9x boost!
  747. req:100 emojibaker
  748. passive:multiply yield of emojibaker by 9
  749.  
  750. *10probakers
  751. name:Baker Workforce
  752. desc:Have 10 Pro Bakers.
  753. req:10 probaker
  754.  
  755. *50probakers
  756. name:Baker Army
  757. desc:Have 50 Pro Bakers.
  758. req:50 probaker
  759.  
  760. *100probakers
  761. name:Baker Apocalypse
  762. desc:Have 100 Pro Bakers. Also gives your Pro Bakers a 9x boost!
  763. req:100 probaker
  764. passive:multiply yield of probaker by 9
  765.  
  766. *10factory
  767. name:Cake Production
  768. desc:Have 10 Factories .
  769. req:10 factory
  770.  
  771. *50factory
  772. name:Mass Production
  773. desc:Have 50 Factories.
  774. req:50 factory
  775.  
  776. *100factory
  777. name:Massive Production
  778. desc:Have 100 Factories. Also gives your Factories a 9x boost!
  779. req:100 factory
  780. passive:multiply yield of factory by 9
  781.  
  782. *10cakefall
  783. name:Niagara Falls
  784. desc:Have 10 Cakefalls .
  785. req:10 waterfall
  786.  
  787. *50cakefall
  788. name:Para Falls
  789. desc:Have 50 Cakefalls.
  790. req:50 waterfall
  791.  
  792. *100cakefall
  793. name:Khone Falls
  794. desc:Have 100 Cakefalls. Also gives your Cakefalls a 9x boost!
  795. req:100 waterfall
  796. passive:multiply yield of waterfall by 9
  797.  
  798. *10cakequake
  799. name:Indian Ocean Cakequake
  800. desc:Have 10 Cakequakes .
  801. req:10 cakequake
  802.  
  803. *50cakequake
  804. name:Alaska Cakequake
  805. desc:Have 50 Cakequakes.
  806. req:50 cakequake
  807.  
  808. *100cakequake
  809. name:Valdivia Cakequake
  810. desc:Have 100 Cakequakes. Also gives your Cakequakes a 9x boost!
  811. req:100 cakequake
  812. passive:multiply yield of cakequake by 9
  813.  
  814. *10volcakeno
  815. name:Guarapuava —Ventura
  816. desc:Have 10 Volcakenos .
  817. req:10 volcakeno
  818.  
  819. *50volcakeno
  820. name:Santa Maria—Fria
  821. desc:Have 50 Volcakenos.
  822. req:50 volcakeno
  823.  
  824. *100volcakeno
  825. name: Guarapuava —Tamarana—Sarusas
  826. desc:Have 100 Volcakenos. Also gives your Volcakenos a 9x boost!
  827. req:100 volcakeno
  828. passive:multiply yield of volcakeno by 9
  829.  
  830. *10cakeami
  831. name:Small Cakeami
  832. desc:Have 10 Cakeamis .
  833. req:10 cakeami
  834.  
  835. *50cakeami
  836. name:Big Cakami
  837. desc:Have 50 Cakeamis.
  838. req:50 cakeami
  839.  
  840. *100cakeami
  841. name:Biggest Cakami
  842. desc:Have 100 Cakeamis. Also gives your Cakeamis a 9x boost!
  843. req:100 cakeami
  844. passive:multiply yield of cakeami by 9
  845.  
  846. *10antimattermachine
  847. name:Black Hole
  848. desc:Have 10 Anti-matter Machines .
  849. req:10 antimattermachine
  850.  
  851. *50antimattermachine
  852. name:Where is all the Antimatter?
  853. desc:Have 50 Anti-matter Machines.
  854. req:50 antimattermachine
  855.  
  856. *100antimattermachine
  857. name:The universe is Cake
  858. desc:Have 100 Anti-matter Machines. Also gives your Anti-matter Machines a 9x boost!
  859. req:100 antimattermachine
  860. passive:multiply yield of antimattermachine by 9
  861.  
  862. *10cloner
  863. name:20x Trouble
  864. desc:Have 10 Cloners .
  865. req:10 cloner
  866.  
  867. *50cloner
  868. name:Clone Wars
  869. desc:Have 50 Cloners.
  870. req:50 cloner
  871.  
  872. *100cloner
  873. name:Is that the Real Cake?
  874. desc:Have 100 Cloners. Also gives your Cloners a 9x boost!
  875. req:100 cloner
  876. passive:multiply yield of cloner by 9
  877.  
  878. *10coder
  879. name:Programer
  880. desc:Have 10 Cake Coders .
  881. req:10 coder
  882.  
  883. *50coder
  884. name:Hacker
  885. desc:Have 50 Cake Coders.
  886. req:50 coder
  887.  
  888. *100coder
  889. name:Generic Name
  890. desc:Have 100 Cake Coders. Also gives your Cake Coders a 9x boost!
  891. req:100 coder
  892. passive:multiply yield of coder by 9
  893.  
  894. *10insanemachine
  895. name:Insane
  896. desc:Have 10 Insane Machines .
  897. req:10 insanemachine
  898.  
  899. *50insanemachine
  900. name:Crazy Insane
  901. desc:Have 50 Insane Machines.
  902. req:50 insanemachine
  903.  
  904. *100insanemachine
  905. name:Insanely Insane
  906. desc:Have 100 Insane Machines. Also gives your Insane Machines a 9x boost!
  907. req:100 insanemachine
  908. passive:multiply yield of insanemachine by 9
  909.  
  910. *10timemachine
  911. name:Warp
  912. desc:Have 10 Time Machines.
  913. req:10 timemachine
  914.  
  915. *50timemachine
  916. name:Time Flies when Time Travelling
  917. desc:Have 50 Time Machines.
  918. req:50 timemachine
  919.  
  920. *100timemachine
  921. name:Back To The Past!
  922. desc:Have 100 Time Machines. Also gives your Time Machines a 9x boost!
  923. req:100 timemachine
  924. passive:multiply yield of timemachine by 9
  925.  
  926. *10cakegenie
  927. name:Your Wish Is Granted
  928. desc:Have 10 Cake Genies.
  929. req:10 cakegenie
  930.  
  931. *50cakegenie
  932. name:Ran out of Name Ideas
  933. desc:Have 50 Cake Genies.
  934. req:50 cakegenie
  935.  
  936. *100cakegenie
  937. name:You got this Achievement?
  938. desc:Have 100 Cake Genies. Also gives your Cake Genies. a 9x boost!
  939. req:100 cakegenie
  940. passive:multiply yield of cakegenie by 9
  941.  
  942. *1bakerlegend
  943. name:LEGENDARY
  944. desc:Buy a Legendary Baker. Yay you did it! </> Bonus Effect: Extra Click Power!
  945. req:1 bakerlegend
  946. passive:multiply yield of bigcake by 99
  947.  
  948. *5bakerlegend
  949. name:EXTRA LEGENDARY
  950. desc:Buy 5 Legendary Bakers. </> Bonus Effect:More Click Power!
  951. req:5 bakerlegend
  952. passive:multiply yield of bigcake by 99
  953.  
  954. *10bakerlegend
  955. name:Legendary Cakes are Worthless now.
  956. desc:Buy 10 Legendary Bakers. Are these cakes legendary anymore?</> Bonus Effect: None!
  957. req:10 bakerlegend
  958.  
  959. *1opbuilding
  960. name:OVERPOWERED
  961. desc:Buy an Over Powered Cake Producing Building! </> Bonus Effect: Extra Click Power!
  962. req:1 opbuilding
  963. passive:multiply yield of bigcake by 999
  964.  
  965. *5opbuilding
  966. name:CAKE OVERLOAD
  967. desc:Buy 5 Over Powered Cake Producing Buildings! </> Bonus Effect: Extra Overpowered Click Power!
  968. req:5 opbuilding
  969. passive:multiply yield of bigcake by 9999999
  970.  
  971. *1legendarycake
  972. name:A Golden Cake
  973. desc:Click a Legndary Cake!
  974. req:1 legendarycake
  975.  
  976. *10legendarycake
  977. name:Glistening Cakes
  978. desc:You have 10 legendary cakes. What will you do with them?
  979. req:10 legendarycake
  980.  
  981. *100legendarycake
  982. name:Legendary Cake Tastes Great!
  983. desc:You have 100 legendary cakes. Are you going to spend them?
  984. req:100 legendarycake
  985.  
  986. *999legendarycake
  987. name:Time to Spend These!
  988. desc:You have earned at least 999 legendary cakes. Time to upgrade that OP building!
  989. req:999 legendarycake
  990.  
  991. Shinies
  992. *legendarycakeshiny
  993. name:Legendary Cake
  994. on click:yield (random(1,5)) legendarycake
  995. movement:anywhere fade
  996. frequency:60
  997. frequency variation:90
  998. icon:https://i.ibb.co/kQF2rrZ/Legendary-Cake.jpg
  999. no text
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement