Advertisement
Guest User

Cake Clicker IDLE GAME MAKER beta

a guest
Jan 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.84 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. *legendaryupgrades
  184. contains:tag:legendaryUpgrade
  185.  
  186.  
  187.  
  188.  
  189. Buttons
  190. *bigcake
  191. name:bigcake
  192. icon:https://i.ibb.co/XYvH8d5/Cake.jpg
  193. no text
  194. no tooltip
  195. on click:yield 1 cake
  196. class:bigButton
  197.  
  198. Resources
  199. *cake
  200. name:Cake
  201. desc:These are your Cakes. Buy buildings with them and buy upgrades to improve them. Aim to get as many cakes as possible.
  202. icon:https://i.ibb.co/XYvH8d5/Cake.jpg
  203.  
  204. *legendarycake
  205. name:Legendary Cake
  206. desc:Earn these after clicking them when they randomly appear on screen. Use these for amazing upgrades!
  207. hidden when 0
  208. icon:https://i.ibb.co/kQF2rrZ/Legendary-Cake.jpg
  209.  
  210. Buildings
  211. *emojibaker
  212. name: Emoji Baker
  213. desc: Who said emojis can't bake? This little guy will make cake but very slowly.
  214. on tick:yield 1 cake
  215. cost:10 cake
  216. icon:https://i.ibb.co/W2vTxYg/Baker-Emoji.jpg
  217.  
  218.  
  219. *probaker
  220. name:Pro Baker
  221. desc: A qualified backing pro. Bakes faster than emojis!
  222. on tick:yield 3 cake
  223. cost:50 cake
  224. icon:https://i.ibb.co/rfprmVy/Pro-baker.jpg
  225.  
  226. *factory
  227. name:Factory
  228. desc: An entire factory dedicated to baking cakes.
  229. on tick:yield 10 cake
  230. cost:750 cake
  231. icon:https://i.ibb.co/9hJ2vSd/Factory.jpg
  232.  
  233.  
  234.  
  235. *waterfall
  236. name:Cakefall
  237. desc: A waterfall of cake. The cakes do not get soggy.
  238. on tick:yield 20 cake
  239. cost:1700 cake
  240. icon:https://i.ibb.co/4Y59NGg/Cakefall.jpg
  241.  
  242.  
  243.  
  244. *cakequake
  245. name:Cakequake
  246. desc: A constant earthquake of… CAKE!
  247. on tick:yield 35 cake
  248. cost:3000 cake
  249. icon:https://i.ibb.co/fdsxsqW/Cakequake.jpg
  250.  
  251.  
  252. *volcakeno
  253. name:Vol-cake-no
  254. desc:Your own volcano that spews out cake instead of molten rock
  255. on tick:yield 50 cake
  256. cost:10000 cake
  257. icon:https://i.ibb.co/ygxz3qz/Volcakeno.jpg
  258.  
  259.  
  260.  
  261. *cakeami
  262. name:Cakami
  263. 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.
  264. on tick:yield 99 cake
  265. cost:50001 cake
  266. icon:https://i.ibb.co/WcBm3f8/Cakami.jpg
  267.  
  268.  
  269. *antimattermachine
  270. name:Anti-Matter Machine
  271. desc:A modified version of Orteil's "Antimatter Condensers". Instead of cookies it produces cake out of the universes antimatter.
  272. on tick:yield 200 cake
  273. cost:109000 cake
  274. icon:https://i.ibb.co/BLvt7mt/Antimatter-machine.jpg
  275.  
  276.  
  277. *cloner
  278. name:Cloner
  279. desc:Clones cakes indefinitely at hypersonic speeds.
  280. on tick:yield 500 cake
  281. cost:999999 cake
  282. icon:https://i.ibb.co/KNkzjpt/Cloner.jpg
  283.  
  284.  
  285. *coder
  286. name:<Head> Cake CoDEr </head>
  287. desc:<body> I coDe CAkes ANd priNT TheM Out oF THiN aiR </body>
  288. on tick:yield 999 cake
  289. cost:9999999 cake
  290.  
  291. *insanemachine
  292. name:InSAne MAchinE
  293. desc: I aM moRe iNSAne tHAn My BroTHeR CoDEr. ThAt MEans I mAKe MorE CaKE!
  294. on tick:yield 2500 cake
  295. cost:62793025 cake
  296.  
  297. *timemachine
  298. name:Time Machine
  299. desc:TIME TRAVEL FOR DUMIES: Travel back in time. Get cake from past. Go back to present. Sell cake.
  300. on tick:yield 6000 cake
  301. cost:100000000 cake
  302.  
  303. *cakegenie
  304. name:Cake Genie
  305. 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.
  306. on tick:yield 15000 cake
  307. cost:987654321 cake
  308.  
  309. *bakerlegend
  310. name:Legendary Baker
  311. 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.
  312. on tick:yield 0.1 legendarycake
  313. cost:99999999999 cake
  314.  
  315. *opbuilding
  316. name:The OP Cake Producing Building
  317. desc:A building fuelled by legendary cake. It makes cakes very fast.
  318. on tick:yield 99999999999999999999999999999999999999 cake
  319. cost:999 legendarycake
  320.  
  321.  
  322. //End of buildings
  323.  
  324.  
  325. Upgrades
  326. *shinersmile
  327. name: Shiner Smiles
  328. desc: Polish your emojis teeth and get double production from them.
  329. passive:multiply yield of emojibaker by 2
  330. cost:50 cake
  331.  
  332. *hearteyes
  333. name:Heart Eyes
  334. desc: Get TRIPLE production from emoji bakers.
  335. passive:multiply yield of emojibaker by 3
  336. cost:500 cake
  337.  
  338. *swirlinghearts
  339. name:Swirling Hearts
  340. desc: Get 5x production from emoji bakers.
  341. passive:multiply yield of emojibaker by 5
  342. cost:5000 cake
  343.  
  344. *fasterovens
  345. name:Faster Ovens
  346. desc:The big cake gives x2 more cake.
  347. passive:multiply yield of bigcake by 2
  348. cost:350 cake
  349.  
  350. *phd
  351. name: PHD
  352. desc: Train your bakers to a higher skill than required and double their production.
  353. passive:multiply yield of probaker by 2
  354. cost:400 cake
  355.  
  356. *999iq
  357. name:999 IQ
  358. desc:Make your bakers have a higher intelligence quotient than humanly possible. Oh, and increase their production by 300%
  359. passive:multiply yield of probaker by 3
  360. cost:1000 cake
  361.  
  362. *ultimatebakinggenius
  363. name:Ultimate Baking Genius
  364. desc:5x Pro Baker boost as they are now to smart to describe in words.
  365. passive:multiply yield of probaker by 5
  366. cost:15000 cake
  367.  
  368.  
  369. *freerangeeggs
  370. name:Free Range Eggs
  371. desc:Don't make cakes out of caged eggs! Get free ranged ones and get a 3x click boost.
  372. passive:multiply yield of bigcake by 3
  373. cost:3000 cake
  374.  
  375. *fasterconveyorbelts
  376. name:Faster Conveyors
  377. desc:Increase conveyor belt speed and increase your factories production!
  378. passive:multiply yield of factory by 2
  379. cost:1500 cake
  380.  
  381. *coffee
  382. name:Coffee
  383. desc:Gives coffee to your factory workers and makes them work quicker and get tired slower.
  384. passive:multiply yield of factory by 3
  385. cost:5000 cake
  386.  
  387. *cheapdesign
  388. name:Highly Efficient Workforce
  389. desc:Makes factories produce more by training their workforce.
  390. passive:multiply yield of factory by 5
  391. cost:50000 cake
  392.  
  393. *sweetersugar
  394. name:Sweeter Sugar
  395. desc:Extra sweet sugar to improve your click
  396. passive:multiply yield of bigcake by 4
  397. cost:10000 cake
  398.  
  399. *fasterbaterstream
  400. name:Faster Batter Stream
  401. desc:More batter = better cakefalls = win
  402. passive:multiply yield of waterfall by 2
  403. cost:15000 cake
  404.  
  405. *morecherries
  406. name:More Cheries
  407. desc:More cherries = much better cakefalls = win
  408. passive:multiply yield of waterfall by 3
  409. cost:30000 cake
  410.  
  411. *moreicing
  412. name:More Icing
  413. desc:More Icing = best cakefalls = win
  414. passive:multiply yield of waterfall by 5
  415. cost:60000 cake
  416.  
  417. *softerflour
  418. name:Softer Flour
  419. desc:Softer four improves the cake thus improving clicks.
  420. passive:multiply yield of bigcake by 5
  421. cost:30000 cake
  422.  
  423. *9magnitude
  424. name:9.9 magnitude
  425. desc:Stronger Cakequake that produces more cake.
  426. passive:multiply yield of cakequake by 2
  427. cost:70000 cake
  428.  
  429. *11magnitude
  430. name:11.0 magnitude
  431. desc:Even Stronger Cakequake that produces even more cake.
  432. passive:multiply yield of cakequake by 3
  433. cost:150000 cake
  434.  
  435. *deadlyquake
  436. name:Deadly Quake
  437. desc:Give your Cakequakes the power to kill - with cake.
  438. passive:multiply yield of cakequake by 5
  439. cost:750000 cake
  440.  
  441. *premiumcherries
  442. name:Premium Cherries
  443. desc:The best of the best when it comes to cherries. These bad boys will multiply cakes/click by 6.
  444. passive:multiply yield of bigcake by 6
  445. cost:700000 cake
  446.  
  447. *moreash
  448. name:More Icing Ash
  449. desc:More Icing Ash will double your Volcakenos CPS.
  450. passive:multiply yield of volcakeno by 2
  451. cost:900000 cake
  452.  
  453. *moreboulders
  454. name:More Cherry Boulders
  455. desc:More Cherry Boulders will tripple your Volcakenos CPS.
  456. passive:multiply yield of volcakeno by 3
  457. cost:1900000 cake
  458.  
  459. *pompeii
  460. name:Cakepeii
  461. desc:The ultimate Volcakeno. Quintuples all Volcakenos CPS.
  462. passive:multiply yield of volcakeno by 5
  463. cost:5000000 cake
  464.  
  465. *betterbutter
  466. name:Better Butter
  467. desc:This butter multiplies cakes/click by 7.
  468. passive:multiply yield of bigcake by 7
  469. cost:1500000 cake
  470.  
  471. *100morefeet
  472. name:+100 Feet
  473. desc:Higher Cakeamis produce more cake.
  474. passive:multiply yield of cakeami by 2
  475. cost:5500000 cake
  476.  
  477. *100moremiles
  478. name:+100 Miles
  479. desc:Even taller Cakeamis produce even more cake.
  480. passive:multiply yield of cakeami by 3
  481. cost:10000000 cake
  482.  
  483. *verytallwave
  484. name:Very Tall Wave
  485. desc:Cakeamis the size of Everest produce more cake than ever needed.
  486. passive:multiply yield of cakeami by 5
  487. cost:29000000 cake
  488.  
  489. *homegrowningredients
  490. name:Home Grown Ingredients
  491. desc:Grow ingredient for cake at home for better cake/click.
  492. passive:multiply yield of bigcake by 9
  493. cost:9000000 cake
  494.  
  495. *caketheory
  496. name:Cake Theory
  497. desc:A theory that the entire universe is made of cake. Antimatter machines would benefit from this knowledge.
  498. passive:multiply yield of antimattermachine by 2
  499. cost:50000000 cake
  500.  
  501. *cakelaw
  502. name:The Cake Law
  503. desc:A law that explains that the entire universe is made of cake. Antimatter machines would benefit from this increased knowledge.
  504. passive:multiply yield of antimattermachine by 3
  505. cost:200000000 cake
  506.  
  507. *dongles
  508. name:Do-Dongle-Thingy-Mahigs
  509. desc:Extra things put inside the Antimatter machines internal machinery increase its CPS.
  510. passive:multiply yield of antimattermachine by 5
  511. cost:500000000 cake
  512.  
  513. *coolclick
  514. name:Cool Click
  515. desc:10x Click
  516. passive:multiply yield of bigcake by 10
  517. cost:20000000 cake
  518.  
  519. *clonerupgrade1
  520. name:Generic Cloner Upgrade
  521. desc:Generic description.
  522. passive:multiply yield of cloner by 2
  523. cost:200000000 cake
  524.  
  525.  
  526. *epicclick
  527. name:EPIC Click
  528. desc:99x Click
  529. passive:multiply yield of bigcake by 99
  530. cost:49 legendarycake
  531.  
  532. *legendaryclick
  533. name:LEGENDARY Click
  534. desc:999x Click!
  535. passive:multiply yield of bigcake by 999
  536. cost:99 legendarycake
  537.  
  538. *insaneclick
  539. name:INSANE CLICK!!!
  540. desc:An insane 9999x Click!
  541. passive:multiply yield of bigcake by 9999
  542. cost:230 legendarycake
  543.  
  544. *ultimateclick
  545. name:ULTIMATE CLICK!!!
  546. desc:The <b> ULTIMATE </b> 99999x Click! Too bad it costs a lot.
  547. passive:multiply yield of bigcake by 99999
  548. cost:500 legendarycake
  549. tag:legendaryUpgrade
  550.  
  551. *betterbakers
  552. name: Better Bakers
  553. desc:Improve your emoji and pro bakers with some delicious legendary cake.
  554. cost:5 legendarycake
  555. passive:multiply yield of probaker by 9
  556. passive:multiply yield of emojibaker by 9
  557. tag:legendaryUpgrade
  558.  
  559. *evenbetterbakers
  560. name: Even Better Bakers
  561. desc:Further improve your emoji and pro bakers with some more delicious legendary cake.
  562. cost:15 legendarycake
  563. passive:multiply yield of probaker by 99
  564. passive:multiply yield of emojibaker by 99
  565. tag:legendaryUpgrade
  566.  
  567. *legendarybakers
  568. name:Legendary Bakers
  569. desc:Make your pro and emoji bakers baking skills legendary! P.S it's 9999x
  570. cost:49 legendarycake
  571. passive:multiply yield of probaker by 9999
  572. passive:multiply yield of emojibaker by 9999
  573. tag:legendaryUpgrade
  574.  
  575. *disaterimprover
  576. name:Cake-Related Disaster Amplifier
  577. desc:Increase the CPS of Cake Related disasters by 99x!
  578. cost:50 legendarycake
  579. passive:multiply yield of waterfall by 99
  580. passive:multiply yield of cakequake by 99
  581. passive:multiply yield of volcakeno by 99
  582. passive:multiply yield of cakeami by 99
  583. tag:legendaryUpgrade
  584.  
  585. *extrainsanity
  586. name:ExTRa InSanItY!
  587. desc:Multiplies Coder and Insane Machine CPS by 99.
  588. cost:99 legendarycake
  589. passive:multiply yield of coder by 99
  590. passive:multiply yield of insanemachine by 99
  591. tag:legendaryUpgrade
  592.  
  593. *advanedmachinery
  594. name:Advanced Machinery
  595. desc:Get extra cogs in your factories, antimatter machines and time machines and improve their CPS!
  596. cost:90 legendarycake
  597. passive:multiply yield of factory by 999
  598. passive:multiply yield of timemachine by 99
  599. passive:multiply yield of antimattermachine by 9
  600. tag:legendaryUpgrade
  601.  
  602. *extraop
  603. name:Extra OP
  604. desc:Make the OP Cake Producing Building more overpowered! The absolute most expensive upgrade.
  605. cost:9999 legendarycake
  606. passive:multiply yield of opbuilding by 99999999999999999999999
  607. tag:legendaryUpgrade
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619. Achievements
  620. *firstcake
  621. name:My First Cake
  622. desc:Bake a cake (Click the big cake once).
  623. req:1 bigcake:clicks
  624.  
  625. *100cake
  626. name:Tiny Bakery
  627. desc:Bake 100 Cakes.
  628. req:100 cake
  629.  
  630. *1000cake
  631. name:Small Bakery
  632. desc:Bake 1000 Cakes.
  633. req:1000 cake
  634.  
  635. *10000cake
  636. name:Large Bakery
  637. desc:Bake 10000 Cakes.
  638. req:10000 cake
  639.  
  640. *100000cake
  641. name:Mega Bakery
  642. desc:Bake 100000 Cakes.
  643. req:100000 cake
  644.  
  645. *1000000cake
  646. name:Bakery World Empire
  647. desc:Bake 1000000 Cakes.
  648. req:1000000 cake
  649.  
  650. *10000000cake
  651. name:Galactic Bakery
  652. desc:Bake 10000000 Cakes.
  653. req:10000000 cake
  654.  
  655. *100000000cake
  656. name:Universal Bakery
  657. desc:Bake 100000000 Cakes.
  658. req:100000000 cake
  659.  
  660. *1000000000cake
  661. name:The Ultimate Bakery of All Time In Existence Ever At All.
  662. desc:Bake 1000000000 Cakes. Because of your amazing achievement you get a bonus cake.
  663. req:1000000000 cake
  664. passive:yield 1 cake
  665.  
  666. *10000000000cake
  667. name:You Can Stop Now
  668. desc:Bake 10000000000 Cakes. You do know you don't have to play this game so much.
  669. req:10000000000 cake
  670.  
  671. *100000000000cake
  672. name:Listen To Me
  673. desc:Bake 1000000000000 Cakes. Stop producing Cakes!
  674. req:100000000000 cake
  675.  
  676. *1000000000000cake
  677. name:Never Bake Again
  678. desc:Bake 10000000000000 Cakes. </> Ever!
  679. req:1000000000000 cake
  680.  
  681. *10000000000000cake
  682. name:I am going to reset your cake ok.
  683. desc:Bake 100000000000000 Cakes.
  684. req:10000000000000 cake
  685.  
  686. *100000000000000cake
  687. name:You Asked For It.
  688. desc:Bake 1000000000000000 Cakes.
  689. req:100000000000000 cake
  690.  
  691. *1000000000000000cake
  692. name:Reseting Cakes Next Achievement.
  693. desc:Bake 10000000000000000 Cakes.
  694. req:1000000000000000 cake
  695.  
  696. *10000000000000000cake
  697. name:I'm not Joking.
  698. desc:Bake 100000000000000000 Cakes.
  699. req:10000000000000000 cake
  700. passive:lose cake
  701.  
  702. *100000000000000000cake
  703. name:I give up.
  704. desc:Bake 1000000000000000000 Cakes.
  705. req:100000000000000000 cake
  706.  
  707.  
  708.  
  709.  
  710. *onecps
  711. name:Hired Help
  712. desc:Get 1 CPS (Cakes per second)
  713. req:1 cake per second
  714.  
  715. *tencps
  716. name:Automation
  717. desc:Reach 10 CPS (Cakes per second)
  718. req:10 cake per second
  719.  
  720. *50cps
  721. name:Speedy production
  722. desc:Reach 50 CPS (Cakes per second)
  723. req:50 cake per second
  724.  
  725. *500cps
  726. name:Sit down and chillax
  727. desc:Reach 500 CPS (Cakes per second)
  728. req:500 cake per second
  729.  
  730. *1000cps
  731. name:Rolling in Cake
  732. desc:Reach 1000 CPS (Cakes per second)
  733. req:1000 cake per second
  734.  
  735. *99999cps
  736. name:Ummmm… You played the game to this point?
  737. desc:Reach 99999 CPS (You should know what CPS stands for now) Well thanks for playing as a reward you have 9x click power.
  738. req:99999 cake per second
  739. passive:multiply yield of bigcake by 9
  740.  
  741. *999999cps
  742. name:Simply Insane
  743. desc:You. Are. INSANE.
  744. req:999999 cake per second
  745.  
  746. *9999999cps
  747. name:HACKER!
  748. desc:You. Are. HACKING!!!!. Or did you get those really good buildings at the bottom?
  749. req:9999999 cake per second
  750.  
  751. *99999999cps
  752. name:How?
  753. desc:You have reached over 99999999 CPS. How? Anyway have 999x click power. You deserved it!
  754. req:99999999 cake per second
  755. passive:multiply yield of bigcake by 999
  756.  
  757. *999999999cps
  758. name:How Long Can These Names Be? Lets see! Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pellentesque tortor tortor, at sollicitudin justo venenatis eget. In dapibus dui eu diam lacinia commodo. Vivamus ut porttitor nulla. Morbi condimentum placerat urna, a venenatis magna varius vitae. Phasellus commodo magna vel neque gravida volutpat id a lacus. Pellentesque enim metus, mollis ac libero non, vulputate semper orci. Sed eu dolor et velit ullamcorper aliquam. Ut dapibus dui nec convallis sagittis. Maecenas quis rutrum nunc. Suspendisse elementum nibh ut nisi sollicitudin, et elementum tellus aliquam. Vivamus justo turpis, vulputate sit amet mi eget, facilisis lobortis nisi. Nulla consequat ultricies tellus nec vulputate. Suspendisse ultrices varius ipsum, sit amet ullamcorper dui facilisis et. Donec condimentum justo neque, vitae cursus tortor posuere quis. Maecenas dictum semper auctor. Integer ornare, ligula sed faucibus auctor, mauris ante pretium elit, eu mollis quam nisl quis nisl.
  759. desc:You have reached over 999999999 CPS.
  760. req:999999999 cake per second
  761.  
  762. *9999999999cps
  763. name:Great Job!
  764. desc:You have reached over 9999999999 CPS.
  765. req:9999999999 cake per second
  766.  
  767. *99999999999cps
  768. name:Your Making Me Run Out Of Names
  769. desc:You have reached over 99999999999 CPS.
  770. req:99999999999 cake per second
  771.  
  772. *999999999999cps
  773. name:……
  774. desc:You have reached over 999999999999 CPS. Ummm…..
  775. req:999999999999 cake per second
  776.  
  777. *9999999999999cps
  778. name:STOP NOW!
  779. desc:You have reached over 9999999999999 CPS. PLEASE STOP
  780. req:9999999999999 cake per second
  781.  
  782. *99999999999999cps
  783. name:I CAN'T HANDLE IT!
  784. desc:You have reached over 99999999999999 CPS. The Computer is Running out of Memory!
  785. req:99999999999999 cake per second
  786.  
  787. *999999999999999cps
  788. name:FATAL ERROR!
  789. desc:You have reached over 999999999999999 CPS. Your device is going to explode!
  790. req:999999999999999 cake per second
  791.  
  792. *9999999999999999cps
  793. name:SELF DESTRUCT MODE INITIATED
  794. desc:You have reached over 9999999999999999 CPS. Blowing up your PC in 1 second.
  795. req:9999999999999999 cake per second
  796.  
  797. *99999999999999999cps
  798. name:Hard Reset Activated
  799. desc:You have reached over 99999999999999999 CPS. Reseting to 1 came now!
  800. req:99999999999999999 cake per second
  801. passive:lose cake
  802.  
  803.  
  804. *10clicks
  805. name:Clicker
  806. desc:Your getting the hang of this! (Click ten times)
  807. req:10 bigcake:clicks
  808.  
  809. *100clicks
  810. name:Dedicated Clicker
  811. desc:Great clicking! Keep the good work up. (Click 100 times)
  812. req:100 bigcake:clicks
  813.  
  814. *1000clicks
  815. name:Cake slapper
  816. desc:You can stop now. The cake is getting hurt!
  817. req:1000 bigcake:clicks
  818.  
  819. *10000clicks
  820. name:Cake Whacker
  821. desc:PLEASE. STOP. HURTING. THE. CAKE!
  822. req:10000 bigcake:clicks
  823.  
  824.  
  825. *1000000clicks
  826. name:Cake Screen Of Death
  827. desc: Wait you clicked [bigcake:clicks] many times? How?
  828. req:1000000 bigcake:clicks
  829.  
  830. *10emojibakers
  831. name:Learning about Texting
  832. desc:Have 10 Baker Emojis
  833. req:10 emojibaker
  834.  
  835. *50emojibakers
  836. name:Texts Sent
  837. desc:Have 50 Baker Emojis
  838. req:50 emojibaker
  839.  
  840. *100emojibakers
  841. name:Texting King
  842. desc:Have 100 Baker Emojis. Also gives your emojis a 9x boost!
  843. req:100 emojibaker
  844. passive:multiply yield of emojibaker by 9
  845.  
  846. *10probakers
  847. name:Baker Workforce
  848. desc:Have 10 Pro Bakers.
  849. req:10 probaker
  850.  
  851. *50probakers
  852. name:Baker Army
  853. desc:Have 50 Pro Bakers.
  854. req:50 probaker
  855.  
  856. *100probakers
  857. name:Baker Apocalypse
  858. desc:Have 100 Pro Bakers. Also gives your Pro Bakers a 9x boost!
  859. req:100 probaker
  860. passive:multiply yield of probaker by 9
  861.  
  862. *10factory
  863. name:Cake Production
  864. desc:Have 10 Factories .
  865. req:10 factory
  866.  
  867. *50factory
  868. name:Mass Production
  869. desc:Have 50 Factories.
  870. req:50 factory
  871.  
  872. *100factory
  873. name:Massive Production
  874. desc:Have 100 Factories. Also gives your Factories a 9x boost!
  875. req:100 factory
  876. passive:multiply yield of factory by 9
  877.  
  878. *10cakefall
  879. name:Niagara Falls
  880. desc:Have 10 Cakefalls .
  881. req:10 waterfall
  882.  
  883. *50cakefall
  884. name:Para Falls
  885. desc:Have 50 Cakefalls.
  886. req:50 waterfall
  887.  
  888. *100cakefall
  889. name:Khone Falls
  890. desc:Have 100 Cakefalls. Also gives your Cakefalls a 9x boost!
  891. req:100 waterfall
  892. passive:multiply yield of waterfall by 9
  893.  
  894. *10cakequake
  895. name:Indian Ocean Cakequake
  896. desc:Have 10 Cakequakes .
  897. req:10 cakequake
  898.  
  899. *50cakequake
  900. name:Alaska Cakequake
  901. desc:Have 50 Cakequakes.
  902. req:50 cakequake
  903.  
  904. *100cakequake
  905. name:Valdivia Cakequake
  906. desc:Have 100 Cakequakes. Also gives your Cakequakes a 9x boost!
  907. req:100 cakequake
  908. passive:multiply yield of cakequake by 9
  909.  
  910. *10volcakeno
  911. name:Guarapuava —Ventura
  912. desc:Have 10 Volcakenos .
  913. req:10 volcakeno
  914.  
  915. *50volcakeno
  916. name:Santa Maria—Fria
  917. desc:Have 50 Volcakenos.
  918. req:50 volcakeno
  919.  
  920. *100volcakeno
  921. name: Guarapuava —Tamarana—Sarusas
  922. desc:Have 100 Volcakenos. Also gives your Volcakenos a 9x boost!
  923. req:100 volcakeno
  924. passive:multiply yield of volcakeno by 9
  925.  
  926. *10cakeami
  927. name:Small Cakeami
  928. desc:Have 10 Cakeamis .
  929. req:10 cakeami
  930.  
  931. *50cakeami
  932. name:Big Cakami
  933. desc:Have 50 Cakeamis.
  934. req:50 cakeami
  935.  
  936. *100cakeami
  937. name:Biggest Cakami
  938. desc:Have 100 Cakeamis. Also gives your Cakeamis a 9x boost!
  939. req:100 cakeami
  940. passive:multiply yield of cakeami by 9
  941.  
  942. *10antimattermachine
  943. name:Black Hole
  944. desc:Have 10 Anti-matter Machines .
  945. req:10 antimattermachine
  946.  
  947. *50antimattermachine
  948. name:Where is all the Antimatter?
  949. desc:Have 50 Anti-matter Machines.
  950. req:50 antimattermachine
  951.  
  952. *100antimattermachine
  953. name:The universe is Cake
  954. desc:Have 100 Anti-matter Machines. Also gives your Anti-matter Machines a 9x boost!
  955. req:100 antimattermachine
  956. passive:multiply yield of antimattermachine by 9
  957.  
  958. *10cloner
  959. name:20x Trouble
  960. desc:Have 10 Cloners .
  961. req:10 cloner
  962.  
  963. *50cloner
  964. name:Clone Wars
  965. desc:Have 50 Cloners.
  966. req:50 cloner
  967.  
  968. *100cloner
  969. name:Is that the Real Cake?
  970. desc:Have 100 Cloners. Also gives your Cloners a 9x boost!
  971. req:100 cloner
  972. passive:multiply yield of cloner by 9
  973.  
  974. *10coder
  975. name:Programer
  976. desc:Have 10 Cake Coders .
  977. req:10 coder
  978.  
  979. *50coder
  980. name:Hacker
  981. desc:Have 50 Cake Coders.
  982. req:50 coder
  983.  
  984. *100coder
  985. name:Generic Name
  986. desc:Have 100 Cake Coders. Also gives your Cake Coders a 9x boost!
  987. req:100 coder
  988. passive:multiply yield of coder by 9
  989.  
  990. *10insanemachine
  991. name:Insane
  992. desc:Have 10 Insane Machines .
  993. req:10 insanemachine
  994.  
  995. *50insanemachine
  996. name:Crazy Insane
  997. desc:Have 50 Insane Machines.
  998. req:50 insanemachine
  999.  
  1000. *100insanemachine
  1001. name:Insanely Insane
  1002. desc:Have 100 Insane Machines. Also gives your Insane Machines a 9x boost!
  1003. req:100 insanemachine
  1004. passive:multiply yield of insanemachine by 9
  1005.  
  1006. *10timemachine
  1007. name:Warp
  1008. desc:Have 10 Time Machines.
  1009. req:10 timemachine
  1010.  
  1011. *50timemachine
  1012. name:Time Flies when Time Travelling
  1013. desc:Have 50 Time Machines.
  1014. req:50 timemachine
  1015.  
  1016. *100timemachine
  1017. name:Back To The Past!
  1018. desc:Have 100 Time Machines. Also gives your Time Machines a 9x boost!
  1019. req:100 timemachine
  1020. passive:multiply yield of timemachine by 9
  1021.  
  1022. *10cakegenie
  1023. name:Your Wish Is Granted
  1024. desc:Have 10 Cake Genies.
  1025. req:10 cakegenie
  1026.  
  1027. *50cakegenie
  1028. name:Ran out of Name Ideas
  1029. desc:Have 50 Cake Genies.
  1030. req:50 cakegenie
  1031.  
  1032. *100cakegenie
  1033. name:You got this Achievement?
  1034. desc:Have 100 Cake Genies. Also gives your Cake Genies. a 9x boost!
  1035. req:100 cakegenie
  1036. passive:multiply yield of cakegenie by 9
  1037.  
  1038. *1bakerlegend
  1039. name:LEGENDARY
  1040. desc:Buy a Legendary Baker. Yay you did it! </> Bonus Effect: Extra Click Power!
  1041. req:1 bakerlegend
  1042. passive:multiply yield of bigcake by 99
  1043.  
  1044. *5bakerlegend
  1045. name:EXTRA LEGENDARY
  1046. desc:Buy 5 Legendary Bakers. </> Bonus Effect:More Click Power!
  1047. req:5 bakerlegend
  1048. passive:multiply yield of bigcake by 99
  1049.  
  1050. *10bakerlegend
  1051. name:Legendary Cakes are Worthless now.
  1052. desc:Buy 10 Legendary Bakers. Are these cakes legendary anymore?</> Bonus Effect: None!
  1053. req:10 bakerlegend
  1054.  
  1055. *1opbuilding
  1056. name:OVERPOWERED
  1057. desc:Buy an Over Powered Cake Producing Building! </> Bonus Effect: Extra Click Power!
  1058. req:1 opbuilding
  1059. passive:multiply yield of bigcake by 999
  1060.  
  1061. *5opbuilding
  1062. name:CAKE OVERLOAD
  1063. desc:Buy 5 Over Powered Cake Producing Buildings! </> Bonus Effect: Extra Overpowered Click Power!
  1064. req:5 opbuilding
  1065. passive:multiply yield of bigcake by 9999999
  1066.  
  1067. *1legendarycake
  1068. name:A Golden Cake
  1069. desc:Click a Legndary Cake!
  1070. req:1 legendarycake
  1071.  
  1072. *10legendarycake
  1073. name:Glistening Cakes
  1074. desc:You have 10 legendary cakes. What will you do with them?
  1075. req:10 legendarycake
  1076.  
  1077. *100legendarycake
  1078. name:Legendary Cake Tastes Great!
  1079. desc:You have 100 legendary cakes. Are you going to spend them?
  1080. req:100 legendarycake
  1081.  
  1082. *999legendarycake
  1083. name:Time to Spend These!
  1084. desc:You have earned at least 999 legendary cakes. Time to upgrade that OP building!
  1085. req:999 legendarycake
  1086.  
  1087. Shinies
  1088. *legendarycakeshiny
  1089. name:Legendary Cake
  1090. on click:yield (random(1,5)) legendarycake
  1091. movement:anywhere fade
  1092. frequency:60
  1093. frequency variation:90
  1094. icon:https://i.ibb.co/kQF2rrZ/Legendary-Cake.jpg
  1095. no text
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement