ShyMoai

Plague Clicker [PRE-RELEASE]

Mar 23rd, 2025 (edited)
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 44.25 KB | None | 0 0
  1. Let's make a game!
  2. name:Plague Clicker
  3. author:Shy_Moai
  4. desc:Create bacteria, infect people, put humanity into slavery and conquer the universe with a plague ! Join the discord! : https://discord.gg/y3YYJvC9rS
  5. created:01/02/2025
  6. updated:24/03/2025
  7. version:pre-release0.1
  8.  
  9.  
  10.  
  11. Settings
  12. background:https://images3.alphacoders.com/924/924640.jpg
  13. building cost increase:100%
  14. building cost refund:0%
  15. spritesheet:upgricons, 48 by 48, https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/upgradesIcon
  16. spritesheet:achicons1, 48 by 48, https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/resAchIcon
  17. spritesheet:achicons2, 48 by 48, https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/builAchIcon
  18.  
  19.  
  20. Layout
  21. *main
  22. contains:tag:resource, buttons
  23. *resource
  24. contains:Resources
  25. *buttons
  26. contains:Buttons
  27. names:hide
  28. *store
  29. contains:buildings, upgrades
  30. *upgrades
  31. header:<t>UPGRADES</t>
  32. contains:tag:UpgrButtons, Upgrades
  33. names:hide
  34. costs:hide
  35. *buildings
  36. contains:BulkDisplay, Buildings
  37. header:<t>BUILDINGS</t>
  38. *achievements
  39. contains:Achievements
  40. header:<t>ACHIEVEMENTS</t>
  41. names:hide
  42.  
  43. CSS
  44. .thing
  45. {
  46. border-radius:4px;
  47. background:rgba(255,255,255,0.5);
  48. }
  49. .box-header
  50. {
  51. border-radius:12px;
  52. }
  53. #box-resource
  54. {
  55. position: fixed;
  56. top:5%;
  57. left:0px;
  58. width:60%;
  59. height:48px;
  60. color:rgba(255,255,255,1);
  61. background:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,1) 50%,rgba(0,0,0,0) 100%);
  62. }
  63. #box-buildings
  64. {
  65. position: fixed;
  66. top:0%;
  67. right:0px;
  68. width:39%;
  69. height:40%
  70. }
  71. #box-upgrades
  72. {
  73. position: fixed;
  74. top:40%;
  75. right:0px;
  76. width:39%;
  77. height:39%;
  78. }
  79. #box-achievements
  80. {
  81. position: fixed;
  82. top:80%;
  83. left:0px;
  84. width:100%;
  85. min-height:20%;
  86. background:rgba(90,60,0,1);
  87. }
  88.  
  89. Buttons
  90.  
  91. *make.bacteria
  92. name:Make a Bacteria
  93. desc:Modify a cell to make it into a bacteria. Grants 0.1 bacteria per click.
  94. on click:yield 0.1 bacteria
  95. on click:anim icon wobble
  96. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/make.bacteriaIcon?v=1741281114819
  97. class:bigButton hasFlares
  98. tag:MainButton
  99.  
  100. *sell.string
  101. name:Sell string
  102. desc:Sell some string on the black market. (1 string = 0.1 money)
  103. on click:if (string>1) yield 0.1 money
  104. on click:if (string>1) yield -1 string
  105. on tick:if (ant>=1) show this
  106. on tick:if (ant<1) hide this
  107. icon:https://s.cafebazaar.ir/images/icons/com.Infinity.money-20025ed1-3e7c-4fbc-8e20-443e6f25c30d_512x512.png?x-img=v1/resize,h_256,w_256,lossless_false/optimize
  108. tooltip origin:bottom
  109. tag:SecButton
  110.  
  111. *bought
  112. tag:UpgrButtons
  113. class:upgradeSwitch
  114. name:See Owned Upgrades
  115. on click:show :Upgrades:owned
  116. on click:hide :Upgrades:notOwned
  117.  
  118. *not.bought
  119. tag:UpgrButtons
  120. class:upgradeSwitch
  121. name:Buy Upgrades
  122. on click:show :Upgrades:notOwned
  123. on click:hide :Upgrades:owned
  124.  
  125.  
  126. Resources
  127.  
  128. *bacteria
  129. name:Bacteria
  130. desc:The basic unit. Infect living creatures with it.
  131. show earned
  132. class:noBackground
  133. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/bacteriaIcon?v=1741617295932
  134.  
  135. *string
  136. name:String
  137. desc:A ressource produced by ant. Can be used to make bacterial colonies that produce more bacteria or sold for money.
  138. show earned
  139. hidden when 0
  140. class:noBackground
  141. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/stringIcon?v=1741654746610
  142.  
  143. *money
  144. name:Money
  145. desc:Can be used to buy special upgrades, buy more powerful bacterial colonies and enslave humans.
  146. show earned
  147. hidden when 0
  148. class:noBackground
  149. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/moneyIcon?v=1741656370853
  150.  
  151. *var1
  152. name:var1
  153. always hidden
  154. Buildings
  155.  
  156. *test
  157. name:Run a Test
  158. desc:Study the bacteria to be more efficient in their creation. Gives +0.1 bacteria per click.
  159. cost:10 bacteria
  160. passive:increase bacteria yield of make.bacteria by 0.1
  161. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/testIcon
  162.  
  163. *ant
  164. name:Ant
  165. desc:An infected ant that will produce special string at the rate of 0.01g/s
  166. cost:10e6 bacteria
  167. on tick:yield 0.01 string
  168. req:1e6 bacteria:earned
  169. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/antIcon
  170.  
  171. *queen
  172. name:Queen
  173. desc:An infected ant queen that will produce ants at the rate of 1 ant per 10 seconds
  174. cost:50e9 bacteria
  175. on tick:yield 0.1 ant
  176. req:ant>=1e3
  177. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/queenIcon
  178.  
  179. *whale
  180. name:Whale
  181. desc:A whale infected by ants that will produce ant queens at the rate of 1 ant queen per second.
  182. cost:250e15 bacteria
  183. on tick:yield 1 queen
  184. req:queen>2e3 and 50e15 bacteria:earned
  185. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/whaleIcon
  186.  
  187. *string.colony
  188. name:String colony
  189. desc:A piece of string in which bacteria can reproduce. Makes 10 000 bacterias per second.
  190. cost:1e6 bacteria, 1 string
  191. on tick:yield 10e3 bacteria
  192. req:colonyupgr0
  193. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/colonyIcon
  194.  
  195. *incubator
  196. name:Incubator
  197. desc:A fancy machine that recreates the perfect condition for your bacterias to grow in. Makes about 10 million bacterias per second
  198. cost:10e3 money
  199. on tick:yield 10e6 bacteria
  200. req:(string.colony>=1e3)
  201. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/incubatorIcon
  202.  
  203. *farm
  204. name:Bacteria Farm
  205. desc:A laboratory located in the city's sewers filled with fancy machines entirely dedicated to bacteria production. Makes about 125 billion bacterias per second.
  206. cost:100e6 money
  207. on tick:yield 125e9 bacteria
  208. req:25e6 money:earned and incubator>=20e3
  209. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/farmIcon
  210.  
  211. *complex
  212. name:Bacteria Complex
  213. desc:A giant complex filled with buildings in string concrete swarming with bacterias. Makes about 100 quadrillion bacterias per second.
  214. cost:10e12 money, 25e12 string
  215. on tick:yield 100e15 bacteria
  216. on tick:yield 0.01 money
  217. req:complexupgr0
  218. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/complexIcon
  219.  
  220. *salesman
  221. name:Salesman
  222. desc:A minion who will go sell ant string on the dark market for 0.1$/g. He can sell 1g of string per second.
  223. cost:100 money
  224. on tick:if (string>1) yield 0.1 money
  225. on tick:if (string>1) yield -1 string
  226. req:100 money:earned and 100 string:earned and salesmanupgr0
  227. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/salesmanIcon
  228.  
  229. *factory
  230. name:Factory
  231. desc:A secret place with machines who capture people and turn them into zombie-salesmen with bacterias. It takes about 30 trillion bacterias to infect a human and a factory infects about 1 human a second.
  232. cost:1e6 money, 1 salesman
  233. on tick:if (bacteria>30e12*factory) yield 1 salesman
  234. on tick:if (bacteria>30e12*factory) yield -30e12 bacteria
  235. req:5e12 bacteria:earned
  236. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/factoryIcon
  237.  
  238. *bomber
  239. name:Bomber
  240. desc:A plane filled with biological weapons able to contaminate entire neighbourhoods at a time. It takes about 5 billion dollars and 1 quintillion bacterias to make a bomb and a bomb infects about 10 thousand humans. A bomber throws 1 bomb by second.
  241. cost:1e9 money, 4 salesman
  242. on tick:if (bacteria>1e18 and money>5e9) yield 10e3 salesman
  243. on tick:if (bacteria>1e18 and money>5e9) yield -5e9 money
  244. on tick:if (bacteria>1e18 and money>5e9) yield -1e18 bacteria
  245. req:bombupgr0
  246. icon:https://file.garden/Z8moUZIjfg3Igpm6/Plague%20Clicker/bombIcon
  247.  
  248. Upgrades
  249.  
  250. *TEMPLATE
  251. on earn:hide this
  252.  
  253.  
  254. *clickupgr1
  255. name:Bacteria master
  256. desc:You made so many bacterias you could make one with your eyes closed ! Doubles your bacterias per click.
  257. req:500 make.bacteria clicks
  258. passive:multiply bacteria yield of make.bacteria by 2
  259. icon:upgricons[1,0]
  260.  
  261. *clickupgr2
  262. name:It's twins !
  263. desc:Double your bacterias per click.
  264. passive:multiply bacteria yield of make.bacteria by 2
  265. cost:1e6 bacteria
  266. req:250e3 bacteria:earned and clickupgr1
  267. icon:upgricons[2,0]
  268.  
  269. *clickupgr3
  270. name:Bateriashake
  271. desc:A drink made with bacterias with the strange propriety of making you super fast when you drink it. Multiply your bacterias per click by 2.
  272. passive:multiply bacteria yield of make.bacteria by 2
  273. cost:2.5e6 bacteria
  274. req:1e6 bacteria:earned and clickupgr2
  275. icon:upgricons[3,0]
  276.  
  277. *clickupgr4
  278. name:I understand it now
  279. desc:You discovered that you can make bacterias a lot faster by just ---REDACTED---. Triple your bacterias per click.
  280. passive:multiply bacteria yield of make.bacteria by 3
  281. cost:5e6 bacteria
  282. req:2.5e6 bacteria:earned and clickupgr3
  283. icon:upgricons[4,0]
  284.  
  285. *colonyupgr0
  286. name:Home, string home
  287. desc:Bacteria evolved to live in string and can now form colonies in string. Unlocks string colonies.
  288. cost:1 string
  289. req:0.1 string:earned
  290. icon:upgricons[0,1]
  291.  
  292. *colonyupgr1
  293. name:Cordophage
  294. desc:Bacteria evolved to be able to eat string and are now able to grow much faster in string colonies. Multiply the bacteria production of string colonies by 2.
  295. passive:multiply bacteria yield of string.colony by 2
  296. cost:200e6 bacteria
  297. req:(string.colony>=100)
  298. icon:upgricons[1,1]
  299.  
  300. *salesmanupgr0
  301. name:Conference
  302. desc:The plan was supposed to be a secret but hey, we need minions to execute it. Unlocks salesmen later in the game.
  303. cost:1 bacteria, 1 ant
  304. req:(ant>=2) and colonyupgr0
  305. icon:upgricons[0,4]
  306.  
  307. *antupgr1
  308. name:Inflated labial glands
  309. desc:The ant's silk producing gland grows, producing string faster. Doubles the string production of ants.
  310. passive:multiply string yield of ant by 2
  311. cost:50e6 bacteria
  312. req:(ant>=10)
  313. icon:upgricons[1,2]
  314.  
  315. *antupgr2
  316. name:Silk Addiction
  317. desc:Endorphin is released in the ant's body when the ant produces string. The ant can now fully focus only on producing string and produce string 24/7. Multiply the string production of ants by 5.
  318. passive:multiply string yield of ant by 5
  319. cost:1e9 bacteria
  320. req:(ant>=50) and antupgr1
  321. icon:upgricons[2,2]
  322.  
  323. *antupgr3
  324. name:Psychological torture
  325. desc:The infected queens are shown to the colony of ant, causing the ant to get really stressed and speed up every process happening in their body, including string production. Double the string production of ants.
  326. passive:multiply string yield of ant by 2
  327. cost:1e3 money
  328. req:(queen>=10) and antupgr2
  329. icon:upgricons[3,2]
  330.  
  331. *antupgr4
  332. name:Strainer
  333. desc:The ants evolved to have multiple holes in their abdomen that all produce string.It costs a fortune in band-aids but its worth it. Quintuples the speed of ant.
  334. passive:multiply string yield of ant by 5
  335. cost:150e18 bacteria, 5e12 money
  336. req:(ant>=1e9) and antupgr3
  337. icon:upgricons[4,2]
  338.  
  339. *sellingupgr1
  340. name:Selling pitch
  341. desc:You convince people that the string is really special and is worth more than it's actually worth. Double the selling price of string.
  342. passive:multiply money yield of salesman by 2
  343. passive:multiply money yield of sell.string by 2
  344. cost:1 money
  345. req:0.1 money:earned
  346. icon:upgricons[1,3]
  347.  
  348. *sellingupgr2
  349. name:Classified Ads
  350. desc:You put ads for your string in the newspaper. Now everyone wants to buy some ! At least everyone who reads the newspaper. Multiply the selling price of string by 2.
  351. passive:multiply money yield of sell.string by 2
  352. passive:multiply money yield of salesman by 2
  353. cost:10 money
  354. req:2 money:earned and sellingupgr1
  355. icon:upgricons[2,3]
  356.  
  357. *sellingupgr3
  358. name:Adblocker's worst ennemy
  359. desc:From YouTube ads to mobile game ads, your string is advertised everywhere ! Multiply the selling price of string by 2.
  360. passive:multiply money yield of sell.string by 2
  361. passive:multiply money yield of salesman by 2
  362. cost:50 money
  363. req:20 money:earned and sellingupgr2
  364. icon:upgricons[3,3]
  365.  
  366. *sellingupgr4
  367. name:Size matters
  368. desc:Your string is advertised everywhere, from the superbowl ads to billboards. Now <b>everyone</b> wants to buy your string. Multiply the selling price of string by 3.
  369. passive:multiply money yield of sell.string by 3
  370. passive:multiply money yield of salesman by 3
  371. cost:10e6 money
  372. req:5e6 money:earned and sellingupgr3
  373. icon:upgricons[4,3]
  374.  
  375. *salesmanupgr1
  376. name:Minors and miners
  377. desc:You hire kids to work for you. They are able to sell a lot more string than adults since they are pityful and people want to encourage child's businesses. Little do they know, all the money ends up in your pockets. Double the speed of salesmen.
  378. passive:multiply money yield of salesman by 2
  379. passive:multiply string yield of salesman by 2
  380. cost:1e6 money
  381. req:(salesman>=10e3)
  382. icon:upgricons[1,4]
  383.  
  384. *salesmanupgr2
  385. name:Nowhere to go
  386. desc:Salesmen now sleep at their shop, beginning to work early in the day and finishing late in the night. Doubles the speed of salesmen.
  387. passive:multiply money yield of salesman by 2
  388. passive:multiply string yield of salesman by 2
  389. cost:5e6 money
  390. req:(salesman>=15e3) and salesmanupgr1
  391. icon:upgricons[2,4]
  392.  
  393. *salesmanupgr3
  394. name:White Vans
  395. desc:The salesmen's families are kidnapped and realeased for 1 day every time the salesman sells 1kg of string. Motivates the salesmen and doubles their working speed.
  396. passive:multiply money yield of salesman by 2
  397. passive:multiply string yield of salesman by 2
  398. cost:10e6 money
  399. req:(salesman>=20e3) and salesmanupgr2
  400. icon:upgricons[3,4]
  401.  
  402. *salesmanupgr4
  403. name:Who are we ? Costco ?
  404. desc:The string is sold in big bulks for a slightly lower price. The salesmen don't have to individualy sell each piece of string anymore. Triples the speed of salesmen.
  405. passive:multiply money yield of salesman by 3
  406. passive:multiply string yield of salesman by 3
  407. cost:40e6 money
  408. req:(salesman>=30e3) and salesmanupgr3
  409. icon:upgricons[4,4]
  410.  
  411. *incubatorupgr1
  412. name:Domain expansion
  413. desc:All of the useless pieces were removed from the incubators so the bacterias have more space to grow. Multiply incubator's production by 1.5
  414. passive:multiply bacteria yield of incubator by 1.5
  415. cost:70e3 money
  416. req:(incubator>=3)
  417. icon:upgricons[1,5]
  418.  
  419. *incubatorupgr2
  420. name:Tailor made
  421. desc:Special containers are made that are optimized to allow bacterias to reproduce faster. Doubles incubator's production.
  422. passive:multiply bacteria yield of incubator by 2
  423. cost:160e3 money
  424. req:(incubator>=10) and incubatorupgr1
  425. icon:upgricons[2,5]
  426.  
  427. *incubatorupgr3
  428. name:Virus rock
  429. desc:Heavy metal is played on speaker to excite the bacterias and make them move and reproduce faster. Multiplies incubator's production by 2.5.
  430. passive:multiply bacteria yield of incubator by 2.5
  431. cost:350e3 money
  432. req:(incubator>=50) and incubatorupgr2
  433. icon:upgricons[3,5]
  434.  
  435. *incubatorupgr4
  436. name:Tschernobyl
  437. desc:Incubators are immersed in radiations that makes bacteria thrice as fast. Triples incubator's production.
  438. passive:multiply bacteria yield of incubator by 3
  439. cost:777e3 money
  440. req:(incubator>=100) and incubatorupgr3
  441. icon:upgricons[4,5]
  442.  
  443.  
  444. *queenupgr1
  445. name:Machine-gun
  446. desc:The ant eggs grow much faster inside the queen so the queen can lay eggs much faster. Doubles queen's production.
  447. passive:multiply ant yield of queen by 2
  448. cost:100e9 bacteria
  449. req:(queen>=5)
  450. icon:upgricons[1,6]
  451.  
  452. *queenupgr2
  453. name:Armored ant
  454. desc:The ant's exoskeleton is reinforced, therefore reducing mortality rate at birth greatly. Doubles queen's production.
  455. passive:multiply ant yield of queen by 2
  456. cost:200e9 bacteria
  457. req:(queen>=10) and queenupgr1
  458. icon:upgricons[2,6]
  459.  
  460. *queenupgr3
  461. name:Caked up
  462. desc:The head and thorax of the queen are considerably smaller, making the abdomen much bigger. The organs of the queen are also smaller, giving more place for the eggs to grow. Multiplies queen's production by 2
  463. passive:multiply ant yield of queen by 2
  464. cost:400e9 bacteria
  465. req:(queen>=25) and queenupgr2
  466. icon:upgricons[3,6]
  467.  
  468. *queenupgr4
  469. name:Make one get one free
  470. desc:The eggs are more likely to give birth to 2 ants instead of 1. Doubles the queen's production
  471. passive:multiply ant yield of queen by 2
  472. cost:1e12 bacteria
  473. req:(queen>=50) and queenupgr3
  474. icon:upgricons[4,6]
  475.  
  476. *farmupgr1
  477. name:The beginning of the end
  478. desc:The humans working in the farm are replaced by robots that can work infinitely and don't need breaks. Triples the farm production.
  479. passive:multiply bacteria yield of farm by 3
  480. cost:300e6 money
  481. req:(farm>=5)
  482. icon:upgricons[1,7]
  483.  
  484. *farmupgr2
  485. name:Formula 2
  486. desc:The conveyor belts are now much faster, forcing the robots to work faster. Doubles the bacteria production of farms.
  487. passive:multiply bacteria yield of farm by 2
  488. cost:700e6 money
  489. req:(farm>=10) and farmupgr1
  490. icon:upgricons[2,7]
  491.  
  492. *farmupgr3
  493. name:Turboflex farm
  494. desc:The tools and machines are replaced by better and newer versions that allows robots to work much faster. Triples the bacteria production of farms.
  495. passive:multiply bacteria yield of farm by 3
  496. cost:1.3e9 money
  497. req:(farm>=25) and farmupgr2
  498. icon:upgricons[3,7]
  499.  
  500. *farmupgr4
  501. name:Octopi and octopuses
  502. desc:The robots now have 6 aditional arms, effectively multiplying their working speed by 4. Quadruples the bacteria production of farms.
  503. passive:multiply bacteria yield of farm by 4
  504. cost:3.333e9 money
  505. req:(farm>=50) and farmupgr3
  506. icon:upgricons[4,7]
  507.  
  508. *farmupgr5
  509. name:Terminator
  510. desc:The robots are now a lot smarter, finding ways to do their work a lot faster. Multiplies the bacteria production of farms by 3.
  511. passive:multiply bacteria yield of farm by 3
  512. cost:7.5e9 money
  513. req:(farm>=100) and farmupgr4
  514. icon:upgricons[5,7]
  515.  
  516. *farmupgr6
  517. name:The final countdown<b>s</b>
  518. desc:The robot developped time travel and they can now go in the future to learn techniques that allow them to work even faster. Doubles the bacteria production of farms by 2.
  519. passive:multiply bacteria yield of farm by 2
  520. cost:12e9 money
  521. req:(farm>=200) and farmupgr5
  522. icon:upgricons[6,7]
  523.  
  524. *factoryupgr1
  525. name:Where did you catch that ?
  526. desc:The humans captured in the factories get infected with HIV before getting infected with our virus to be more easy to contaminate. Divides by 3 the required bacterias to infect a human and doubles the speed of factories.
  527. passive:multiply bacteria yield of factory by 0.66666666
  528. passive:multiply salesman yield of factory by 2
  529. cost:10e15 bacteria
  530. req:(factory>=50)
  531. icon:upgricons[1,8]
  532.  
  533. *factoryupgr2
  534. name:Dwayne ''the germ'' Johnson
  535. desc:The bacterias are more resistant to human's antibodies making humans easier to infect. Halves the amount of bacteria required to infect a human. Multiplies the speed of factories by 1.5.
  536. passive:multiply bacteria yield of factory by 0.75
  537. passive:multiply salesman yield of factory by 1.5
  538. cost:100e15 bacteria
  539. req:(factory>=100) and factoryupgr1
  540. icon:upgricons[2,8]
  541.  
  542. *factoryupgr3
  543. name:Anti-anti-biotics
  544. desc:The bacterias became more even more resistant to human antibodies and drugs making the infection much easier. Halves the amount of bacteria required to infect a human. Multiplies the speed of factories by 1.25.
  545. passive:multiply bacteria yield of factory by 0.625
  546. passive:multiply salesman yield of factory by 1.25
  547. cost:1e18 bacteria
  548. req:(factory>=200) and factoryupgr2
  549. icon:upgricons[3,8]
  550.  
  551. *whaleupgr1
  552. name:There is no tomorow
  553. desc:The whales lose their womb to make place for a giant breeding chamber for ants. More queens can now be grown at a time. Doubles whale's production
  554. passive:multiply queen yield of whale by 2
  555. cost:5e18 bacteria
  556. req:(whale>=25)
  557. icon:upgricons[1,9]
  558.  
  559. *whaleupgr2
  560. name:At least, stay hydrated
  561. desc:The whales evolve to be able to grow on land so queens don't risk drowning. Doubles whale's production.
  562. passive:multiply queen yield of whale by 2
  563. cost:10e18 bacteria
  564. req:(whale>=50) and whaleupgr1
  565. icon:upgricons[2,9]
  566.  
  567. *whaleupgr3
  568. name:The whale-king dead
  569. desc:The whales are emptied of their insides, leaving even more room and energy for the ants to grow. Multiplies whale's production by 1.5.
  570. passive:multiply queen yield of whale by 1.5
  571. cost:20e18 bacteria
  572. req:(whale>=100) and whaleupgr2
  573. icon:upgricons[3,9]
  574.  
  575. *whaleupgr4
  576. name:Biodome in a biodome
  577. desc:The whale's body are stored into a controlled environement that optimizes their production of queen. Triple whale's production.
  578. passive:multiply queen yield of whale by 3
  579. cost:50e18 bacteria
  580. req:(whale>=250) and whaleupgr3
  581. icon:upgricons[4,9]
  582.  
  583. *complexupgr0
  584. name:I'll build a wall
  585. desc:You develop the technology to make concrete and buildings out of ant string. Unlocks bacteria complexes.
  586. cost:1e12 money
  587. req:(farm>=10e3)
  588. icon:upgricons[0,10]
  589.  
  590. *complexupgr1
  591. name:Dad, I'm hungry
  592. desc:Vitamins, minerals and chemicals are put in the walls to allow bacterias to grow faster. Double the speed of bacteria complexes.
  593. passive:multiply bacteria yield of complex by 2
  594. cost:20e12 money
  595. req:(complex>=5)
  596. icon:upgricons[1,10]
  597.  
  598. *complexupgr2
  599. name:Hi hungy, I'm dad
  600. desc:Dads are hired to make dad jokes to bacteria to motivate them and make them go faster. Doubles the speed of bacteria complexes.
  601. passive:multiply bacteria yield of complex by 2
  602. cost:50e12 money
  603. req:(complex>=10) and complexupgr1
  604. icon:upgricons[2,10]
  605.  
  606. *complexupgr3
  607. name:Shine bright
  608. desc:Giant mirrors are built around the bacteria complexes to reflet the sun at the walls to give bacterias extra energy to reproduce faster. Triples the speed of bacteria complexes.
  609. passive:multiply bacteria yield of complex by 3
  610. cost:100e12 money
  611. req:(complex>=25) and complexupgr2
  612. icon:upgricons[3,10]
  613.  
  614. *complexupgr4
  615. name:It's like Legos
  616. desc:Scientists are able to build scale models of the bacteria complexes with string colonies. Each string colony gives a 0.01% bonus to bacteria complexe's production (100% every 10 thousand).
  617. passive:multiply yield of complex by (1+(0.0001*string.colony))
  618. cost:250e12 money
  619. req:(complex>=100) and rentupgr0
  620. icon:upgricons[4,10]
  621.  
  622. *rentupgr0
  623. name:Rentpocalypse
  624. desc:You rent the bacteria complexes as luxury mansions for aliens. Each complex now yield 20 billion dollars per second.
  625. passive:multiply money yield of complex by 2e12
  626. cost:150e12 money
  627. req:(complex>=50) and complexupgr3
  628. icon:upgricons[0,11]
  629.  
  630. *rentupgr1
  631. name:What a weird animal
  632. desc:Guided tours are offered to the tourists who rent the complexes. Doubles the income of bacteria complexes.
  633. passive:multiply money yield of complex by 2
  634. cost:240e12 money
  635. req:(complex>=100) and rentupgr0
  636. icon:upgricons[1,11]
  637.  
  638. *bombupgr0
  639. name:Kaboom
  640. desc:You develop a bomb made out of bacterias that can infect thousands of people when it explodes and transform them into salesman. Unlock bombers.
  641. cost:5e12 money
  642. req:(factory>=20e3)
  643. icon:upgricons[0,12]
  644.  
  645. *bombupgr1
  646. name:Getting flashbacks ?
  647. desc:The virus can spread from person to person really quick once it has infected a few hundred. Lower the bacteria cost of bombs by 75%.
  648. passive:multiply bacteria yield of bomber by 0.25
  649. cost:1e21 bacteria
  650. req:(bomber>=10)
  651. icon:upgricons[1,12]
  652.  
  653. *bombupgr2
  654. name:Made in china
  655. desc:The bomb factories are moved to china, where it costs a lot less to make. Divide by 2.5 the money cost of bombs.
  656. passive:multiply money yield of bomber by 0.4
  657. cost:110e12 money
  658. req:(bomber>=25) and bombupgr1
  659. icon:upgricons[2,12]
  660.  
  661. *bombupgr3
  662. name:What's the difference ?
  663. desc:You manage to make the bombs into a much cheaper missile that can target where it lands. The bomber pilots now don't have to aim where to drop the bombs. Halves the price of bombs and doubles the speed of bombers.
  664. passive:multiply bacteria yield of bomber by 2
  665. passive:multiply salesman yield of bomber by 2
  666. cost:225e12 money
  667. req:(bomber>=50) and bombupgr2
  668. icon:upgricons[3,12]
  669.  
  670. *bombupgr4
  671. name:Father of all bombs
  672. desc:The bacterial missiles are now bigger. Doubles the production of bombers.
  673. passive:multiply bacteria yield of bomber by 2
  674. passive:multiply salesman yield of bomber by 2
  675. passive:multiply money yield of bomber by 2
  676. cost:500e12 money
  677. req:(bomber>=500) and bombupgr3
  678. icon:upgricons[4,12]
  679.  
  680. *bombupgr5
  681. name:Little man & Fat boy
  682. desc:The bacterial missiles are now nuclear bombs. Quadruples the production of bombers.
  683. passive:multiply bacteria yield of bomber by 4
  684. passive:multiply salesman yield of bomber by 4
  685. passive:multiply money yield of bomber by 4
  686. cost:1e15 money
  687. req:(bomber>=1000) and bombupgr4
  688. icon:upgricons[5,12]
  689.  
  690. *bombupgr6
  691. name:Lighter is stronger
  692. desc:The bacterial bombs are now hydrogen bombs. Quadruples the production of bombers.
  693. passive:multiply bacteria yield of bomber by 4
  694. passive:multiply salesman yield of bomber by 4
  695. passive:multiply money yield of bomber by 4
  696. cost:2.5e15 money
  697. req:(bomber>=2.5e3) and bombupgr5
  698. icon:upgricons[6,12]
  699.  
  700. *bombupgr7
  701. name:Nevermind, heavier is stronger
  702. desc:The bacterial bombs are now based on the Tsar Bomba. Octuples the production of bombers
  703. passive:multiply bacteria yield of bomber by 8
  704. passive:multiply salesman yield of bomber by 8
  705. passive:multiply money yield of bomber by 8
  706. cost:10e15 money
  707. req:(bomber>=5e3) and bombupgr6
  708. icon:upgricons[7,12]
  709.  
  710. *bombupgr8
  711. name:Antibombs
  712. desc:The bacterial bombs are now antimatter bombs. Octuples the production of bombers
  713. passive:multiply bacteria yield of bomber by 8
  714. passive:multiply salesman yield of bomber by 8
  715. passive:multiply money yield of bomber by 8
  716. cost:100e15 money
  717. req:(bomber>=10e3) and bombupgr7
  718. icon:upgricons[8,12]
  719.  
  720. *bombupgr9
  721. name:Kurzgesagt, don't give me ideas
  722. desc:The bacterial bombs are now black hole bombs (made with teeny tiny black holes don't worry). Sexdecuple (x16) the production of bombers.
  723. passive:multiply bacteria yield of bomber by 8
  724. passive:multiply salesman yield of bomber by 8
  725. passive:multiply money yield of bomber by 8
  726. cost:2.5e18 money
  727. req:(bomber>=20e3) and bombupgr8
  728. icon:upgricons[9,12]
  729.  
  730. *endgame
  731. name:What now ?
  732. desc:Congratulations ! You conquered the whole world ! You can continue to infect more people by bringing them from other planets with this upgrade but you will not unlock any new things (unless if you missed some).
  733. cost:1e15 money
  734. req:(salesman>=8e9)
  735. icon:upgricons[0,0]
  736.  
  737. Achievements
  738. *bacteriaach1
  739. name:First Bacteria
  740. desc:Make 1 bacterias
  741. req:1 bacteria:earned
  742. icon:achicons1[0,0]
  743. *bacteriaach2
  744. name:Bacteria Family
  745. desc:Make 10 bacterias
  746. req:10 bacteria:earned
  747. icon:achicons1[1,0]
  748. *bacteriaach3
  749. name:Bacteria Group
  750. desc:Make 100 bacterias
  751. req:100 bacteria:earned
  752. icon:achicons1[2,0]
  753. *bacteriaach4
  754. name:Bacteria Crowd
  755. desc:Make 1 thousand bacterias.
  756. req:1e3 bacteria:earned
  757. icon:achicons1[3,0]
  758. *bacteriaach5
  759. name:Bacteria Swarm
  760. desc:Make 10 thousand bacterias
  761. req:10e3 bacteria:earned
  762. icon:achicons1[4,0]
  763. *bacteriaach6
  764. name:Bacteria Horde
  765. desc:Make 100 thousand bacterias
  766. req:100e3 bacteria:earned
  767. icon:achicons1[5,0]
  768. *bacteriaach7
  769. name:Bacteria Legion
  770. desc:Make 1 million bacterias
  771. req:1e6 bacteria:earned
  772. icon:achicons1[6,0]
  773. *bacteriaach8
  774. name:Bacteria Army
  775. desc:Make 10 million bacterias
  776. req:10e6 bacteria:earned
  777. icon:achicons1[7,0]
  778. *bacteriaach9
  779. name:Infected Fingernail
  780. desc:Make 100 million bacterias
  781. req:100e6 bacteria:earned
  782. icon:achicons1[8,0]
  783. *bacteriaach10
  784. name:Infected Tooth
  785. desc:Make 1 billion bacterias
  786. req:1e9 bacteria:earned
  787. icon:achicons1[9,0]
  788. *bacteriaach11
  789. name:Infected Nose
  790. desc:Make 10 billion bacterias
  791. req:10e9 bacteria:earned
  792. icon:achicons1[10,0]
  793. *bacteriaach12
  794. name:Infected Foot
  795. desc:Make 100 billion bacterias
  796. req:100e9 bacteria:earned
  797. icon:achicons1[11,0]
  798. *bacteriaach13
  799. name:Infected Head
  800. desc:Make 1 trillion bacterias
  801. req:1e12 bacteria:earned
  802. icon:achicons1[12,0]
  803. *bacteriaach14
  804. name:Infected Body
  805. desc:Make 10 trillion bacterias
  806. req:10e12 bacteria:earned
  807. icon:achicons1[13,0]
  808. *bacteriaach15
  809. name:Unknown Disease
  810. desc:Make 100 trillion bacterias
  811. req:100e12 bacteria:earned
  812. icon:achicons1[14,0]
  813. *bacteriaach16
  814. name:Small Outbreak
  815. desc:Make 1 quadrillion bacterias
  816. req:1e15 bacteria:earned
  817. icon:achicons1[15,0]
  818. *bacteriaach17
  819. name:Town-Wide Outbreak
  820. desc:Make 10 quadrillion bacterias
  821. req:10e15 bacteria:earned
  822. icon:achicons1[16,0]
  823. *bacteriaach18
  824. name:Studied Disease
  825. desc:Make 100 quadrillion bacterias
  826. req:100e15 bacteria:earned
  827. icon:achicons1[17,0]
  828. *bacteriaach19
  829. name:Famous Disease
  830. desc:Make 1 quintillion bacterias
  831. req:1e18 bacteria:earned
  832. icon:achicons1[18,0]
  833. *bacteriaach20
  834. name:Epidemic Disease
  835. desc:Make 10 quintillion bacterias
  836. req:10e18 bacteria:earned
  837. icon:achicons1[19,0]
  838. *bacteriaach21
  839. name:Feared Disease
  840. desc:Make 100 quintillion bacterias
  841. req:100e18 bacteria:earned
  842. icon:achicons1[20,0]
  843. *bacteriaach22
  844. name:Pandemic Disease
  845. desc:Make 1 sextillion bacterias
  846. req:1e21 bacteria:earned
  847. icon:achicons1[21,0]
  848. *bacteriaach23
  849. name:Apocalyptic Disease
  850. desc:Make 10 sextillion bacterias
  851. req:10e21 bacteria:earned
  852. icon:achicons1[22,0]
  853. *bacteriaach24
  854. name:Spacial Disease
  855. desc:Make 100 sextillion bacterias
  856. req:100e21 bacteria:earned
  857. icon:achicons1[23,0]
  858. *bacteriaach25
  859. name:Stellar Disease
  860. desc:Make 1 septillion bacterias
  861. req:1e24 bacteria:earned
  862. icon:achicons1[24,0]
  863.  
  864. *stringach1
  865. name:Learning to sew
  866. desc:Make 1 string
  867. req:1 string:earned
  868. icon:achicons1[0,1]
  869. *stringach2
  870. name:First seam
  871. desc:Make 10 string
  872. req:10 string:earned
  873. icon:achicons1[1,1]
  874. *stringach3
  875. name:You might want to sell some (top of resources bar)
  876. desc:Make 100 string
  877. req:100 string:earned
  878. icon:achicons1[2,1]
  879. *stringach4
  880. name:Apprentice Tailor
  881. desc:Make 1 thousand string
  882. req:1e3 string:earned
  883. icon:achicons1[3,1]
  884. *stringach5
  885. name:Experienced Tailor
  886. desc:Make 10 thousand string
  887. req:10e3 string:earned
  888. icon:achicons1[4,1]
  889. *stringach6
  890. name:Master Tailor
  891. desc:Make 100 thousand string
  892. req:100e3 string:earned
  893. icon:achicons1[5,1]
  894. *stringach7
  895. name:Small Sewing Store
  896. desc:Make 1 million string
  897. req:1e6 string:earned
  898. icon:achicons1[6,1]
  899. *stringach8
  900. name:Local Sewing Store
  901. desc:Make 10 million string
  902. req:10e6 string:earned
  903. icon:achicons1[7,1]
  904. *stringach9
  905. name:Big Sewing Store
  906. desc:Make 100 million string
  907. req:100e6 string:earned
  908. icon:achicons1[8,1]
  909. *stringach10
  910. name:New Sewing Company
  911. desc:Make 1 billion string
  912. req:1e9 string:earned
  913. icon:achicons1[9,1]
  914. *stringach11
  915. name:Big Sewing Company
  916. desc:Make 10 billion string
  917. req:10e9 string:earned
  918. icon:achicons1[10,1]
  919. *stringach12
  920. name:Worldwide Sewing Company
  921. desc:Make 100 billion string
  922. req:100e9 string:earned
  923. icon:achicons1[11,1]
  924. *stringach13
  925. name:Famous Sewing Company
  926. desc:Make 1 trillion string
  927. req:1e12 string:earned
  928. icon:achicons1[12,1]
  929. *stringach14
  930. name:Biggest String Company
  931. desc:Make 10 trillion string
  932. req:10e12 string:earned
  933. icon:achicons1[13,1]
  934. *stringach15
  935. name:Earth Monopoly
  936. desc:Make 100 trillion string
  937. req:100e12 string:earned
  938. icon:achicons1[14,1]
  939. *stringach16
  940. name:Solar System Monopoly
  941. desc:Make 1 quadrillion string
  942. req:1e15 string:earned
  943. icon:achicons1[15,1]
  944. *stringach17
  945. name:Star Cluster Monopoly
  946. desc:Make 10 quadrillion string
  947. req:10e15 string:earned
  948. icon:achicons1[16,1]
  949. *moneyach1
  950. name:Inexistent Wealth
  951. desc:Make 1 money
  952. req:1 money:earned
  953. icon:achicons1[0,2]
  954. *moneyach2
  955. name:Negligible Wealth
  956. desc:Make 10 money
  957. req:10 money:earned
  958. icon:achicons1[1,2]
  959. *moneyach3
  960. name:Full Piggy Bank
  961. desc:Make 100 money
  962. req:100 money:earned
  963. icon:achicons1[2,2]
  964. *moneyach4
  965. name:College Student
  966. desc:Make 1 thousand money
  967. req:1e3 money:earned
  968. icon:achicons1[3,2]
  969. *moneyach5
  970. name:Lower Class
  971. desc:Make 10 thousand money
  972. req:10e3 money:earned
  973. icon:achicons1[4,2]
  974. *moneyach6
  975. name:Middle Class
  976. desc:Make 100 thousand money
  977. req:100e3 money:earned
  978. icon:achicons1[5,2]
  979. *moneyach7
  980. name:Upper Class
  981. desc:Make 1 million money
  982. req:1e6 money:earned
  983. icon:achicons1[6,2]
  984. *moneyach8
  985. name:Millionaire
  986. desc:Make 10 million money
  987. req:10e6 money:earned
  988. icon:achicons1[7,2]
  989. *moneyach9
  990. name:Multi-Millionaire
  991. desc:Make 100 million money
  992. req:100e6 money:earned
  993. icon:achicons1[8,2]
  994. *moneyach10
  995. name:Billionaire
  996. desc:Make 1 billion money
  997. req:1e9 money:earned
  998. icon:achicons1[9,2]
  999. *moneyach11
  1000. name:Multi-Billionaire
  1001. desc:Make 10 billion money
  1002. req:10e9 money:earned
  1003. icon:achicons1[10,2]
  1004. *moneyach12
  1005. name:Top 10 Richest
  1006. desc:Make 100 billion money
  1007. req:100e9 money:earned
  1008. icon:achicons1[11,2]
  1009. *moneyach13
  1010. name:Earth's Richest Person
  1011. desc:Make 1 trillion money
  1012. req:1e12 money:earned
  1013. icon:achicons1[12,2]
  1014. *moneyach14
  1015. name:Big Country's GDP
  1016. desc:Make 10 trillion money
  1017. req:10e12 money:earned
  1018. icon:achicons1[13,2]
  1019. *moneyach15
  1020. name:Earth's Total GDP
  1021. desc:Make 100 trillion money
  1022. req:100e12 money:earned
  1023. icon:achicons1[14,2]
  1024. *moneyach16
  1025. name:Quadrillionnaire
  1026. desc:Make 1 quadrillion money
  1027. req:1e15 money:earned
  1028. icon:achicons1[15,2]
  1029. *moneyach17
  1030. name:Diamond City
  1031. desc:Make 10 quadrillion money
  1032. req:10e15 money:earned
  1033. icon:achicons1[16,2]
  1034. *moneyach18
  1035. name:Diamond Pools
  1036. desc:Make 100 quadrillion money
  1037. req:100e15 money:earned
  1038. icon:achicons1[17,2]
  1039. *moneyach19
  1040. name:Californium Pools
  1041. desc:Make 1 quintillion
  1042. req:1e18 money:earned
  1043. icon:achicons1[18,2]
  1044. *moneyach20
  1045. name:Antimatter Doorknobs
  1046. desc:Make 10 quadrillion money
  1047. req:10e18 money:earned
  1048. icon:achicons1[19,2]
  1049. *clickach1
  1050. name:We all gotta start somewhere
  1051. desc:Click the bacteria 1 time.
  1052. req:1 make.bacteria clicks
  1053. icon:achicons2[0,0]
  1054. *clickach2
  1055. name:Rookie Clicker
  1056. desc:Click the bacteria 10 time.
  1057. req:10 make.bacteria clicks
  1058. icon:achicons2[1,0]
  1059. *clickach3
  1060. name:Small Clicker
  1061. desc:Click the bacteria 50 times.
  1062. req:50 make.bacteria clicks
  1063. icon:achicons2[2,0]
  1064. *clickach4
  1065. name:Clicker
  1066. desc:Click the bacteria 100 times.
  1067. req:100 make.bacteria clicks
  1068. icon:achicons2[3,0]
  1069. *clickach5
  1070. name:Advanced Clicker
  1071. desc:Click the bacteria 500 times.
  1072. req:500 make.bacteria clicks
  1073. icon:achicons2[4,0]
  1074. *clickach6
  1075. name:Professional Clicker
  1076. desc:Click the bacteria 1000 times.
  1077. req:1000 make.bacteria clicks
  1078. icon:achicons2[5,0]
  1079. *clickach7
  1080. name:Godly Clicker
  1081. desc:Click the bacteria 5000 times.
  1082. req:5000 make.bacteria clicks
  1083. icon:achicons2[6,0]
  1084. *testach1
  1085. name:First test's always the hardest
  1086. desc:Make 1 test
  1087. req:(test>=1)
  1088. icon:achicons2[0,1]
  1089. *testach2
  1090. name:Pro tip : Press shift to buy 50
  1091. desc:Make 50 tests.
  1092. req:(test>=50)
  1093. icon:achicons2[1,1]
  1094. *testach3
  1095. name:Are these even useful ?
  1096. desc:Make 250 tests
  1097. req:(test>=250)
  1098. icon:achicons2[2,1]
  1099. *testach4
  1100. name:Where do you find that time
  1101. desc:Make 1 thousand tests
  1102. req:(test>=1e3)
  1103. icon:achicons2[3,1]
  1104. *testach5
  1105. name:A year worth of tests
  1106. desc:Make 5 thousand tests
  1107. req:(test>=5e3)
  1108. icon:achicons2[4,1]
  1109. *testach6
  1110. name:Will you ever stop ?
  1111. desc:Make 10 thousand tests
  1112. req:(test>=10e3)
  1113. icon:achicons2[5,1]
  1114. *testach7
  1115. name:More tests than clicks
  1116. desc:Make 20 thousand tests
  1117. req:(test>=20e3)
  1118. icon:achicons2[6,1]
  1119. *testach8
  1120. name:Test addict
  1121. desc:Make 50 thousand test
  1122. req:(test>=50e3)
  1123. icon:achicons2[7,1]
  1124. *antach1
  1125. name:First ant
  1126. desc:Infect 1 ant
  1127. req:(ant>=1)
  1128. icon:achicons2[0,2]
  1129. *antach2
  1130. name:Small group
  1131. desc:Infect 10 ants
  1132. req:(ant>=10)
  1133. icon:achicons2[1,2]
  1134. *antach3
  1135. name:Full meal
  1136. desc:Infect 100 ants
  1137. req:(ant>=100)
  1138. icon:achicons2[2,2]
  1139. *antach4
  1140. name:Ant neighbourhood
  1141. desc:Infect 1 thousand ants
  1142. req:(ant>=1e3)
  1143. icon:achicons2[3,2]
  1144. *antach5
  1145. name:Tiny ant colony
  1146. desc:Infect 10 thousand ants
  1147. req:(ant>=10e3)
  1148. icon:achicons2[4,2]
  1149. *antach6
  1150. name:Small ant colony
  1151. desc:Infect 100 thousand ants
  1152. req:(ant>=100e3)
  1153. icon:achicons2[5,2]
  1154. *antach7
  1155. name:MASSIVE ant colony
  1156. desc:Infect 1 million ants
  1157. req:(ant>=1e6)
  1158. icon:achicons2[6,2]
  1159. *antach8
  1160. name:A dog made of ants
  1161. desc:Infect 10 million ants
  1162. req:(ant>=10e6)
  1163. icon:achicons2[7,2]
  1164. *antach9
  1165. name:Ant kingdom
  1166. desc:Infect 100 million ants
  1167. req:(ant>=500e6)
  1168. icon:achicons2[8,2]
  1169. *antach10
  1170. name:Ant empire
  1171. desc:Infect 1 billion ants
  1172. req:(ant>=1e9)
  1173. icon:achicons2[9,2]
  1174. *antach11
  1175. name:1 for everyone
  1176. desc:Infect 10 billion ants
  1177. req:(ant>=10e9)
  1178. icon:achicons2[10,2]
  1179. *antach12
  1180. name:Ants, tonight we reach the moon !
  1181. desc:Infect 100 billion ants
  1182. req:(ant>=100e9)
  1183. icon:achicons2[11,2]
  1184. *antach13
  1185. name:Enough to make a giant mechabot
  1186. desc:Infect 1 trillion ants
  1187. req:(ant>=1e12)
  1188. icon:achicons2[12,2]
  1189. *antach14
  1190. name:Just solved world hunger
  1191. desc:Infect 10 trillion ants
  1192. req:(ant>=10e12)
  1193. icon:achicons2[13,2]
  1194. *antach15
  1195. name:Now this is just ridiculous
  1196. desc:Infect 100 trillion ants
  1197. req:(ant>=100e12)
  1198. icon:achicons2[14,2]
  1199. *queenach1
  1200. name:God save the queen
  1201. desc:Infect 1 queen
  1202. req:(queen>=1)
  1203. icon:achicons2[0,3]
  1204. *queenach2
  1205. name:Queen ant the 10th
  1206. desc:Infect 10 queen
  1207. req:(queen>=10)
  1208. icon:achicons2[1,3]
  1209. *queenach3
  1210. name:It's like a mini-earth
  1211. desc:Infect 196 queen
  1212. req:(queen>=196)
  1213. icon:achicons2[2,3]
  1214. *queenach4
  1215. name:Queen ant the 364th
  1216. desc:Infect 1 thousand ants
  1217. req:(queen>=1e3)
  1218. icon:achicons2[3,3]
  1219. *queenach5
  1220. name:Where are all the kings ?
  1221. desc:Infect 10 thousand queen
  1222. req:(queen>=10e3)
  1223. icon:achicons2[4,3]
  1224. *queenach6
  1225. name:A royal colony
  1226. desc:Infect 100 thousand queen
  1227. req:(queen>=100e3)
  1228. icon:achicons2[5,3]
  1229. *queenach7
  1230. name:Being a queen isn't special
  1231. desc:Infect 1 million queen
  1232. req:(queen>=1e6)
  1233. icon:achicons2[6,3]
  1234. *queenach8
  1235. name:Ant foutain
  1236. desc:Infect 10 million queen
  1237. req:(queen>=10e6)
  1238. icon:achicons2[7,3]
  1239. *queenach9
  1240. name:Ant geyser
  1241. desc:Infect 100 million queen
  1242. req:(queen>=100e6)
  1243. icon:achicons2[8,3]
  1244. *queenach10
  1245. name:More queens than bodyguards
  1246. desc:Infect 1 billion queen
  1247. req:(queen>=1e9)
  1248. icon:achicons2[9,3]
  1249. *whaleach1
  1250. name:How do ants live in these ?
  1251. desc:Infect 1 whale
  1252. req:(whale>=1)
  1253. icon:achicons2[0,4]
  1254. *whaleach2
  1255. name:A pod
  1256. desc:Infect 10 whales
  1257. req:(whale>=10)
  1258. icon:achicons2[1,4]
  1259. *whaleach3
  1260. name:Weren't these endangered ?
  1261. desc:Infect 100 whales
  1262. req:(whale>=100)
  1263. icon:achicons2[2,4]
  1264. *whaleach4
  1265. name:Gotta catch'em all
  1266. desc:Infect 1000 whales
  1267. req:(whale>=1000)
  1268. icon:achicons2[3,4]
  1269. *whaleach5
  1270. name:Is there even some left ?
  1271. desc:Infect 10 thousand whales
  1272. req:(whale>=10e3)
  1273. icon:achicons2[4,4]
  1274. *colonyach1
  1275. name:It runs all by itself !
  1276. desc:Make 1 string colony
  1277. req:(string.colony>=1)
  1278. icon:achicons2[0,5]
  1279. *colonyach2
  1280. name:Is clicking even worth it ?
  1281. desc:Make 10 string colonies
  1282. req:(string.colony>=10)
  1283. icon:achicons2[1,5]
  1284. *colonyach3
  1285. name:Feeling british ?
  1286. desc:Make 100 colonies
  1287. req:(string.colony>=100)
  1288. icon:achicons2[2,5]
  1289. *colonyach4
  1290. name:This is better than a petri dish
  1291. desc:Make 1000 string colonies
  1292. req:(string.colony>=1e3)
  1293. icon:achicons2[3,5]
  1294. *colonyach5
  1295. name:Colonies, colonies through the ceiling.
  1296. desc:Make 10 thousand string colonies
  1297. req:(string.colony>=10e3)
  1298. icon:achicons2[4,5]
  1299. *incubatorach1
  1300. name:How do I set this up ?
  1301. desc:Make 1 incubator
  1302. req:(incubator>=1)
  1303. icon:achicons2[0,6]
  1304. *incubatorach2
  1305. name:Fancy machines
  1306. desc:Make 10 incubators
  1307. req:(incubator>=10)
  1308. icon:achicons2[1,6]
  1309. *incubatorach3
  1310. name:The electricity bill is my worst nightmare
  1311. desc:Make 100 incubators
  1312. req:(incubator>=100)
  1313. icon:achicons2[2,6]
  1314. *incubatorach4
  1315. name:The government might be wondering what I'm doing...
  1316. desc:Make 1000 incubators
  1317. req:(incubator>=1000)
  1318. icon:achicons2[3,6]
  1319. *incubatorach5
  1320. name:I can't put all of these in my basement
  1321. desc:Make 10 thousands incubators
  1322. req:(incubator>=10e3)
  1323. icon:achicons2[4,6]
  1324. *farmach1
  1325. name:Basically a building full of incubators
  1326. desc:Make 1 farm
  1327. req:(farm>=1)
  1328. icon:achicons2[0,7]
  1329. *farmach2
  1330. name:How am I going to hide this ?
  1331. desc:Make 10 farms
  1332. req:(farm>=10)
  1333. icon:achicons2[1,7]
  1334. *farmach3
  1335. name:Bob the builder
  1336. desc:Make 100 farms
  1337. req:(farm>=100)
  1338. icon:achicons2[2,7]
  1339. *farmach4
  1340. name:Why are these even called farms ?
  1341. desc:Make 1000 farms
  1342. req:(farm>=1000)
  1343. icon:achicons2[3,7]
  1344. *farmach5
  1345. name:Professional ''farmer''
  1346. desc:Make 10 thousand farms
  1347. req:(farm>=10e3)
  1348. icon:achicons2[4,7]
  1349. *complexach1
  1350. name:Buying a town in one click
  1351. desc:Make 1 complex
  1352. req:(complex>=1)
  1353. icon:achicons2[0,8]
  1354. *complexach2
  1355. name:These aren't too simple
  1356. desc:Make 10 complexes
  1357. req:(complex>=10)
  1358. icon:achicons2[1,8]
  1359. *complexach3
  1360. name:Basically a city at that point
  1361. desc:Make 100 complexes
  1362. req:(complex>=100)
  1363. icon:achicons2[2,8]
  1364. *complexach4
  1365. name:Real estate shark
  1366. desc:Make 1000 complexes
  1367. req:(complex>=1000)
  1368. icon:achicons2[3,8]
  1369. *complexach5
  1370. name:Visible from space
  1371. desc:Make 10 thousand complexes
  1372. req:(complex>=10e3)
  1373. icon:achicons2[4,8]
  1374. *salesmanach1
  1375. name:First Minion
  1376. desc:Hire/Infect 1 salesman
  1377. req:(salesman>=1)
  1378. icon:achicons2[0,9]
  1379. *salesmanach2
  1380. name:It's not a cult it's a family
  1381. desc:Hire/Infect 10 salesman
  1382. req:(salesman>=10)
  1383. icon:achicons2[1,9]
  1384. *salesmanach3
  1385. name:Why are we selling this on the black market ?
  1386. desc:Hire/Infect 100 salesman
  1387. req:(salesman>=100)
  1388. icon:achicons2[2,9]
  1389. *salesmanach4
  1390. name:Village
  1391. desc:Hire/Infect 1 thousand salesman
  1392. req:(salesman>=1e3)
  1393. icon:achicons2[3,9]
  1394. *salesmanach5
  1395. name:Town
  1396. desc:Hire/Infect 10 thousand salesman
  1397. req:(salesman>=10e3)
  1398. icon:achicons2[4,9]
  1399. *salesmanach6
  1400. name:City
  1401. desc:Hire/Infect 100 thousand salesman
  1402. req:(salesman>=100e3)
  1403. icon:achicons2[5,9]
  1404. *salesmanach7
  1405. name:Metropolis
  1406. desc:Hire/Infect 1 million salesman
  1407. req:(salesman>=1e6)
  1408. icon:achicons2[6,9]
  1409. *salesmanach8
  1410. name:Region
  1411. desc:Hire/Infect 10 million salesman
  1412. req:(salesman>=10e6)
  1413. icon:achicons2[7,9]
  1414. *salesmanach9
  1415. name:Nation
  1416. desc:Hire/Infect 100 million salesman
  1417. req:(salesman>=100e6)
  1418. icon:achicons2[8,9]
  1419. *salesmanach10
  1420. name:Empire
  1421. desc:Hire/Infect 1 billion salesman
  1422. req:(salesman>=1e9)
  1423. icon:achicons2[9,9]
  1424. *salesmanach11
  1425. name:Who's gonna buy these ?
  1426. desc:Hire/Infect 10 billion salesman
  1427. req:(salesman>=10e9)
  1428. icon:achicons2[10,9]
  1429. *salesmanach12
  1430. name:Alien Salesman
  1431. desc:Hire/Infect 100 billion salesman
  1432. req:(salesman>=100e9)
  1433. icon:achicons2[11,9]
  1434. *salesmanach13
  1435. name:Cosmic Empire
  1436. desc:Hire/Infect 1 trillion salesman
  1437. req:(salesman>=1e12)
  1438. icon:achicons2[12,9]
  1439. *salesmanach14
  1440. name:Interstellar Empire
  1441. desc:Hire/Infect 10 trillion salesman
  1442. req:(salesman>=10e12)
  1443. icon:achicons2[13,9]
  1444. *salesmanach15
  1445. name:Galactic State
  1446. desc:Hire/Infect 100 trillion salesman
  1447. req:(salesman>=100e12)
  1448. icon:achicons2[14,9]
  1449. *factoryach1
  1450. name:Is this legal ? (of course not)
  1451. desc:Build 1 factory
  1452. req:(factory>=1)
  1453. icon:achicons2[0,10]
  1454. *factoryach2
  1455. name:That's what I call progress
  1456. desc:Build 10 factories
  1457. req:(factory>=10)
  1458. icon:achicons2[1,10]
  1459. *factoryach3
  1460. name:Polluted Rivers
  1461. desc:Build 100 factories
  1462. req:(factory>=100)
  1463. icon:achicons2[2,10]
  1464. *factoryach4
  1465. name:Global Warning
  1466. desc:Build 1 thousand factories
  1467. req:(factory>=1e3)
  1468. icon:achicons2[3,10]
  1469. *factoryach5
  1470. name:The Lorax is coming for you
  1471. desc:Build 10 thousand factories
  1472. req:(factory>=10e3)
  1473. icon:achicons2[4,10]
  1474. *bomberach1
  1475. name:Yes Rico, Kaboom
  1476. desc:Have 1 bomber
  1477. req:(bomber>=1)
  1478. icon:achicons2[0,11]
  1479. *bomberach2
  1480. name:Nothing to be scared of
  1481. desc:Have 10 bombers
  1482. req:(bomber>=10)
  1483. icon:achicons2[1,11]
  1484. *bomberach3
  1485. name:Taking Over
  1486. desc:Have 100 bombers
  1487. req:(bomber>=100)
  1488. icon:achicons2[2,11]
  1489. *bomberach4
  1490. name:Fear Me
  1491. desc:Have 1 thousand bombers
  1492. req:(bomber>=1e3)
  1493. icon:achicons2[3,11]
  1494. *bomberach5
  1495. name:Where do I even get those ?
  1496. desc:Have 10 thousand bombers
  1497. req:(bomber>=10e3)
  1498. icon:achicons2[4,11]
Advertisement
Add Comment
Please, Sign In to add comment