Agentperson

LSM

Jun 16th, 2019 (edited)
1,465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.56 KB | None | 0 0
  1. //Please ask before taking code.
  2. Let's make a game!
  3. name:Legendary Superminer
  4. by:RadicalRobot (Archived by AgentRylie)
  5. desc:A idle mining tycoon with out-of-this world resources and adventures! Travel through different zones to get all of the ores!<//>Zone completion is possible with a collection of all ores in the zone (500-700 of each) in their purest form and an amount of cash suitable for the zone.<//>All zones have their own ores and buildings, collect them all!<//>Visit changelogs at my main page on the Dashnet Forums and have fun with the game!<//></><t>Archieve Updates</t></>(4/5/2020) All archive edits will now be recorded.</>(4/5/2020) Added the Dashnet Forum thing.</>(5/16/2020) Due to a current style sheet bug, the game's entire css has been moved to one file. (Update) It seems to be fixed now but just in case it happens again the game would at least work properly.
  6. created:3/04/2019
  7. updated:3/04/2019
  8. version:1.2
  9.  
  10. Settings
  11. background:https://piskel-imgstore-b.appspot.com/img/2645eede-5770-11e9-a21e-6b125fd027db.gif
  12. building cost increase:110%
  13. building cost refund:100%
  14. stylesheet:https://pastebin.com/3bwxiH8V
  15. //Kept for Legacy purposes only
  16.  
  17. Layout
  18. *main
  19. contains:buttons
  20. *res
  21. contains:Resources
  22. *buttons
  23. contains:Buttons
  24. *store
  25. contains:buildings, upgrades, res
  26. *buildings
  27. contains:BulkDisplay, Buildings
  28. header:Buildings
  29. tooltip origin:left
  30. *upgrades
  31. contains:Upgrades
  32. header:Upgrades
  33. *achievs
  34. contains:tag:Achievements
  35. header:Achievements
  36. in:store
  37.  
  38. CSS
  39. .thing
  40. {
  41. border-radius:8px;
  42. background:rgba(255,255,255,0.5);
  43. }
  44.  
  45. CSS
  46. .thing-icon,.particle
  47. {
  48. width:85px;
  49. height:85px;
  50. }
  51. .box
  52. {
  53. text-align:center;
  54. padding:0px;
  55. box-shadow:none;
  56. }
  57.  
  58. .thing,.box-header,.box-footer,.box-bit
  59. {
  60. background:#747474;
  61. border:1px solid rgba(0,0,0,0.9);
  62. margin:1px;
  63. }
  64. .thing.cantAfford
  65. {
  66. background:#747474;
  67. }
  68.  
  69.  
  70. .thing:hover
  71. {
  72. background:#00b405;
  73. }
  74. .thing.cantAfford:hover
  75. {
  76. background:#cc6a6d;
  77. }
  78.  
  79. .box-header
  80. {
  81. margin-top:2px;
  82. margin-bottom:4px;
  83. display:inline-block;
  84. font-family:Verdana;
  85. font-weight:bold;
  86. border-radius:10px;
  87. border:3px solid black;
  88. }
  89. .box-footer
  90. {
  91. margin-top:4px;
  92. }
  93.  
  94. #box-version
  95. {
  96. display:inline-block;
  97. margin-top:0.75%;
  98. margin-left:0.75%;
  99. margin-right:0.75%;
  100. float:right;
  101. }
  102.  
  103. #box-main
  104. {
  105. left:0px;
  106. top:0px;
  107. bottom:0px;
  108. overflow:hidden;
  109. width:60%;
  110. position:absolute;
  111. border:5px solid black;
  112. border-right:0px;
  113. }
  114. #box-buttons
  115. {
  116. top:0px;
  117. right:25%;
  118. bottom:0px;
  119. left:0px;
  120. position:absolute;
  121. }
  122. #box-store
  123. {
  124. right:0px;
  125. top:0px;
  126. bottom:0px;
  127. width:40%;
  128. position:absolute;
  129. }
  130. #box-buildings,#box-upgrades,#box-achievs,#box-prestige
  131. {
  132. top:0px;
  133. bottom:0px;
  134. width:50%;
  135. right:0%;
  136. overflow-x:hidden;
  137. overflow-y:scroll;
  138. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  139. position:absolute;
  140. border:solid 5px black;
  141. }
  142. #box-res
  143. {
  144. border-top:5px solid black;
  145. border-bottom:2.5px solid black;
  146. width:150%;
  147. right:100%;
  148. bottom:83.5%;
  149. height:11.5%;
  150. z-index:100;
  151. position:absolute;
  152. overflow-y:scroll;
  153. background:linear-gradient(to right,rgba(0,0,0,0.15) 0%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.15) 100%);
  154. }
  155. #box-buildings
  156. {
  157. right:50%;
  158. border-right:solid 0px black;
  159. }
  160. #box-achievs
  161. {
  162. right:100%;
  163. width:150%;
  164. top:75%;
  165. height:25%;
  166. border-right:solid 0px black;
  167. }
  168. #box-prestige
  169. {
  170. right:100%;
  171. top:25%;
  172. height:50%;
  173. border-top:solid 0px black;
  174. border-bottom:solid 0px black;
  175. border-right:solid 0px black;
  176. }
  177. #box-stats
  178. {
  179. border-top:2.5px solid black;
  180. border-bottom:5px solid black;
  181. width:150%;
  182. bottom:75%;
  183. right:100%;
  184. z-index:100;
  185. position:absolute;
  186. overflow-y:scroll;
  187. height:8.5%;
  188. background:linear-gradient(to right,rgba(0,0,0,0.15) 0%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.15) 100%);
  189. }
  190.  
  191. #box-buildings>.box-header
  192. {
  193. padding-bottom:16px;
  194. }
  195.  
  196. #bulkDisplay
  197. {
  198. margin-top:-2.5px;
  199. border:solid 1px black;
  200. background:#747474;
  201. width:70px;
  202. margin-left:auto;
  203. margin-right:auto;
  204. position:relative;
  205. z-index:200;
  206. }
  207.  
  208.  
  209. .thing
  210. {
  211. display:inline-block;
  212. padding:0px;
  213. cursor:pointer;
  214. font-family:Verdana;
  215. }
  216. .thing:active
  217. {
  218. opacity:0.5;
  219. }
  220. .upgrade.owned,.achiev.owned
  221. {
  222. box-shadow:0px 0px 0px 2px rgba(0,0,0,0.5) inset;
  223. background:#55cf50;
  224. }
  225. .upgrade.owned:hover,.achiev.owned:hover
  226. {
  227. background:#7dcc7a;
  228. }
  229. .thing.cantAfford
  230. {
  231. opacity:0.65;
  232. }
  233. .upgrade.cantAfford
  234. {
  235. border:none;
  236. }
  237.  
  238. .thing-costs{font-weight:bold;text-shadow:1px 1px 0px rgba(0,0,0,0.5);}
  239. .cost.hasEnough{color:#0f0;}
  240. .cost.notEnough{color:#f00;}
  241.  
  242.  
  243. .button>.thing-text
  244. {
  245. text-decoration:underline;
  246. }
  247.  
  248. .building
  249. {
  250. display:block;
  251. margin-right:0px;
  252. font-size:14px;
  253. }
  254.  
  255. .fullWidth
  256. {
  257. display:block;
  258. margin-left:0px;
  259. margin-right:0px;
  260. z-index:10;
  261. }
  262.  
  263. .fullWidth,.fullWidth:hover
  264. {
  265. background:rgba(0,0,0,0.75);
  266. box-shadow:none;
  267. color:#fff;
  268. }
  269. .fullWidth:before,.fullWidth:after
  270. {
  271. content:'';
  272. height:1px;
  273. background:rgba(255,255,255,0.75);
  274. position:absolute;
  275. left:0px;
  276. right:0px;
  277. z-index:-1;
  278. }
  279. .fullWidth .thing-icon
  280. {
  281. margin-top:-10px;
  282. margin-bottom:-10px;
  283. }
  284. .fullWidth .thing-text
  285. {
  286. margin-top:-4px;
  287. margin-bottom:-4px;
  288. }
  289.  
  290. .listing
  291. {
  292. font-weight:normal;
  293. }
  294.  
  295. .res
  296. {
  297. vertical-align:middle;
  298. }
  299.  
  300. #game.filtersOn .thing-icon{filter:drop-shadow(3px 3px 1px rgba(0,0,0,0.5));}
  301.  
  302. .tag-achievements
  303. {
  304. margin-bottom:4px;
  305. display:inline-block;
  306. font-family:Verdana;
  307. font-weight:bold;
  308. border-radius:10px;
  309. border:3px solid black;
  310. }
  311.  
  312. #box-things-achievements
  313. {
  314. display:inline-block;
  315. }
  316. display:inline-block;
  317. {
  318. display:inline-block;
  319. }
  320.  
  321. Buttons
  322. *Pickaxe
  323. name:Pickaxe
  324. desc:What mining tycoon wouldn't be complete without your loyal, trusty pickaxe?
  325. on click:if (have PlainsZone) yield 1 RawCoal
  326. on click:if (have PlainsZone) yield 0.8 IronOre
  327. on click:if (have PlainsZone and IronPickaxe) yield 0.6 GoldOre
  328. on click:if (have DesertZone) yield 0.8 BronzeOre
  329. on click:if (have DesertZone) yield 0.6 Amber
  330. on click:if (have DesertZone and AmberPickaxe) yield 0.6 Bloodstone
  331. on click:if (have AbyssZone) yield 1 CobaltOre
  332. on click:if (have AbyssZone) yield 0.7 Sapphire
  333. on click:if (have AbyssZone) yield 0.6 SeaDebris
  334. on click:if (have AbyssZone and SeaLantern) yield 0.6 Azurite
  335. icon:https://piskel-imgstore-b.appspot.com/img/bdaf1c0f-55da-11e9-9d2f-63f114ca3b6b.gif
  336. no text
  337. class:bigButton
  338. *SellOre
  339. name:Sell All
  340. desc:This button sells all 'sellable' ore. Most ores are only sellable in their finest form (e.g ingots)
  341. on click:if (RawCoal>0.99) yield (0.5*RawCoal) Cash
  342. on click:if (IronCoins>0.99) yield (2*IronCoins) Cash
  343. on click:if (IronIngot>0.99) yield (1.5*IronIngot) Cash
  344. on click:if (GoldIngot>0.99) yield (3*GoldIngot) Cash
  345. on click:if (BronzeIngot>0.99) yield (2*BronzeIngot) Cash
  346. on click:if (Amber>0.99) yield (4*Amber) Cash
  347. on click:if (Bloodstone>0.99) yield (5.5*Bloodstone) Cash
  348. on click:if (SandCrystal>0.99) yield (20*SandCrystal) Cash
  349. on click:if (CobaltIngot>0.99) yield (4*CobaltIngot) Cash
  350. on click:if (Sapphire>0.99) yield (6*Sapphire) Cash
  351. on click:if (Azurite>0.99) yield (7*Azurite) Cash
  352. on click:if (RawCoal>0.99) lose RawCoal
  353. on click:if (IronCoins>0.99) lose IronCoins
  354. on click:if (IronIngot>0.99) lose IronIngot
  355. on click:if (GoldIngot>0.99) lose GoldIngot
  356. on click:if (BronzeIngot>0.99) lose BronzeIngot
  357. on click:if (Amber>0.99) lose Amber
  358. on click:if (Bloodstone>0.99) lose Bloodstone
  359. on click:if (SandCrystal>0.99) lose SandCrystal
  360. on click:if (CobaltIngot>0.99) lose CobaltIngot
  361. on click:if (Sapphire>0.99) lose Sapphire
  362. on click:if (Azurite>0.99) lose Azurite
  363. *SmeltOre
  364. name:Smelt All
  365. desc:This button smelts all your ores and turns them into their pure form.
  366. on click:yield (1*IronOre) IronIngot
  367. on click:lose IronOre
  368. on click:yield (1*GoldOre) GoldIngot
  369. on click:lose GoldOre
  370. on click:yield (1*BronzeOre) BronzeIngot
  371. on click:lose BronzeOre
  372. on click:yield (1*CobaltOre) CobaltIngot
  373. on click:lose CobaltOre
  374.  
  375. Resources
  376. // Ores and Ingots
  377. // Plains
  378. *RawCoal
  379. name:Raw Coal
  380. desc:A simple chunk of raw coal that cannot be smelted. Sellable as is.<//><b>Worth: 0.5 Cash</b>
  381. show earned
  382. hidden when 0
  383. icon:https://piskel-imgstore-b.appspot.com/img/06b5dc19-58e6-11e9-ba8d-d16b03f61ff7.gif
  384. *IronOre
  385. name:Iron Ore
  386. desc:A perfect example of a unsellable ore. Smelt this so you may sell it for a better price!
  387. show earned
  388. hidden when 0
  389. icon:https://piskel-imgstore-b.appspot.com/img/1d030bab-58e6-11e9-8a0a-d16b03f61ff7.gif
  390. *IronIngot
  391. name:Iron Ingot
  392. desc:A smooth, shiny bar! Sellable in this form and is worth more than cheap coal.<//><b>Worth:1.5 Cash</b>
  393. show earned
  394. hidden when 0
  395. icon:https://piskel-imgstore-b.appspot.com/img/3b83e0f3-58e6-11e9-8b0a-d16b03f61ff7.gif
  396. *IronCoins
  397. name:Iron Coins
  398. desc:Slightly more valuable iron from expert forging! It just doesn't make cents!<//><b>Worth:2 Cash</b>
  399. show earned
  400. hidden when 0
  401. icon:https://piskel-imgstore-b.appspot.com/img/917ba738-58e6-11e9-8058-79cf2e150829.gif
  402. *GoldOre
  403. name:Gold Ore
  404. desc:The raw equivalent of Gold. Smelt this to get a nicer and less worthless item.
  405. show earned
  406. hidden when 0
  407. icon:https://piskel-imgstore-b.appspot.com/img/e959eb8a-58e6-11e9-90c7-d16b03f61ff7.gif
  408. *GoldIngot
  409. name:Gold Ingot
  410. desc:A great big yellow hunk of fabulousness. Worth quite a bit (more than Iron at least)<//><b>Worth:3 Cash</b>
  411. show earned
  412. hidden when 0
  413. icon:https://piskel-imgstore-b.appspot.com/img/f92c95e1-58e6-11e9-addf-d16b03f61ff7.gif
  414. // Desert
  415. *BronzeOre
  416. name:Bronze Ore
  417. desc:A curious brown ore found in the desert regions. Smelt it for profit!
  418. show earned
  419. hidden when 0
  420. icon:https://piskel-imgstore-b.appspot.com/img/171a6099-58e7-11e9-85d8-d16b03f61ff7.gif
  421. *BronzeIngot
  422. name:Bronze Ingot
  423. desc:A bar of metal that has a slight brown hue.<//><b>Worth:2.5 Cash</b>
  424. show earned
  425. hidden when 0
  426. icon:https://piskel-imgstore-b.appspot.com/img/276aa5a3-58e7-11e9-a65d-d16b03f61ff7.gif
  427. *Amber
  428. name:Amber
  429. desc:A shiny, orange semi-precious gem that is found in dry regions (not really that last part)<//><b>Worth:4 Cash</b>
  430. show earned
  431. hidden when 0
  432. icon:https://piskel-imgstore-b.appspot.com/img/3aa3a0cc-58e7-11e9-8643-d16b03f61ff7.gif
  433. *Bloodstone
  434. name:Bloodstone
  435. desc:Bloodstone (or 'heliotrope') is a strange little gem that doesn't really fit its name<//><b>Worth:5.5 Cash</b>
  436. show earned
  437. hidden when 0
  438. icon:https://piskel-imgstore-b.appspot.com/img/49c25d21-58e7-11e9-a46c-d16b03f61ff7.gif
  439. *SandCrystal
  440. name:Sand Crystal
  441. desc:A perfect combination of materials to make a stunning diamond-like gem.<//><b>Worth:20 Cash</b>
  442. show earned
  443. hidden when 0
  444. icon:https://piskel-imgstore-b.appspot.com/img/4e86e387-619a-11e9-b59d-470dc80e64ff.gif
  445. // Abyss
  446. *CobaltOre
  447. name:Cobalt Ore
  448. desc:A very rare ore, with a strange blue hue. Can be smelted.
  449. show earned
  450. hidden when 0
  451. icon:https://piskel-imgstore-b.appspot.com/img/00a49b14-709e-11e9-82bb-2b6da12f95af.gif
  452. *CobaltIngot
  453. name:Cobalt Ingot
  454. desc:A very pleasant looking bar of precious metal. Very sought after.<//><b>Worth:4 Cash</b>
  455. show earned
  456. hidden when 0
  457. icon:https://piskel-imgstore-b.appspot.com/img/5fae3066-709e-11e9-a3f2-2b6da12f95af.gif
  458. *Sapphire
  459. name:Sapphire
  460. desc:A precious blue gem that sells for a lot in jewelry!<//><b>Worth:6 Cash</b>
  461. show earned
  462. hidden when 0
  463. icon:https://piskel-imgstore-b.appspot.com/img/86c8aeca-709f-11e9-895c-2b6da12f95af.gif
  464. *Azurite
  465. name:Azurite
  466. desc:A peculiar turquoise gem that only appears in the far depths of the Abyss.<//><b>Worth:7 Cash</b>
  467. show earned
  468. hidden when 0
  469. icon:https://piskel-imgstore-b.appspot.com/img/4359cc38-70a0-11e9-9022-2b6da12f95af.gif
  470. *SeaDebris
  471. name:Sea Debris
  472. desc:A collection of undescribable ocean parts.
  473. show earned
  474. hidden when 0
  475. icon:https://piskel-imgstore-b.appspot.com/img/0f26568f-7b98-11e9-86c6-6b018830933f.gif
  476. *PinkCoral
  477. name:Pink Coral
  478. desc:A fluorescent pink piece of coral, one of the rarest of its species. Used in various craftings.
  479. icon:https://piskel-imgstore-b.appspot.com/img/fc2f23b5-7b9d-11e9-8758-6b018830933f.gif
  480. hidden when 0
  481. show earned
  482. *Seastar
  483. name:Seastar
  484. desc:A decorative little animal that makes for a nice addition in crafting.
  485. icon:https://piskel-imgstore-b.appspot.com/img/ef5847de-7b9e-11e9-b585-6b018830933f.gif
  486. hidden when 0
  487. show earned
  488. *Basalt
  489. name:Basalt
  490. desc:A volcanic rock, found in the volcanic regions of the Abyss. Can be used in interesting crafting recipes.
  491. icon:https://piskel-imgstore-b.appspot.com/img/6f332340-7bac-11e9-9db8-7dd4259112ed.gif
  492. hidden when 0
  493. show earned
  494.  
  495. // Other
  496. *Cash
  497. name:Cash
  498. desc:Your hard-earned cash that you have made through mining!
  499. show earned
  500. icon:https://piskel-imgstore-b.appspot.com/img/58902330-58e7-11e9-bd8e-d16b03f61ff7.gif
  501.  
  502. Buildings
  503. *DirtyMiner
  504. name:Dirty Miner
  505. desc:A young miner who isn't afraid to get his hands dirty while mining.<//><b>Gains 0.5 Coal and 0.5 Iron on tick</b>
  506. icon:https://piskel-imgstore-b.appspot.com/img/8e00a9b8-58e7-11e9-86d7-d16b03f61ff7.gif
  507. on tick:yield 0.5 RawCoal
  508. on tick:yield 0.5 IronOre
  509. cost:100 Cash
  510. *ColorfulMiner
  511. name:Colorful Miner
  512. desc:A skillful miner who is great at his job if you pay up to his 'standards'.<//><b>Gains 0.5 Iron and 0.5 Gold on tick</b>
  513. icon:https://piskel-imgstore-b.appspot.com/img/9f594b54-58e7-11e9-b731-d16b03f61ff7.gif
  514. on tick:yield 0.5 IronOre
  515. on tick:yield 0.5 GoldOre
  516. cost:700 Cash
  517. cost:15 GoldIngot
  518. *MummyMiner
  519. name:Mummified Miner
  520. desc:9 out of 10 miners prefer not to be wrapped up in cloth. But where's the fun in that?<//><b>Gains 0.5 Bronze on tick</b>
  521. on tick:yield 0.5 BronzeOre
  522. icon:https://piskel-imgstore-b.appspot.com/img/af2150f3-58e7-11e9-83ef-d16b03f61ff7.gif
  523. cost:7777 Cash
  524. cost:1 Amber
  525. req:have ScoutMedal
  526. *PharMiner
  527. name:Pharaoh Miner
  528. desc:These guys know how to live like kings. Little do they know the costume is $12.50.<//><b>Gains 0.5 Bronze and 0.5 Amber on tick</b>
  529. icon:https://piskel-imgstore-b.appspot.com/img/c68a04b5-58e7-11e9-8049-d16b03f61ff7.gif
  530. on tick:yield 0.5 BronzeOre
  531. on tick:yield 0.5 Amber
  532. cost:30000 Cash
  533. cost:10 Amber
  534. req:have ScoutMedal
  535. *BoneMiner
  536. name:Bone Miner
  537. desc:This guy was found stranded in the desert, so we put him to work. He knows all the best ore deposits, so why not?<//><b>Gains 0.7 Amber and 0.5 Bloodstone on tick</b>
  538. icon:https://piskel-imgstore-b.appspot.com/img/afee2214-6191-11e9-9e06-470dc80e64ff.gif
  539. on tick:yield 0.5 Bloodstone
  540. on tick:yield 0.5 Amber
  541. cost:50000 Cash
  542. cost:10 Bloodstone
  543. req:have ScoutMedal
  544. *AquanautMiner
  545. name:Aquanaut Miner
  546. desc:A deep-sea diver who loves exploring, and soon he will love mining!<//><b>Gains 0.6 Cobalt on tick</b><//><i>Trust me, Aquanaut is a word.</i>
  547. icon:https://piskel-imgstore-b.appspot.com/img/622e9228-70a4-11e9-9cc9-2b6da12f95af.gif
  548. on tick:yield 0.6 CobaltOre
  549. cost:75000 Cash
  550. req:have HeatRune
  551. *FisherMiner
  552. name:Fisherman Miner
  553. desc:Don't ask why he gets paid more than a aquanaut... Ok fine, they had a protest. Happy?<//><b>Gains 0.6 Cobalt and 0.5 Sapphire on tick</b>
  554. icon:https://piskel-imgstore-b.appspot.com/img/42af9c51-70a5-11e9-96bd-2b6da12f95af.gif
  555. on tick:yield 0.6 CobaltOre
  556. on tick:yield 0.5 Sapphire
  557. cost:90000 Cash
  558. cost:5 Sapphire
  559. req:have HeatRune
  560. *ScubaMiner
  561. name:Scuba Miner
  562. desc:Alright, the professions are decreasing in quality. But who cares, they have better ores for you!<//><b>Gains 0.6 Sapphire and 0.6 Azurite on tick</b>
  563. icon:https://piskel-imgstore-b.appspot.com/img/15e953e3-70a6-11e9-ac58-2b6da12f95af.gif
  564. on tick:yield 0.6 Sapphire
  565. on tick:yield 0.6 Azurite
  566. cost:115115 Cash
  567. cost:7 Azurite
  568. req:have HeatRune
  569.  
  570. Upgrades
  571. // Areas
  572. *PlainsZone
  573. name:Plains Zone
  574. desc:Your default location, home to basic ores such as Coal and Iron.
  575. start with
  576. on earn:lose DesertZone
  577. on earn:lose AbyssZone
  578. icon:https://piskel-imgstore-b.appspot.com/img/6412350a-58e8-11e9-99ca-d16b03f61ff7.gif
  579. *DesertZone
  580. name:Desert Zone
  581. desc:A sandy, deserted area. Perfect for basic gem mining...
  582. req:have ScoutMedal
  583. on earn:lose PlainsZone
  584. on earn:lose AbyssZone
  585. icon:https://piskel-imgstore-b.appspot.com/img/709477d4-58e8-11e9-8cb5-d16b03f61ff7.gif
  586. *AbyssZone
  587. name:Abyss Zone
  588. desc:A land forgotten to the seas. Perfect for looting!
  589. req:have HeatRune
  590. on earn:lose PlainsZone
  591. on earn:lose DesertZone
  592. icon:https://piskel-imgstore-b.appspot.com/img/5081a594-709d-11e9-b4aa-2b6da12f95af.gif
  593.  
  594. // Pickaxes
  595. *IronPickaxe
  596. name:Iron Pickaxe
  597. desc:A better pickaxe that upgrades your mining power and unlocks a new ore.<//><b>Unlocks 'Gold' in the Plains Zone</b><//><b>Increases power of Pickaxe</b>
  598. req:120 Cash
  599. cost:300 Cash
  600. cost:50 IronIngot
  601. passive:multiply yield of Pickaxe by 1.5
  602. icon:https://piskel-imgstore-b.appspot.com/img/a271845e-58e8-11e9-aa58-d16b03f61ff7.gif
  603. *GoldenPickaxe
  604. name:Golden Pickaxe
  605. desc:A fabulous new model, with a slick mahogany handle and all-new digging power!<//><b>Increases power of Pickaxe</b>
  606. req:400 Cash
  607. cost:3000 Cash
  608. cost:70 GoldIngot
  609. passive:multiply yield of Pickaxe by 1.5
  610. icon:https://piskel-imgstore-b.appspot.com/img/b0434bd9-58e8-11e9-a532-d16b03f61ff7.gif
  611. *AmberPickaxe
  612. name:Amber Pickaxe
  613. desc:Not the smartest choice for a pickaxe but it still works!<//><b>Unlocks 'Bloodstone' in the Desert Zone</b><//><b>Increases power of Pickaxe</b>
  614. req:15000 Cash
  615. req:1 Amber
  616. cost:60000 Cash
  617. cost:250 Amber
  618. passive:multiply yield of Pickaxe by 1.5
  619. icon:https://piskel-imgstore-b.appspot.com/img/bd0e2433-58e8-11e9-8e6e-d16b03f61ff7.gif
  620. *BloodstonePickaxe
  621. name:Bloodstone Pickaxe
  622. desc:A dull blue pickaxe, made of shiny Bloodstones.<//><b>Increases power of Pickaxe</b>
  623. req:30000 Cash
  624. req:10 Bloodstone
  625. cost:90000 Cash
  626. cost:300 Bloodstone
  627. passive:multiply yield of Pickaxe by 1.5
  628. icon:https://piskel-imgstore-b.appspot.com/img/fb56b72e-58e8-11e9-a41e-d16b03f61ff7.gif
  629. *CobaltPickaxe
  630. name:Cobalt Pickaxe
  631. desc:A cobalt pickaxe, made from cobalt from cobaltland.<//><b>Increases power of Pickaxe</b>
  632. cost:120000 Cash
  633. cost:100 CobaltIngot
  634. req:50 CobaltIngot
  635. passive:multiply yield of Pickaxe by 1.5
  636. icon:https://piskel-imgstore-b.appspot.com/img/221171d9-70a7-11e9-92d1-554c030eb0aa.gif
  637. *SapphirePickaxe
  638. name:Sapphire Pickaxe
  639. desc:Now with new, innovative metal handles production values with pickaxes will be better!<//><b>Good increase of power to Pickaxe</b>
  640. cost:250000 Cash
  641. cost:1000 Sapphire
  642. cost:1000 IronIngot
  643. req:50 Sapphire
  644. passive:multiply yield of Pickaxe by 1.8
  645. icon:https://piskel-imgstore-b.appspot.com/img/5e8536c0-70ab-11e9-8f44-554c030eb0aa.gif
  646.  
  647. // Buildings
  648. *SilverMedallion
  649. name:Silver Medallion
  650. desc:Shh, don't tell anybody it's iron...<//><b>Slight increase to Plains Zone miners.</b>
  651. passive:multiply yield of DirtyMiner by 1.5
  652. passive:multiply yield of ColorfulMiner by 1.5
  653. cost:1500 Cash
  654. cost:500 IronIngot
  655. req:300 Cash
  656. icon:https://piskel-imgstore-b.appspot.com/img/3272e2f0-58e9-11e9-8cbe-d16b03f61ff7.gif
  657. *GoldenMedallion
  658. name:Golden Medallion
  659. desc:This one is truthfully made with gold. Might be quite heavy.<//><b>Good increase in Plains Zone Miners.</b><//><i>Slight decrease to Pickaxe</i>
  660. passive:multiply yield of DirtyMiner by 1.5
  661. passive:multiply yield of ColorfulMiner by 1.5
  662. passive:lower yield of Pickaxe by 0.1
  663. cost:6000 Cash
  664. cost:400 GoldIngot
  665. req:500 Cash
  666. req:1 GoldIngot
  667. icon:https://piskel-imgstore-b.appspot.com/img/5c7d4f00-58ea-11e9-a060-79cf2e150829.gif
  668. *AmberPrism
  669. name:Amber Prism
  670. desc:The rays of the sun power up your miners!<//><b>Slight increase to Desert Zone miners.</b>
  671. passive:multiply yield of MummyMiner by 1.5
  672. passive:multiply yield of PharMiner by 1.5
  673. cost:50000 Cash
  674. cost:200 Amber
  675. req:30 Amber
  676. icon:https://piskel-imgstore-b.appspot.com/img/cc531fcc-58ea-11e9-9452-d16b03f61ff7.gif
  677. *BloodPrism
  678. name:Blood Prism
  679. desc:Despite the name, not made from blood. Or look like it.<//><b>Good increase to Desert Zone miners.</b>
  680. passive:multiply yield of MummyMiner by 1.5
  681. passive:multiply yield of PharMiner by 1.5
  682. cost:100000 Cash
  683. cost:300 Bloodstone
  684. req:30 Bloodstone
  685. icon:https://piskel-imgstore-b.appspot.com/img/024842bd-58eb-11e9-825c-d16b03f61ff7.gif
  686. *Pendulum
  687. name:Pendulum
  688. desc:A great item to boost all Plains and Desert buildings.<//><b>Good increase to Plains/Desert Zone miners.</b>
  689. passive:multiply yield of DirtyMiner by 1.5
  690. passive:multiply yield of ColorfulMiner by 1.5
  691. passive:multiply yield of MummyMiner by 1.5
  692. passive:multiply yield of PharMiner by 1.5
  693. passive:multiply yield of BoneMiner by 1.5
  694. cost:40000 Cash
  695. cost:100 Amber
  696. cost:400 GoldIngot
  697. cost:500 SilverCoins
  698. cost:600 IronIngot
  699. req:10000 Cash
  700. req:have ScoutMedal
  701. icon:https://piskel-imgstore-b.appspot.com/img/56b81aab-619e-11e9-8b37-470dc80e64ff.gif
  702. *SandPendulum
  703. name:Sand Pendulum
  704. desc:A pendulum that boosts all buildings with the power of sand crystals.<//><b>Good increase to Plains/Desert Zone miners.</b>
  705. passive:multiply yield of DirtyMiner by 1.5
  706. passive:multiply yield of ColorfulMiner by 1.5
  707. passive:multiply yield of MummyMiner by 1.5
  708. passive:multiply yield of PharMiner by 1.5
  709. passive:multiply yield of BoneMiner by 1.5
  710. req:Pendulum
  711. icon:https://piskel-imgstore-b.appspot.com/img/2aec1a5c-61a3-11e9-b00c-311b7e7a57ab.gif
  712. cost:60000 Cash
  713. cost:50 SandCrystal
  714.  
  715. // Other
  716. *GoldenCompass
  717. name:Golden Compass
  718. desc:Hail the compass! This item gives much more gold while manually mining!<//><b>Great increase in Gold mining</b>
  719. passive:multiply yield of GoldOre by 2
  720. cost:6060 Cash
  721. cost:100 GoldIngot
  722. req:1000 Cash
  723. icon:https://piskel-imgstore-b.appspot.com/img/4d234e63-58eb-11e9-b89b-d16b03f61ff7.gif
  724. *IronMallet
  725. name:Iron Mallet
  726. desc:Be able to forge your iron ingots into something more valuable.<//><b>Iron Ingots can be crafted into coins by clicking this upgrade (when owned)
  727. cost:5000 Cash
  728. cost:500 IronIngot
  729. req:500 Cash
  730. on click:if (have IronMallet) yield (1*IronIngot) IronCoins
  731. on click:if (have IronMallet) lose IronIngot
  732. icon:https://piskel-imgstore-b.appspot.com/img/3d980711-58eb-11e9-aa2d-d16b03f61ff7.gif
  733. *DesertRecipe
  734. name:Desert Recipe
  735. desc:Found by a few Bone Miners, an old recipe for a expensive diamond.<//><b>A mixture of Gold, Amber and Bronze can be crafted by clicking on this.</b>
  736. icon:https://piskel-imgstore-b.appspot.com/img/962689a3-61a0-11e9-b9e4-470dc80e64ff.gif
  737. cost:50 BronzeIngot, 50 Amber, 50 GoldIngot
  738. on earn:yield 1 SandCrystal
  739. on earn:if (SandCrystal:earned=0) lose 5000 Cash
  740. on earn:lose DesertRecipe
  741. req:50 Amber
  742. req:1 BoneMiner
  743.  
  744. *BloodstonePendant
  745. name:Bloodstone Pendant
  746. desc:A charm that allows for better bloodstone mining.<//><b>Great increase in Bloodstone mining</b>
  747. cost:40000 Cash
  748. cost:1200 GoldIngot
  749. cost:150 Bloodstone
  750. req:30 Bloodstone
  751. icon:https://piskel-imgstore-b.appspot.com/img/7915f159-58eb-11e9-9ac7-d16b03f61ff7.gif
  752. *SeaLantern
  753. name:Sea Lantern
  754. desc:Use this to see into the far depths of the Abyss.<//><b>Unlocks a new ore in the Abyss.</b>
  755. cost:100000 Cash
  756. cost:200 Sapphire
  757. req:50 Sapphire
  758. icon:https://piskel-imgstore-b.appspot.com/img/cf97c6e6-70a1-11e9-82e8-2b6da12f95af.gif
  759. *Extractor
  760. name:Extractor
  761. desc:Use your useless, boring sea bits to use, by separating the good stuff from the bad!<//><b>Unlocks the 'Extract' function when clicking on owned item</b>
  762. cost:75000 Cash
  763. cost:500 SeaDebris
  764. icon:https://piskel-imgstore-b.appspot.com/img/8b543c5c-7b99-11e9-99d8-6b018830933f.gif
  765. on click:
  766. if (SeaDebris>9)
  767. if (have Extractor)
  768. yield random(2,4) Seastar
  769. yield random(2,5) PinkCoral
  770. yield random(2,6) Basalt
  771. lose 10 SeaDebris
  772. yield Extractionare
  773. end
  774. end
  775. end
  776.  
  777. Achievements
  778. // Special
  779. *GoodPerson
  780. name:Good Person
  781. desc:You got this for being a good person. Good job!
  782. hidden when 0
  783. *Extractionare
  784. name:Extractionare
  785. desc:Use the Extraction Machine to collect many different deep-sea materials!
  786. hidden when 0
  787.  
  788. // Buildings
  789. *CoalCaver
  790. name:Coal Caver
  791. desc:Get your first Dirty Miner from the shop!<//><i>Get 1 Dirty Miner</i>
  792. req:1 DirtyMiner
  793. *DusttoDust
  794. name:Dust to Dust
  795. desc:More Dirty Miners to gain you coal!<//><i>Get 5 Dirty Miners</i>
  796. req:5 DirtyMiner
  797. *DeepVeins
  798. name:Deep Veins
  799. desc:All the coal is being mined with all these Dirty Miners!<//></i>Get 15 Dirty Miners</i>
  800. req:15 DirtyMiner
  801. *ColorRush
  802. name:Color Rush
  803. desc:Your first Colorful Miner for auto-iron mining!<//><i>Get 1 Colorful Miner</i>
  804. req:1 ColorfulMiner
  805. *ColorSplash
  806. name:Color Splash
  807. desc:More colorful miners! How fun!<//><i>Get 5 Colorful Miners</i>
  808. req:5 ColorfulMiner
  809. *ColorBlast
  810. name:Color Blast
  811. desc:A real colorful assortion of ores!<//><i>Get 15 Colorful Miners</i>
  812. req:15 ColorfulMiner
  813. *WrappedUp
  814. name:Wrapped Up
  815. desc:Gain a spooky Mummified Miner in the Desert Area!<//><i>Get 1 Mummified Miner</i>
  816. req:1 MummyMiner
  817. *VerySpooky
  818. name:Very Spooky
  819. desc:Get very spooked out with more Mummified Miners<//><i>Get 5 Mummified Miners</i>
  820. req:5 MummyMiner
  821. *MummyParty
  822. name:Mummy Party
  823. desc:So many mummies! So much power!<//><i>Get 15 Mummified Miners</i>
  824. req:15 MummyMiner
  825. *KingMe
  826. name:King Me
  827. desc:Recruit your first Pharaoh Miner!<//><i>Get 1 Pharaoh Miner</i>
  828. req:1 PharMiner
  829. *Dynasty
  830. name:Dynasty
  831. desc:Many rulers over the desert... So many pharaohs!<//><i>Get 5 Pharaoh Miners
  832. req:5 PharMiner
  833. *TombTrouble
  834. name:Tomb Trouble
  835. desc:Too many pharaohs for so little pyramids!<//><i>Get 15 Pharaoh Miners</i>
  836. req:15 PharMiner
  837. *RustySuit
  838. name:Rusty Suits
  839. desc:What do you expect for deep water diving in a metal suit?<//><i>Get 1 Aquanaut Miner</i>
  840. req:1 AquanautMiner
  841. *Octonaut
  842. name:Octonaut
  843. desc:Well, you only need 5 not 8, and... Oh, i get it.<//><i>Get 5 Aquanaut Miners</i>
  844. req:5 AquanautMiner
  845. *OceanMan
  846. name:Ocean Man
  847. desc:You expected this to be a reference did you? Oh wait, saying that makes it a reference. Dangit!<//><i>Get 15 Aquanaut Miners</i>
  848. req:15 AquanautMiner
  849. *Breeze
  850. name:Breeze
  851. desc:Start with a light, gentle breeze.<//><i>Get 1 Fisherman Miner</i>
  852. req:1 FisherMiner
  853. *Windy
  854. name:Windy
  855. desc:The air starts to howl around you.<//><i>Get 5 Fisherman Miners</i>
  856. req:5 FisherMiner
  857. *Storm
  858. name:Storm
  859. desc:The sound of thunder booms as it hits the earth.<//><i>Get 15 Fisherman Miners</i>
  860. req:15 FisherMiner
  861. *Breaststroke
  862. name:Breaststroke
  863. desc:Wow, a type of swimming! Too bad it's not swimming miner.<//><i>Get 1 Scuba Miner</i>
  864. req:1 ScubaMiner
  865. *Freestyle
  866. name:Freestyle
  867. desc:Wow, you have a lot of swimming miners.<//><i>Get 5 Scuba Miner</i>
  868. req:5 ScubaMiner
  869. *Butterfly
  870. name:Butterfly
  871. desc:A ton of scub-I mean swimming miners. Lots of them.<//><i>Get 15 Scuba Miner</i>
  872. req:15 ScubaMiner
  873.  
  874. // Ores
  875. *RawPower
  876. name:Raw Power
  877. desc:Start with raw coal... end with power!<//><i>Get 1 Coal</i>
  878. req:1 RawCoal
  879. *FueltheFire
  880. name:Fuel the Fire
  881. desc:This coal is just leading up to something great!<//><i>Get 100 Coal</i>
  882. req:100 RawCoal
  883. *BlazingInferno
  884. name:Blazing Inferno
  885. desc:What an epic name for such a anticlimactic achievement...<//><i>Get 600 Coal</i>
  886. req:600 RawCoal
  887. *Resistant
  888. name:Resistant
  889. desc:Stable iron ingots... Who doesn't love them?<//><i>Get 1 Iron Ingot</i>
  890. req:1 IronIngot
  891. *Welding
  892. name:Welding
  893. desc:Only just better than coal, but still something!<//><i>Get 100 Iron Ingots</i>
  894. req:100 IronIngot
  895. *HardasSteel
  896. name:Hard as Steel
  897. desc:More iron for your collection. Keep growing!<//><i>Get 600 Iron Ingots</i>
  898. req:600 IronIngot
  899. *Fabulous
  900. name:Fabulous
  901. desc:Who wouldn't be fabulous without some bling?<//><i>Get 1 Gold Ingot</i>
  902. req:1 GoldIngot
  903. *OohShiny
  904. name:Ooh Shiny!
  905. desc:Shiny? Shiny! SHINIES!<//><i>Get 100 Gold Ingots</i>
  906. req:100 GoldIngot
  907. *MoneyVision
  908. name:Money Vision
  909. desc:How delightful having so much gold... Now time to sell it!<//><i>Get 600 Gold Ingots</i>
  910. req:600 GoldIngot
  911. *SlickAlloy
  912. name:Slick Alloy
  913. desc:Fun fact, Bronze isn't actually an ore, it's an alloy made of copper and tin.<//><i>Get 1 Bronze Ingot</i>
  914. req:1 BronzeIngot
  915. *GreatBronze
  916. name:Great Bronze
  917. desc:Make sure you remember to sell your bronze...<//><i>Get 100 Bronze Ingots</i>
  918. req:100 BronzeIngot
  919. *BrownGold
  920. name:Brown Gold
  921. desc:Who needs gold when you have Bronze?<//><i>Get 600 Bronze Ingots</i>
  922. req:600 BronzeIngot
  923. *DesertGem
  924. name:Desert Gem
  925. desc:Amber, the beautiful gem of the desert.<//><i>Get 1 Amber</i>
  926. req:1 Amber
  927. *LotsofCrystals
  928. name:Lots of Crystals
  929. desc:So many ambers! It's so beautiful!<//><i>Get 100 Ambers</i>
  930. req:100 Amber
  931. *SappyGems
  932. name:Sappy Gems
  933. desc:Amber is actually tree resin... Why is this in the desert?<//><i>Get 600 Ambers</i>
  934. req:600 Amber
  935. *DarkHarvest
  936. name:Dark Harvest
  937. desc:Bloodstone sounds much cooler than it is, but who cares? Money!<//><i>Get 1 Bloodstone</i>
  938. req:1 Bloodstone
  939. *HeliotropeFun
  940. name:Heliotrope Fun
  941. desc:Why would you call it a 'heliotrope' when you can call it a 'bloodstone'?<//><i>Get 100 Bloodstones</i>
  942. req:100 Bloodstone
  943. *BlackandBlue
  944. name:Black and Blue
  945. desc:So many pretty Bloodstones! Gotta get em all!<//><i>Get 600 Bloodstones</i>
  946. req:600 Bloodstone
  947. *AncientCrystal
  948. name:Ancient Crystal
  949. desc:A special crystal restored with ancient help!<//><i>Get 10 Sand Crystals</i>
  950. req:10 SandCrystal
  951. *LovelyBlue
  952. name:Lovely Blue
  953. desc:Your a good person, reading these descriptions I put thought into. Click me for a special achievement!<//><i>Get 1 Cobalt Ingot</i>
  954. req:1 CobaltIngot
  955. on click:yield GoodPerson
  956. *Co27
  957. name:Co-27
  958. desc:Pat yourself on the back if you know why I chose this. Or google it, I don't care.<//><i>Get 100 Cobalt Ingots</i>
  959. req:100 CobaltIngot
  960. *Oceanic
  961. name:Oceanic
  962. desc:Deep in the ocean, where all the fish lay. Something something something, you got loads of cobalt.<//><i>Get 600 Cobalt Ingots</i>
  963. req:600 CobaltIngot
  964.  
  965. // Zone Completed
  966. *ScoutMedal
  967. name:Scout Medal
  968. desc:Good job sport, you've officially mined out the Plains Area! More onto the next area for more!
  969. req:600 RawCoal
  970. req:600 IronIngot
  971. req:600 GoldIngot
  972. req:9999 Cash
  973. *HeatRune
  974. name:Heat Rune
  975. desc:You have conquered the sandy dunes, mining all there is to see. Now to search the depths...
  976. req:700 Amber
  977. req:600 BronzeIngot
  978. req:600 Bloodstone
  979. req:99999 Cash
Advertisement
Add Comment
Please, Sign In to add comment