IronDizaster

Untitled

Mar 8th, 2019
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.67 KB | None | 0 0
  1. Let's make a game!
  2. name:Donut Clicker
  3. by:Donutask
  4. forum post:17684
  5. desc:Click the big donut to earn donuts. Use those donuts to buy buildings to produce donuts without clicking. Purchase upgrades to improve idle donut production. Click the shiny Golden Donuts for a special currency. Also, hatch your very own dragon.</><b>V 1.0</b></>Released game with:</><.>26 Achievements<.>Lots of Upgrades<.>5 Buildings<.>A dragon<.>Delicious Golden Donuts
  6.  
  7. created:31/2/19
  8. version:1
  9.  
  10.  
  11. Layout
  12. *store
  13. contains:buildings, upgrades
  14. *buildings
  15. contains:BulkDisplay, Buildings
  16. header:Buildings
  17. tooltip origin:left
  18. *upgrades
  19. contains:Upgrades
  20. header:Upgrades
  21. costs:hide
  22. names:hide
  23. *main
  24. contains:res, buttons
  25. *res
  26. contains:Resources
  27. class:fullWidth
  28. *buttons
  29. contains:Buttons
  30. *goldStore
  31. contains:tag:goldUpgrade
  32. header:Golden Upgrades
  33. costs:show
  34. names:show
  35. *dragonStuffs
  36. contains:tag:dragon
  37. header:Dragon Stuff
  38. costs:show
  39. names:hide
  40.  
  41.  
  42. Settings
  43. no bulk particles
  44. background:https://i.ibb.co/sCHj1M6/Screen-Shot-2019-03-08-at-5-57-53-pm.png
  45. spritesheet:ClassicIcons, 48 by 48, https://i.imgur.com/3B1RfTD.png
  46. spritesheet:DonutIcons, 48 by 48, https://i.ibb.co/YWgyhQ8/Donut-Sprites.png
  47. spritesheet:MoarIcons, 48 by 48, https://i.ibb.co/bW75FKz/Extaicons-Donut-Clicker.png
  48. spritesheet:DragonIcons, 48 by 48, https://i.ibb.co/Zg7dbQT/Dragon-Stuffs.png
  49. stylesheet:https://pastebin.com/bghpvACb
  50.  
  51. CSS
  52. #game.filtersOn .thing.cantAfford.notOwned
  53. {
  54. filter:blur(2px);
  55. }
  56.  
  57. Resources
  58. *donuts
  59. name:Donut | Donuts
  60. desc:Earn these through clicking and buildings. Spend them on buildings and upgrades.
  61. show earned
  62. icon:ClassicIcons[0,0]
  63.  
  64. *goldDonuts
  65. name:Golden Donut | Golden Donuts
  66. desc:A rare, valuable and scrumptious donut. Spend these wisely.
  67. show earned
  68. hidden when 0
  69. icon:ClassicIcons[2,0]
  70.  
  71.  
  72. //Internal
  73. *particles
  74. hidden
  75.  
  76. *buffPoints
  77. name:For the dragon also how are you seeing this?
  78. hidden
  79.  
  80. *frenzyDuration
  81. name:FRENZY
  82. desc:x7 Donut Production for 30 seconds! Time left [this]
  83. on tick:if (frenzyDuration>0) multiply yield of tag:building by 7
  84. on tick:yield -1 frenzyDuration
  85. hidden when 0
  86. icon:DragonIcons[0,1]
  87.  
  88.  
  89.  
  90.  
  91. Buttons
  92. *donutButton
  93. no tooltip
  94. on click:yield 1 donuts
  95. on click:if (chance(20%)) spawn fallingDonuts
  96. on click:if (have goldTouch and chance(1%)) yield 1 goldDonuts
  97. on click:if (have research3 and chance(1%)) yield 1 goldDonuts
  98. on click:if (have clickWorkerUp) yield ((worker)+0.1) donuts
  99. on click:if (have clickBakeryUp) yield ((bakery)+0.5) donuts
  100. on click:if (have clickFarmUp) yield ((farm)+1) donuts
  101. on click:if (have clickFactoryUp) yield ((factory)+2) donuts
  102. on click:if (have clickEnergiserUp) yield ((energiser)+3) donuts
  103. class:bigButton
  104. icon:https://i.ibb.co/gTd44dp/Donut-Button.png
  105. no text
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112. Buildings
  113.  
  114. *debugBuilding
  115. name:OP
  116. desc:A debug building.
  117. on tick:yield 99999 donuts
  118. on tick:yield 999 goldDonuts
  119. cost:1 donuts
  120. icon:ClassicIcons[2,0]
  121. tag:building
  122.  
  123.  
  124. *worker
  125. name:Worker
  126. desc:Works hard to produce donuts for you. </><b>Base Effect:</b></>1 Donut every 10 seconds.
  127. on tick:yield 0.1 donuts
  128. cost:20 donuts
  129. icon:ClassicIcons[2,1]
  130. tag:building
  131.  
  132. *bakery
  133. name:Bakery
  134. desc:Open a bakery to gain customers and ironically donuts as well. </><b>Base Effect:</b></>1 Donuts/second.
  135. on tick:yield 1 donuts
  136. cost:300 donuts
  137. req:300 donuts:earned
  138. icon:ClassicIcons[0,2]
  139. tag:building
  140.  
  141. *farm
  142. name:Farm
  143. desc:Grows donuts from seeds. </><b>Base Effect:</b></>5 Donuts/second.
  144. on tick:yield 5 donuts
  145. on tick:if (have goldenTrees) yield 0.01 goldDonuts
  146. cost:3500 donuts
  147. req:3500 donuts:earned
  148. icon:ClassicIcons[2,2]
  149. tag:building
  150.  
  151. *factory
  152. name:Factory
  153. desc:A large factory to mass produce donuts. </><b>Base Effect:</b></>25 Donuts/second.
  154. on tick:yield 20 donuts
  155. cost:25000 donuts
  156. req:25000 donuts:earned
  157. icon:ClassicIcons[0,3]
  158. tag:building
  159.  
  160. *energiser
  161. name:Energiser
  162. desc:Uses tremendous amounts of energy to create donuts. Shocking! </><b>Base Effect:</b></>60 Donuts/second.
  163. on tick:yield 50 donuts
  164. cost:900000 donuts
  165. req:900000 donuts:earned
  166. icon:ClassicIcons[2,3]
  167. tag:building
  168.  
  169. Upgrades
  170.  
  171.  
  172. *TEMPLATE
  173. tag:regUp
  174.  
  175. *donutUp1
  176. name:Cinnamon Donuts
  177. desc:Plain, hot cinnamon donuts.</></><b>Effect:</b></>+1% Donut Production.
  178. req:500 donuts:earned
  179. passive:multiply yield of donuts by 1.01
  180. passive:hide this
  181. icon:DonutIcons[2,0]
  182. cost:500 donuts
  183.  
  184. *donutUp2
  185. name:Red Icing
  186. desc:Beautiful red iced donuts.</></><b>Effect:</b></>+5% Donut Production.
  187. req:1000 donuts:earned
  188. passive:multiply yield of donuts by 1.05
  189. passive:hide this
  190. icon:DonutIcons[2,2]
  191. cost:1000 donuts
  192.  
  193. *donutUp3
  194. name:Orange Icing
  195. desc:Donuts with orange frosting. </></><b>Effect:</b></>+5% Donut Production.
  196. passive:multiply yield of donuts by 1.05
  197. passive:hide this
  198. icon:DonutIcons[1,2]
  199. req:5000 donuts:earned
  200. cost:5000 donuts
  201.  
  202. *donutUp4
  203. name:Green Icing
  204. desc:Donuts with green frosting. </></><b>Effect:</b></>+5% Donut Production.
  205. passive:multiply yield of donuts by 1.05
  206. passive:hide this
  207. icon:DonutIcons[0,2]
  208. req:10000 donuts:earned
  209. req:50 donuts:ps
  210. cost:10000 donuts
  211.  
  212. *donutUp5
  213. name:Blue Icing
  214. desc:Donuts with blue frosting. </></><b>Effect:</b></>+5% Donut Production.
  215. passive:multiply yield of donuts by 1.05
  216. passive:hide this
  217. icon:DonutIcons[2,1]
  218. req:50000 donuts:earned
  219. req:150 donuts:ps
  220. cost:50000 donuts
  221.  
  222. *donutUp6
  223. name:Purple Icing
  224. desc:Donuts with purple frosting. </></><b>Effect:</b></>+5% Donut Production.
  225. passive:multiply yield of donuts by 1.05
  226. passive:hide this
  227. icon:DonutIcons[1,1]
  228. req:100000 donuts:earned
  229. req:300 donuts:ps
  230. cost:100000 donuts
  231.  
  232. *donutUp7
  233. name:Jam-Filled Donuts
  234. desc:Donuts with jam (jelly) inside. </></><b>Effect:</b></>+10% Donut Production.
  235. passive:multiply yield of donuts by 1.1
  236. passive:hide this
  237. icon:DonutIcons[0,1]
  238. req:500000 donuts:earned
  239. req:400 donuts:ps
  240. cost:500000 donuts
  241.  
  242.  
  243.  
  244. *clickUp1
  245. name:Handy
  246. desc:How handy are these puns?</><b>Effect:</b></>+1 Donut / click
  247. req:10 donutButton:clicks
  248. cost:50 donuts
  249. passive:hide this
  250. passive:increase donuts yield of donutButton by 1
  251. icon:ClassicIcons[0,1]
  252.  
  253. *clickUp2
  254. name:11 Fingers
  255. desc:”That’s alota fingers”</><b>Effect:</b></>+2 Donuts / click
  256. req:100 donutButton:clicks
  257. cost:120 donuts
  258. passive:hide this
  259. passive:increase donuts yield of donutButton by 2
  260. icon:ClassicIcons[0,1]
  261.  
  262. *clickUp3
  263. name:Ambidextrousness
  264. desc:Look ma 2 hands</><b>Effect:</b></>+3 Donuts / click
  265. req:200 donutButton:clicks
  266. cost:500 donuts
  267. passive:hide this
  268. passive:increase donuts yield of donutButton by 3
  269. icon:ClassicIcons[0,1]
  270.  
  271. *clickUp4
  272. name:Mouse Breaker
  273. desc:Stop. Breaking. The. Mouse.</><b>Effect:</b></>+4 Donuts / click
  274. req:500 donutButton:clicks
  275. cost:1001 donuts
  276. passive:hide this
  277. passive:increase donuts yield of donutButton by 4
  278. icon:ClassicIcons[0,1]
  279.  
  280. *clickUp5
  281. name:Clickty
  282. desc:I honestly just ran out of names</><b>Effect:</b></>+5 Donuts / click
  283. req:700 donutButton:clicks
  284. cost:6789 donuts
  285. passive:hide this
  286. passive:increase donuts yield of donutButton by 5
  287. icon:ClassicIcons[0,1]
  288.  
  289. *clickUp6
  290. name:Clickty Clackity
  291. desc:I am still out of names and descriptions</><b>Effect:</b></>+6 Donuts / click
  292. req:999 donutButton:clicks
  293. cost:34567 donuts
  294. passive:hide this
  295. passive:increase donuts yield of donutButton by 6
  296. icon:ClassicIcons[0,1]
  297.  
  298. *clickUp7
  299. name:Clickty Clackity Clockity
  300. desc:Mouse pun</><b>Effect:</b></>+7 Donuts / click
  301. req:1300 donutButton:clicks
  302. cost:123456 donuts
  303. passive:hide this
  304. passive:increase donuts yield of donutButton by 7
  305. icon:ClassicIcons[0,1]
  306.  
  307. *clickUp8
  308. name:Clickty Clackity Clockity Clankity
  309. desc:Funny flavour text!</><b>Effect:</b></>+8 Donuts / click
  310. req:1600 donutButton:clicks
  311. cost:1234567 donuts
  312. passive:hide this
  313. passive:increase donuts yield of donutButton by 8
  314. icon:ClassicIcons[0,1]
  315.  
  316. *clickUp9
  317. name:Clickty Clackity Clockity Clankity Cloockity Clankity
  318. desc:I give up on names!</><b>Effect:</b></>+9 Donuts / click
  319. req:2000 donutButton:clicks
  320. cost:3333333 donuts
  321. passive:hide this
  322. passive:increase donuts yield of donutButton by 9
  323. icon:ClassicIcons[0,1]
  324.  
  325.  
  326.  
  327. *workerUp1
  328. name:Harder Work
  329. desc:Your workers work harder to make more donuts.</><b>Effect:</b></>Workers are twice as efficient
  330. req:1 worker
  331. cost:150 donuts
  332. passive:hide this
  333. passive:multiply yield of worker by 2
  334. icon:ClassicIcons[3,1]
  335.  
  336. *workerUp2
  337. name:Extra Training
  338. desc:Train your workers in the art of donut making.</><b>Effect:</b></>Workers are twice as efficient
  339. req:10 worker
  340. cost:900 donuts
  341. passive:hide this
  342. passive:multiply yield of worker by 2
  343. icon:ClassicIcons[3,1]
  344.  
  345. *workerUp3
  346. name:Coffee
  347. desc:GivE yOuR woRkeRs moRE eNNnNNNneeEeEerrRrrrRgGGGGGgGGyY</><b>Effect:</b></>Workers are twice as efficient
  348. req:25 worker
  349. cost:7500 donuts
  350. passive:hide this
  351. passive:multiply yield of worker by 2
  352. icon:ClassicIcons[3,1]
  353.  
  354. *workerUp4
  355. name:Fully Ducted Air-conditioning
  356. desc:It is rumoured that a good environment encourages more productive work.</><b>Effect:</b></>Workers are twice as efficient
  357. req:50 worker
  358. cost:55555 donuts
  359. passive:hide this
  360. passive:multiply yield of worker by 2
  361. icon:ClassicIcons[3,1]
  362.  
  363. *workerUp5
  364. name:Mind Control
  365. desc:Force the workers to do as you please, with your mind. </><b>Effect:</b></>Workers are twice as efficient</>
  366. //Doesn't do any thing special yet when it does put this in>.<#FF0000>This is not a very good idea.</#>
  367. req:100 worker
  368. cost:600000 donuts
  369. passive:hide this
  370. passive:multiply yield of worker by 2
  371. icon:ClassicIcons[3,1]
  372.  
  373.  
  374.  
  375. *bakeryUp1
  376. name:Neon Sign
  377. desc:We are OPEN!</><b>Effect:</b></>Bakeries are twice as efficient
  378. req:1 bakery
  379. cost:900 donuts
  380. passive:hide this
  381. passive:multiply yield of bakery by 2
  382. icon:ClassicIcons[1,2]
  383.  
  384. *bakeryUp2
  385. name:Advertising Posters
  386. desc:A nice poster to advertise some donuts</><b>Effect:</b></>Bakeries are twice as efficient
  387. req:10 bakery
  388. cost:8750 donuts
  389. passive:hide this
  390. passive:multiply yield of bakery by 2
  391. icon:ClassicIcons[1,2]
  392.  
  393. *bakeryUp3
  394. name:Bigger Bakeries
  395. desc:They hold more people</><b>Effect:</b></>Bakeries are twice as efficient
  396. req:25 bakery
  397. cost:50505 donuts
  398. passive:hide this
  399. passive:multiply yield of bakery by 2
  400. icon:ClassicIcons[1,2]
  401.  
  402. *bakeryUp4
  403. name:Integrated Donut Vaults
  404. desc:Build some vaults to store the donuts you make</><b>Effect:</b></>Bakeries are twice as efficient
  405. req:50 bakery
  406. cost:497268 donuts
  407. passive:hide this
  408. passive:multiply yield of bakery by 2
  409. icon:ClassicIcons[1,2]
  410.  
  411. *bakeryUp5
  412. name:Website
  413. desc:Who knew a single website could drastically improve a bakery</><b>Effect:</b></>Bakeries are twice as efficient
  414. req:100 bakery
  415. cost:6000000 donuts
  416. passive:hide this
  417. passive:multiply yield of bakery by 2
  418. icon:ClassicIcons[1,2]
  419.  
  420.  
  421. *farmUp1
  422. name:Dirtier Dirt
  423. desc:Ok not the finest pun</><b>Effect:</b></>Farms are twice as efficient
  424. req:1 farm
  425. cost:6556 donuts
  426. passive:hide this
  427. passive:multiply donuts yield of farm by 2
  428. icon:ClassicIcons[3,2]
  429.  
  430. *farmUp2
  431. name:Larger Sickles
  432. desc:More blade to harvest donuts from their plants.</><b>Effect:</b></>Farms are twice as efficient
  433. req:10 farm
  434. cost:80000 donuts
  435. passive:hide this
  436. passive:multiply donuts yield of farm by 2
  437. icon:ClassicIcons[3,2]
  438.  
  439. *farmUp3
  440. name:Sprinkle Fuelled Tractors
  441. desc:Tractors that quickly plow through fields. They never need to stop as these tractors are powered by sprinkles, which grow on donut bushes.</><b>Effect:</b></>Farms are twice as efficient
  442. req:25 farm
  443. cost:250001 donuts
  444. passive:hide this
  445. passive:multiply donuts yield of farm by 2
  446. icon:ClassicIcons[3,2]
  447.  
  448. *farmUp4
  449. name:Genetic Modification
  450. desc:Modifying the genes of donut plant doesn't sound good, but it makes more donuts in the long run.</><b>Effect:</b></>Farms are twice as efficient
  451. req:50 farm
  452. cost:850000 donuts
  453. passive:hide this
  454. passive:multiply donuts yield of farm by 2
  455. icon:ClassicIcons[3,2]
  456.  
  457. *farmUp5
  458. name:Hype Fertiliser
  459. desc:Created using hype harnessed from upcoming video game updates. This is very powerful stuff so be careful.</><b>Effect:</b></>Farms are twice as efficient
  460. req:100 farm
  461. cost:9999999 donuts
  462. passive:hide this
  463. passive:multiply donuts yield of farm by 2
  464. icon:ClassicIcons[3,2]
  465.  
  466.  
  467. *factoryUp1
  468. name:Speedy Conveyors
  469. desc:Whhhhhhhhheeeeeeeeee</><b>Effect:</b></>Factories are twice as efficient
  470. req:1 factory
  471. cost:70000 donuts
  472. passive:hide this
  473. passive:multiply yield of factory by 2
  474. icon:ClassicIcons[1,3]
  475.  
  476. *factoryUp2
  477. name:More Machinery
  478. desc:Essentially it's more stuff to make donuts</><b>Effect:</b></>Factories are twice as efficient
  479. req:10 factory
  480. cost:190000 donuts
  481. passive:hide this
  482. passive:multiply yield of factory by 2
  483. icon:ClassicIcons[1,3]
  484.  
  485. *factoryUp3
  486. name:Nuclear Power
  487. desc:Use the power of the atom to make electricity.</><b>Effect:</b></>Factories are twice as efficient
  488. req:25 factory
  489. cost:700000 donuts
  490. passive:hide this
  491. passive:multiply yield of factory by 2
  492. icon:ClassicIcons[1,3]
  493.  
  494. *factoryUp4
  495. name:25 Hour Shifts
  496. desc:No time wasted!</><b>Effect:</b></>Factories are twice as efficient
  497. req:50 factory
  498. cost:3500000 donuts
  499. passive:hide this
  500. passive:multiply yield of factory by 2
  501. icon:ClassicIcons[1,3]
  502.  
  503. *factoryUp5
  504. name:Extra Large Factories
  505. desc:Much more space for donut production.</><b>Effect:</b></>Factories are twice as efficient
  506. req:100 factory
  507. cost:15000000 donuts
  508. passive:hide this
  509. passive:multiply yield of factory by 2
  510. icon:ClassicIcons[1,3]
  511.  
  512.  
  513.  
  514. *energiserUp1
  515. name:Wind Turbines
  516. desc:Another way to get energy for these machines.</><b>Effect:</b></>Energisers are twice as efficient
  517. req:1 energiser
  518. cost:1900000 donuts
  519. passive:hide this
  520. passive:multiply yield of energiser by 2
  521. icon:ClassicIcons[3,3]
  522.  
  523. *energiserUp2
  524. name:Large Solar Panels
  525. desc:Use the Sun to make donuts</><b>Effect:</b></>Energisers are twice as efficient
  526. req:10 energiser
  527. cost:4500000 donuts
  528. passive:hide this
  529. passive:multiply yield of energiser by 2
  530. icon:ClassicIcons[3,3]
  531.  
  532. *energiserUp3
  533. name:Beacons
  534. desc:A huge beam of light for coolness and donut production.</><b>Effect:</b></>Energisers are twice as efficient
  535. req:25 energiser
  536. cost:15000000 donuts
  537. passive:hide this
  538. passive:multiply yield of energiser by 2
  539. icon:ClassicIcons[3,3]
  540.  
  541. *energiserUp4
  542. name:Eternity Gauntlet
  543. desc:Just snap your fingers and donuts appear</><b>Effect:</b></>Energisers are twice as efficient
  544. req:50 energiser
  545. cost:50000000 donuts
  546. passive:hide this
  547. passive:multiply yield of energiser by 2
  548. icon:ClassicIcons[3,3]
  549.  
  550. *energiserUp5
  551. name:1% of my Power
  552. desc:Are you sure this building can handle it?</><b>Effect:</b></>Energisers are twice as efficient
  553. req:100 energiser
  554. cost:99999999 donuts
  555. passive:hide this
  556. passive:multiply yield of energiser by 2
  557. icon:ClassicIcons[3,3]
  558.  
  559.  
  560. *TEMPLATE
  561. desc:Subscribe to PewDiePie
  562.  
  563. *clickWorkerUp
  564. name:High Five
  565. desc:High five!</><b>Effect:</b></>+0.1 Donuts/Click per worker
  566. req:1 goldDonuts:earned
  567. cost:10 goldDonuts
  568. passive:hide this
  569. icon:MoarIcons[1,0]
  570. tag:goldUpgrade
  571.  
  572. *clickBakeryUp
  573. name:Baking Mouse
  574. desc:A special mouse for baking</><b>Effect:</b></>+0.5 Donuts/click per bakery
  575. req:10 goldDonuts:earned
  576. cost:15 goldDonuts
  577. passive:hide this
  578. icon:MoarIcons[2,0]
  579. tag:goldUpgrade
  580.  
  581. *clickFarmUp
  582. name:Green Thumb
  583. desc:I wish I could make the cursor green.</><b>Effect:</b></>+1 Donut/click per bakery
  584. req:15 goldDonuts:earned
  585. cost:20 goldDonuts
  586. passive:hide this
  587. icon:MoarIcons[0,1]
  588. tag:goldUpgrade
  589.  
  590. *clickFactoryUp
  591. name:Coged-up Cursor
  592. desc:Lots of gears spin to make clicking better for you.</><b>Effect:</b></>+2 Donuts/click per factory
  593. req:20 goldDonuts:earned
  594. cost:25 goldDonuts
  595. passive:hide this
  596. icon:MoarIcons[1,1]
  597. tag:goldUpgrade
  598.  
  599. *clickEnergiserUp
  600. name:Power Click
  601. desc:Put some energy in those clicks</><b>Effect:</b></>+3 Donuts per click for every Energiser.
  602. req:25 goldDonuts:earned
  603. cost:30 goldDonuts
  604. passive:hide this
  605. icon:MoarIcons[2,1]
  606. tag:goldUpgrade
  607.  
  608. *buildingUp1
  609. name:Sweeter Sugar
  610. desc:Sweeter sugar for better donut production</><b>Effect:</b></>All buildings are twice as efficient
  611. req:30 goldDonuts
  612. cost:40 goldDonuts
  613. passive:hide this
  614. passive:multiply yield of :Buildings by 2
  615. icon:MoarIcons[1,3]
  616. tag:goldUpgrade
  617.  
  618. *goldTouch
  619. name:Golden Touch
  620. desc:Midas would approve!</><b>Effect:</b></>1% Chance to get a Golden Donut on every click!
  621. req:20 goldDonuts
  622. cost:25 goldDonuts
  623. passive:hide this
  624. //effect is in the button!
  625. icon:ClassicIcons[1,1]
  626. tag:goldUpgrade
  627.  
  628. *goldenTrees
  629. name:Golden Trees
  630. desc:They shine!</><b>Effect:</b></>Farms produce 0.01 Golden Donuts every second
  631. req:40 goldDonuts
  632. cost:50 goldDonuts
  633. passive:hide this
  634. icon:ClassicIcons[3,2]
  635. tag:goldUpgrade
  636.  
  637. //Research upgrades
  638. *donutResearch
  639. name:Extensive Donut Research
  640. desc:Research donuts and increase production of them along the way. </><b>Effect:</b></> Unlocks Branching Upgrades!
  641. req:60000 donuts:earned
  642. cost:50000 donuts
  643. passive:hide this
  644. icon:ClassicIcons[0,0]
  645. tag:research
  646.  
  647. *research1
  648. name:Doughier Cursor
  649. desc:From Extensive Donut Research</>Dough from a secret donut recipe poured into a cursor shape. </><b>Effects:</b></>Everything from clicks x1.5!
  650. req:donutResearch
  651. cost:900000 donuts
  652. passive:hide this
  653. passive:hide research2
  654. passive:multiply yield of donutButton by 1.5
  655. icon:ClassicIcons[1,1]
  656. tag:research
  657.  
  658. *research3
  659. name:Attractive Clicks
  660. desc:From Extensive Donut Research</>Golden donuts are attracted to your clicks! </><b>Effects:</b></>1% Chance of getting a Golden Donut from each click.
  661. req:research1
  662. cost:1500000 donuts
  663. passive:hide this
  664. passive:hide research4
  665. //effect in button
  666. icon:ClassicIcons[1,1]
  667. tag:research
  668.  
  669. *research4
  670. name:Extra Golden Donuts
  671. desc:From Extensive Donut Research</>Golden donuts are more densely packed. </><b>Effects:</b></>Double regular donuts from Golden Donuts.
  672. req:research1
  673. cost:1500000 donuts
  674. passive:hide this
  675. passive:hide research3
  676. icon:ClassicIcons[3,0]
  677. tag:research
  678.  
  679. *research2
  680. name:Extra-Delicious Donuts
  681. desc:From Extensive Donut Research</>More sweet! More taste! Less holes! (Tad More calories.) </><b>Effects:</b></>+25% DPS
  682. req:donutResearch
  683. cost:900000 donuts
  684. passive:hide this
  685. passive:hide research1
  686. passive:multiply yield of donuts by 1.25
  687. icon:ClassicIcons[1,0]
  688. tag:research
  689.  
  690. *research5
  691. name:Real Estate Agents
  692. desc:From Extensive Donut Research</>It's (not quite) Free Real Estate</><b>Effects:</b></>Buildings are 1/4 cheaper.
  693. req:research2
  694. passive:hide research6
  695. cost:1500000 donuts
  696. passive:hide this
  697. passive:multiply cost of :Buildings by 0.75
  698. icon:MoarIcons[1,3]
  699. tag:research
  700.  
  701. *research6
  702. name:Material Recovery
  703. desc:From Extensive Donut Research</>Get more donuts out of getting rid of un-needed buildings!</><b>Effects:</b></>Buildings sell for more
  704. req:research2
  705. cost:1400000 donuts
  706. passive:hide this
  707. passive:hide research5
  708. passive:multiply refund of :Buildings by 0.5
  709. icon:MoarIcons[1,3]
  710. tag:research
  711.  
  712.  
  713. //DRAGON OF DONUT EATING THINGS!
  714.  
  715. *buyDragon
  716. name:Dragon Egg
  717. desc:Buy your very own Donut Dragon! Dragons are very hungry but also gives their owners rewards.</><b>Effects:</b></>Unlocks the Donut Dragon!
  718. req:have donutResearch
  719. req:999999 donuts:earned
  720. req:500 donuts:ps
  721. req:50 goldDonuts:earned
  722. cost:9999999 donuts
  723. cost:50 goldDonuts
  724. passive:hide this
  725. tag:dragon
  726. icon:DragonIcons[0,0]
  727.  
  728. *donutDragon
  729. tag:dragon
  730. name:Donut Dragon
  731. desc:Click to feed your Dragon 2 minutes of Donut Production. Feeding your dragon gains points. Spend points on special boosts. You have [buffPoints] to spend!
  732. no buy
  733. req:have buyDragon
  734. on click:
  735. if (donuts > donuts:ps*120)
  736. lose (donuts:ps*120) donuts
  737. yield 1 buffPoints
  738. end
  739. end
  740. icon:DragonIcons[1,0]
  741.  
  742. *spawnShiny
  743. tag:dragon
  744. name:Summon Golden Donut
  745. desc:Cost: <b>3 Points</b></>Your dragon lends one of its many stashed Golden Donuts.
  746. no buy
  747. req:1 buffPoints:earned
  748. on click:
  749. if (buffPoints > 2)
  750. lose 3 buffPoints
  751. spawn goldDonutShiny
  752. toast Successfully spawned Golden Donut
  753. end
  754. end
  755. icon:DragonIcons[0,2]
  756.  
  757. *frenzy
  758. tag:dragon
  759. name:Frenzy
  760. desc:Cost: <b>5 Points</b></>A 7x Donut Production Multiplier for 30 Seconds.
  761. no buy
  762. req:1 buffPoints:earned
  763. on click:
  764. if (buffPoints > 4)
  765. lose 5 buffPoints
  766. yield 30 frenzyDuration
  767. toast FRENZY </> x7 Donut Production for 30 seconds!
  768. end
  769. end
  770. icon:DragonIcons[0,1]
  771.  
  772. *sacrifice
  773. tag:dragon
  774. name:Fired!
  775. desc:Cost: <b>2 Points</b></>Sell a worker for 1 - 3 Golden Donuts.
  776. no buy
  777. req:1 buffPoints:earned
  778. on click:
  779. if (buffPoints > 0)
  780. if (worker > 1)
  781. lose 1 buffPoints
  782. lose 1 worker
  783. yield (random(1,3)) goldDonuts
  784. toast YOU'RE FIRED (BTW thanks for the golden donuts)!
  785. end
  786. end
  787. end
  788. icon:DragonIcons[1,1]
  789.  
  790. *luck
  791. tag:dragon
  792. name:Chance
  793. desc:Cost: <b>3 Points</b></>Either get 4 minutes of DPS or lose up to 8 minutes of DPS.
  794. no buy
  795. req:1 buffPoints:earned
  796. on click:
  797. if (buffPoints > 0)
  798. lose 1 buffPoints
  799. if (chance(50%))
  800. lose (donuts:ps*480) donuts
  801. toast You lost [donuts:ps*480] donuts! :'(
  802. else
  803. yield (donuts:ps*240) goldDonuts
  804. toast You gained [donuts:ps*240] donuts! :D
  805. end
  806. end
  807. end
  808.  
  809. icon:DragonIcons[1,2]
  810.  
  811. Shinies
  812. *goldDonutShiny
  813. icon:ClassicIcons[2,0]
  814. //hope this works
  815. on click:
  816. $boost=1
  817. if (have research4) $boost=2
  818. if (chance(60%))
  819. //get at least 7, or between 1 and 2 minutes of our DONUT production
  820. $amount=max(7,random(donuts:ps*60*1,donuts:ps*60*2))*$boost
  821. toast The golden donut grants you<//><b>[$amount] donuts</b>.
  822. yield $amount donuts
  823. else
  824. $amount=(random(1,5))
  825. toast The golden donut grants you<//><b>[$amount] golden donuts[s?$amount]</b>!
  826. yield $amount goldDonuts
  827. end
  828. end
  829. frequency:30
  830. frequency variation:90
  831. movement:anywhere growShrink wiggle
  832.  
  833.  
  834. *fallingDonuts
  835. icon:ClassicIcons[0,0]
  836. no click
  837. frequency:1
  838. frequency variation:4
  839. movement:onTop moveBottom spinRandom:(random(2,6))
  840.  
  841.  
  842. Achievements
  843. *donutAchiev1
  844. name:Wake and Bake
  845. desc:Click the donut and gain your first donut.
  846. req:1 donuts:earned
  847. icon:ClassicIcons[0,0]
  848.  
  849. *donutAchiev2
  850. name:Hole Lotta Fun
  851. desc:Make 100 Donuts.</> <i> Get it? Donuts have holes!</i>
  852. req:100 donuts:earned
  853. icon:ClassicIcons[0,0]
  854.  
  855. *donutAchiev3
  856. name:Donut Stop Me Now
  857. desc:Make 1000 Donuts.</> <q>Why this pun?</q>
  858. req:1000 donuts:earned
  859. icon:ClassicIcons[0,0]
  860.  
  861. *donutAchiev4
  862. name:Donut Vaults
  863. desc:Make 10000 Donuts.</> <q>We need more storage for these donuts!</q>
  864. req:10000 donuts:earned
  865. icon:ClassicIcons[0,0]
  866.  
  867. *donutAchiev5
  868. name:Donut Oceans
  869. desc:Make 100000 Donuts.</> <q>Wouldn't they get soggy?</q>
  870. req:100000 donuts:earned
  871. icon:ClassicIcons[0,0]
  872.  
  873. *donutAchiev6
  874. name:Donut Planet
  875. desc:Make 1000000 Donuts.</> <q>Is this a sign of too many donuts?</q>
  876. req:1000000 donuts:earned
  877. icon:ClassicIcons[0,0]
  878.  
  879. *donutAchiev7
  880. name:Donut Star
  881. desc:Make 10000000 Donuts.</> <q>A superheated ball of dough with holes.</q>
  882. req:10000000 donuts:earned
  883. icon:ClassicIcons[0,0]
  884.  
  885. *donutAchiev8
  886. name:Donut Galaxy
  887. desc:Make 100000000 Donuts.</> <q>A Galaxy crammed with donuts. Seems legit.</q>
  888. req:100000000 donuts:earned
  889. icon:ClassicIcons[0,0]
  890.  
  891. *donutAchiev9
  892. name:Donut Universe
  893. desc:Make 1000000000 Donuts.</> <q>It's donuts all the way down.</q>
  894. req:1000000000 donuts:earned
  895. icon:ClassicIcons[0,0]
  896.  
  897. *donutAchiev10
  898. name:INFINITE DONUTS
  899. desc:Make 10000000000 Donuts.</> <q>Technically not infinity. 2^1024 is in IGM, but oh well. </q>
  900. req:10000000000 donuts:earned
  901. icon:ClassicIcons[0,0]
  902.  
  903. *donutAchiev11
  904. name:Infinity + 1 DONUTS
  905. desc:Make 100000000000 Donuts.</> <q>Technically you can not get past infinity but oh well.</q>
  906. req:100000000000 donuts:earned
  907. icon:ClassicIcons[0,0]
  908.  
  909. *dpsAchiev1
  910. name:Slow and Steady
  911. desc:Reach 1 DPS.</> <q>Slow and steady wins the race! DISCLAIMER: May not be truthful.</q>
  912. req:1 donuts:ps
  913. icon:ClassicIcons[0,0]
  914.  
  915. *dpsAchiev2
  916. name:Now we're talking
  917. desc:Reach 10 DPS.</> <q>MMMMMMMMMMMMMMm! Donuts!</q>
  918. req:10 donuts:ps
  919. icon:ClassicIcons[0,0]
  920.  
  921. *dpsAchiev3
  922. name:Donut Stop Now
  923. desc:Reach 100 DPS.</> <q>You're doing so well</q>
  924. req:100 donuts:ps
  925. icon:ClassicIcons[0,0]
  926.  
  927. *dpsAchiev4
  928. name:Knead for Speed
  929. desc:Reach 1000 DPS.</> <q>Punny!</q>
  930. req:1000 donuts:ps
  931. icon:ClassicIcons[0,0]
  932.  
  933. *dpsAchiev5
  934. name:Slow Down!
  935. desc:Reach 9999 DPS.</> <q>Caution! You will melt your computer if you continue!</q>
  936. req:9999 donuts:ps
  937. icon:ClassicIcons[0,0]
  938.  
  939. *dpsAchiev6
  940. name:World Hunger Solved
  941. desc:Reach 100000 DPS.</> <q>We solved hunger! Now to solve diabeties!</q>
  942. req:100000 donuts:ps
  943. icon:ClassicIcons[0,0]
  944.  
  945. *dpsAchiev7
  946. name:Mass Tooth Decay
  947. desc:Reach 1000000 DPS.</> <q>At least Dentists get more pay -- in donuts!</q>
  948. req:1000000 donuts:ps
  949. icon:ClassicIcons[0,0]
  950.  
  951. *clickAchiev1
  952. name:Clicking Things is Fun
  953. desc:Click 100 times.</><q>Yes it's fun to click things...</q>
  954. req:100 donutButton:clicks
  955. icon:MoarIcons[0,0]
  956.  
  957. *clickAchiev2
  958. name:Elephants Hate You
  959. desc:Click 1000 times.</><q>You know elephants dislike MICE!</q>
  960. req:1000 donutButton:clicks
  961. icon:MoarIcons[0,0]
  962.  
  963. *clickAchiev3
  964. name:Button Breaker
  965. desc:Click 3000 times.</><q>This is a tremendous achievement! Be proud!</q>
  966. req:3000 donutButton:clicks
  967. icon:MoarIcons[0,0]
  968.  
  969.  
  970. /*
  971.  
  972. *buildingAchiev1
  973. name:Builder
  974. desc:Own 10 buildings.</><q>Are you the legendary Bob?!</q>
  975. req:10 tag:building
  976. icon:MoarIcons[0,3]
  977.  
  978. *buildingAchiev2
  979. name:The Builder
  980. desc:Own 500 buildings.</><q>Putting "the" in front of something makes it sound more important.</q>
  981. req:500 tag:building:owned
  982. icon:MoarIcons[0,3]
  983.  
  984. *buildingAchiev3
  985. name:The Best Builder
  986. desc:Own 1000 buildings.</><q>Putting "best" behind "the" makes something sound much more important.</q>
  987. req:1000 tag:building:owned
  988. icon:MoarIcons[0,3]
  989. */
  990.  
  991.  
  992. /*
  993. This aint workin either!
  994. *upgradeAchiev1
  995. name:Upgrader
  996. desc:Own 50 upgrades.</><q>Upgrades are cool!</q>
  997. req:50 :Upgrades:owned
  998. icon:MoarIcons[1,2]
  999.  
  1000. *upgradeAchiev2
  1001. name:This Achievement Could be impossible to Get
  1002. desc:Own 99 upgrades.</><q>I did not count the amount of upgrades I added.</q>
  1003. req:99 :Upgrades:owned
  1004. icon:MoarIcons[1,2]
  1005.  
  1006. */
  1007.  
  1008. *goldDonutAchiev1
  1009. name:Shiny Donuts
  1010. desc:Obtain 1 Golden Donut.</><q>Shiny!</q>
  1011. req:1 goldDonuts:earned
  1012. icon:ClassicIcons[2,0]
  1013.  
  1014. *goldDonutAchiev2
  1015. name:Not Nutritious
  1016. desc:Obtain 10 Golden Donuts.</><q>Well normal donuts are not good for you either...</q>
  1017. req:10 goldDonuts:earned
  1018. icon:ClassicIcons[2,0]
  1019.  
  1020. *goldDonutAchiev3
  1021. name:Rich
  1022. desc:Obtain 99 Golden Donuts.</><q>This gold is so heavy though</q>
  1023. req:99 goldDonuts:earned
  1024. icon:ClassicIcons[2,0]
  1025.  
  1026. *roar
  1027. name:ROAR!
  1028. desc:Hatch a dragon.</><q>He looks so cute!</q>
  1029. req:have buyDragon
  1030. icon:DragonIcons[0,0]
  1031.  
  1032. *wellFed
  1033. name:Well Fed
  1034. desc:Feed your dragon 10 times.</><q>He sure eats a lot!</q>
  1035. req:10 buffPoints:earned
  1036. icon:DragonIcons[1,0]
Advertisement
Add Comment
Please, Sign In to add comment