Advertisement
phoenmister

Idlemancy

Mar 28th, 2020
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.36 KB | None | 0 0
  1. Let's make a game!
  2. name:Idlemancy
  3. //author:Phoenix Hutchinson
  4. desc:A super nerd with normal powers
  5. forum post:x
  6. created:28/03/2020
  7. updated:29/03/2020
  8. version:0.1
  9.  
  10. Settings
  11. //backgroud:
  12. building cost increase:100%
  13. building cost refund:100%
  14. no bulk particles
  15.  
  16. Layout
  17. *main
  18. contains:res, buttons
  19. *buttons
  20. contains:Buttons
  21. contains:lowerButtons
  22. ps:hide
  23. *lowerButtons
  24. contains:tag:testbuttons
  25. *res
  26. contains:Resources
  27. contains:below
  28. class:fullWidth
  29. ps:show
  30. header:Resources
  31. tooltip origin:bottom
  32. *below
  33. contains:Resources
  34. contains:tag:xp
  35. header:Experiences
  36.  
  37. *store
  38. contains:buildings, upgrades
  39. *buildings
  40. contains:BulkDisplay, Buildings
  41. header:Buildings
  42. tooltip origin:left
  43. *upgrades
  44. contains:Upgrades
  45. header:Upgrades
  46. costs:hide
  47. names:hide
  48.  
  49. CSS
  50. #box-below, #box-res
  51. {
  52. margin-top:25%;
  53. }
  54. #box-lowerButtons
  55. {
  56. margin-top:25%
  57. border-radius:8px;
  58. background:rgba(255,255,255,0.5);
  59. }
  60.  
  61.  
  62. Buttons
  63. *testButton
  64. name:Test Button
  65. desc:This is a test
  66. on click:toast This is a test!
  67. tags:testbuttons
  68. *berriesButton
  69. name:Gather Berries
  70. req:10 exploreXp
  71. desc:A humble meal tonight it seems</>2 Food</>0.2 Herbalism Experience</>-3 Stamina
  72. hidden
  73. cost:3 stamina
  74. on click:
  75. if (stamina >= 3)
  76. do gatherberries with tag:manager
  77. lose 3 stamina
  78. end
  79. end
  80. *herbsButton
  81. name:Gather Herbs
  82. req:10 herbXp, 40 exploreXp
  83. desc:Go out searching for some useless plants that you don't eat</>0.5 Herbs</>0.5 Herbalism Experience</>-3 Stamina
  84. hidden
  85. cost:3 stamina
  86. on click:
  87. if (stamina >= 3)
  88. do gatherherbs with tag:manager
  89. lose 3 stamina
  90. end
  91. end
  92. *huntButton
  93. name:Hunt
  94. req:have firstbowUp
  95. req:60 exploreXp
  96. desc:Hunt for food in the woods </>5 Food</>0.5 Animal Experience</>-4 Stamina</>-1 Arrow</>[?(have skinningUp)|.2 hide|unlockable with upgrade]
  97. hidden
  98. cost:4 stamina, 1 arrows
  99. on click:
  100. if (stamina >= 4 and arrows >= 1)
  101. do hunt with tag:manager
  102. lose 4 stamina
  103. end
  104. end
  105. *fishButton
  106. name:Fish
  107. req:have firstfishUp
  108. req:50 exploreXp
  109. desc:Fish for food in the river </>1 Food</>0.1 Water Experience</>-1 Stamina</>
  110. hidden
  111. cost:1 stamina
  112. on click:
  113. if (stamina >= 1)
  114. do fish with tag:manager
  115. lose 1 stamina
  116. end
  117. end
  118. *woodButton
  119. name:Gather Wood
  120. req:20 exploreXp
  121. desc:Punching some trees </>0.4 Wood</>0.2 Body Experience</>-4 Stamina
  122. hidden
  123. cost:4 stamina
  124. on click:
  125. if (stamina >= 4)
  126. do gatherwood with tag:manager
  127. lose 4 stamina
  128. end
  129. end
  130. *exploreButton
  131. name:Explore
  132. shown
  133. desc:Explore and discover new things.</>0.4 Explore Experience</>-2 Stamina
  134. cost:2 stamina
  135. on click:
  136. if (stamina >= 2)
  137. do explore with tag:manager
  138. lose 2 stamina
  139. end
  140. end
  141. *stoneButton
  142. name:Gather Stones
  143. desc:Search for special stones</>0.2 Flint</>0.2 Geology Experience</>-2 Stamina</>[?(rocksXp>=10)|0.2 Limestone|unlockable at 10 Geology Experience]</> [?(rocksXp>=40)|0.2 Clay|unlockable at 40 Geology Experience]
  144. hidden
  145. req:30 exploreXp
  146. cost:2 stamina
  147. on click:
  148. if (stamina >= 2)
  149. do gatherstone with tag:manager
  150. lose 2 stamina
  151. end
  152. end
  153. *mineButton
  154. name:Mine
  155. desc:Mine ores from the earth</>0.2 Iron</>0.6 Geology Experience</>-4 Stamina
  156. hidden
  157. req:20 rocksXp
  158. req:75 exploreXp
  159. cost:4 stamina
  160. on click:
  161. if (stamina >= 4)
  162. do mine with tag:manager
  163. lose 4 stamina
  164. end
  165. end
  166. *flintarrowButton
  167. name:Arrow Making
  168. req:have fletchingUp
  169. desc:Feather Bullets!!!</>10 Arrows>/>0.5 Crafting Experience</>-5 Stamina</>-2 Flint</>-1 Wood
  170. hidden
  171. cost:1 wood, 2 flint, 5 stamina
  172. on click:
  173. if (stamina >= 5 and flint >= 2 and wood >= 1)
  174. do makearrows with tag:manager
  175. lose 5 stamina
  176. end
  177. end
  178. *paperButton
  179. name:Press Paper
  180. req:have paperUp
  181. desc:This isn't actually how people make paper you know.</>1 paper>/>0.5 Crafting Experience</>-5 Stamina</>-1 Wood
  182. hidden
  183. cost:1 wood, 5 stamina
  184. on click:
  185. if (stamina >= 5 and wood >= 1)
  186. do presspaper with tag:manager
  187. lose 5 stamina
  188. end
  189. end
  190. Resources
  191. *stamina
  192. name:Stamina
  193. desc:Stamina doesn't recharge without food. </>Consume 1 food for every 10 stamina
  194. tags:mundane stat
  195. start with:100
  196. shown
  197. *staminaMax
  198. name:Stamina Max
  199. desc:None
  200. tags:none
  201. always hidden
  202. start with:100
  203. *proformXp
  204. name:Proform Experience
  205. desc:Proform Experience
  206. tags:xp
  207. show earned
  208. hidden when 0
  209. *herbXp
  210. name:Herbalism Experience
  211. desc:Herbalism Experience
  212. tags:xp
  213. show earned
  214. hidden when 0
  215. *rocksXp
  216. name:Geology Experience
  217. desc:Geology Experience
  218. tags:xp
  219. show earned
  220. hidden when 0
  221. *craftXp
  222. name:Crafting Experience
  223. desc:Crafting Experience
  224. tags:xp
  225. show earned
  226. hidden when 0
  227. *magicXp
  228. name:Magic Experience
  229. desc:Magic Experience
  230. tags:xp
  231. show earned
  232. hidden when 0
  233. *exploreXp
  234. name:Explore Experience
  235. desc:Find more places
  236. tags:xp
  237. show earned
  238. hidden when 0
  239. *bodyXp
  240. name:Body Experience
  241. desc:Strong Arm Tactics
  242. tags:xp
  243. show earned
  244. hidden when 0
  245. *animalXp
  246. name:Animal Experience
  247. desc:You are learning the ways of beasts
  248. tags:xp
  249. show earned
  250. hidden when 0
  251. *fireXp
  252. name:Fire Experience
  253. desc:Pyrotechnics
  254. tags:xp
  255. show earned
  256. hidden when 0
  257. *waterXp
  258. name:Water Experience
  259. desc:Fishing and Swimming and... more.
  260. tags:xp
  261. show earned
  262. hidden when 0
  263. *windXp
  264. name:Animal Experience
  265. desc:I guess you learned singing then?
  266. tags:xp
  267. show earned
  268. hidden when 0
  269. *flint
  270. name:Flint
  271. desc:Sharp Rocks
  272. tags:mundane earth
  273. hidden when 0
  274. *limestone
  275. name:Limestone
  276. desc:A building brick and a flux stone
  277. tags:mundane earth
  278. hidden when 0
  279. *clay
  280. name:Clay
  281. desc:Soft rocks
  282. tags:mundane earth
  283. hidden when 0
  284. *iron
  285. name:Iron
  286. desc:You are rusty on the uses of this metal
  287. tags:metal mundane earth
  288. hidden when 0
  289. *wood
  290. name:Wood
  291. desc:Chemically processed air and water
  292. tags:flammable mundane nature
  293. hidden when 0
  294. *herbs
  295. name:Herbs
  296. desc:Leaves that you think are special for some reason
  297. tags:flammable mundane nature
  298. hidden when 0
  299. *paper
  300. name:Paper
  301. desc:Flimsy
  302. tags:flammable mundane manmade
  303. hidden when 0
  304. *hide
  305. name:Animal Hide
  306. desc:Raw leather i guess
  307. tags:flammable mundane nature dead
  308. hidden when 0
  309. *bone
  310. name:Bones
  311. desc:Now why would you want these...
  312. tags:mundane nature dead
  313. hidden when 0
  314. *arrows
  315. name:Arrows
  316. desc:More useless sharp things you have laying about
  317. tags:arrow weapon
  318. hidden when 0
  319. *food
  320. name:Food
  321. desc:Stuff you eat. Stamina doesn't recharge without food.
  322. tags:mundane nature dead
  323. start with:100
  324. shown
  325. *gold
  326. name:Gold
  327. desc:Gold
  328. tags:money
  329. hidden when 0
  330. *space
  331. name:Space
  332. desc:The room to build things
  333. tags:space
  334. hidden when 0
  335. *minion
  336. name:Minions
  337. desc:Your loyal minions do the work for you.
  338. tags:minions
  339. start with:2
  340. shown
  341. Buildings
  342. *minionExplore
  343. name:Exploring Minion
  344. desc:"Okay"</>1 Explore Click per Second
  345. req:1 exploreXp
  346. passive:do explore with tag:manager
  347. cost:1 minion
  348. tags:minions
  349. *minionGatherBerries
  350. name:Berries Minion
  351. desc:"Aye"</>1 Gather Berries Click per Second
  352. req:1 herbXp
  353. passive:do gatherberries with tag:manager
  354. cost:1 minion
  355. tags:minions
  356. *minionGatherWood
  357. name:Wood Minion
  358. desc:"If you say so"</>1 Gather Wood Click per Second
  359. req:1 bodyXp
  360. passive:do gatherwood with tag:manager
  361. cost:1 minion
  362. tags:minions
  363. *minionGatherStone
  364. name:Stone Minion
  365. desc:"Am I being punished?"</>1 Gather Stone Click per Second
  366. req:1 rocksXp
  367. passive:do gatherstone with tag:manager
  368. cost:1 minion
  369. tags:minions
  370. *minionGatherHerbs
  371. name:Herb Minion
  372. desc:"What does poison ivy look like again?"</>1 Gather Herb Click per Second
  373. req:1 herbs
  374. passive:do gatherherb with tag:manager
  375. cost:1 minion
  376. tags:minions
  377. *minionFish
  378. name:Fishing Minion
  379. desc:"Can do"</>1 Fish Click per Second
  380. req:firstfishUp
  381. passive:do fish with tag:manager
  382. cost:1 minion
  383. tags:minions
  384. *minionHunt
  385. name:Hunting Minion
  386. desc:"Sure thing boss"</>1 Hunt Click per Second
  387. req:firstbowUp
  388. passive:do hunt with tag:manager
  389. cost:1 minion
  390. tags:minions
  391. *minionMine
  392. name:Mineing Minion
  393. desc:"Work work"</>1 Mine Click per Second
  394. req:1 iron
  395. passive:do mine with tag:manager
  396. cost:1 minion
  397. tags:minions
  398. *minionArrowMaking
  399. name:Arrow Minion
  400. desc:"Can do"</>1 Arrow Making Click per Second
  401. req:1 arrows
  402. passive:do makearrows with tag:manager
  403. cost:1 minion
  404. tags:minions
  405. *minionPaperPress
  406. name:Paper Minion
  407. desc:"Can do"</>1 Press Paper Click per Second
  408. req:1 paper
  409. passive:do presspaper with tag:manager
  410. cost:1 minion
  411. tags:minions
  412. *gardenBuilt
  413. name:Garden
  414. desc:Garden of Berry Bushes?</>0.2 Food per Second</>10% Herbalism Experience Gain
  415. req:20 herbXp
  416. passive:multiply yield of herbXp by 1.10
  417. passive:yield 0.2 food
  418. cost:30 food, 5 space
  419. tags:garden food
  420. *herbGardenBuilt
  421. name:Herb Garden
  422. desc:Garden of Leaves?</>0.2 Herbs per Second</>15% Herbalism Experience Gain
  423. req:40 herbXp
  424. passive:multiply yield of herbXp by 1.15
  425. passive:yield 0.2 herbs
  426. cost:30 herbs, 5 space
  427. tags:garden nature
  428. *arborGardenBuilt
  429. name:Arbor Garden
  430. desc:Garden of Trees?</>0.2 Herbs per Second</>0.2 Wood per Second</>30% Herbalism Experience Gain
  431. req:75 herbXp
  432. passive:multiply yield of herbXp by 1.3
  433. passive:yield 0.2 herbs
  434. passive:yield 0.2 wood
  435. cost:30 herbs, 30 wood, 15 space
  436. tags:garden nature
  437. *pitfallTrapBuilt
  438. name:Pit Fall Trap
  439. desc:Make hunting easy</>0.1 Food per Second</>5% Animal Experience Gain
  440. req:30 animalXp
  441. req:have skinningUp
  442. passive:multiply yield of animalXp by 1.05
  443. passive:yield 0.1 food
  444. cost:10 wood, 10 food, 2 space
  445. tags:trap animal
  446. *animalpenBuilt
  447. name:Animal Pen
  448. desc:Why go to the animals when you can bring the animals to you.</>.5 Food per Second[?(have skinningUp)|</>0.05 Hide per second|][?(have boneUp)|</>0.05 Bones per second|]</>30% Animal Experience Gain
  449. req:have trackingUp
  450. passive:multiply yield of animalXp by 1.3
  451. passive:
  452. yield 0.5 food
  453. if (have skinningUp) yield 0.05 hide
  454. if (have boneUp) yield 0.05 bone
  455. end
  456. cost:15 wood, 50 food, 15 space
  457. tags:trap animal
  458. Upgrades
  459. *apothecaryUp
  460. name:Apothecary
  461. desc:The art of chemistry, but like more magic like.</>20% Herbalism Experience Gain</>20% Herbs Gain
  462. req:30 herbXp
  463. passive:multiply yield of herbXp by 1.2
  464. passive:multiply yield of herbs by 1.2
  465. cost:20 herbs
  466. tags:nature magic skill
  467. *campfireUp
  468. name:Camp Fire
  469. desc:Keep warm around the fire</>10% Stamina Gain</>Gain 5 Fire Experience
  470. req:1 wood
  471. passive:multiply yield of stamina by 1.1
  472. cost:5 wood, 5 flint
  473. tags:fire
  474. on earn:yield 5 fireXp
  475. *cookingUp
  476. name:Cooking
  477. desc:Learn how to Cook your food first. You haven't been doing that?</>10% Food Gain</>Gain 5 Fire Experience
  478. req:campfireUp
  479. passive:multiply yield of food by 1.1
  480. cost:50 stamina, 5 wood, 5 flint, 50 food
  481. tags:fire skill
  482. on earn:yield 5 fireXp
  483. *trappingUp
  484. name:Trapping
  485. desc:Trapping makes for better hunting targets</>20% Hide Gain</>10% Animal Experience Gain
  486. req:20 animalXp
  487. req:have skinningUp
  488. passive:multiply yield of hide by 1.2
  489. passive:multiply yield of animalXp by 1.1
  490. cost:100 stamina, 5 wood, 100 food
  491. tags:animal skill
  492. *boneUp
  493. name:Bone Collecting
  494. desc:Bones are not useless...</>Adds Bones to Hunt results
  495. req:40 animalXp
  496. cost:100 stamina, 100 food
  497. tags:animal skill
  498. *bonemealUp
  499. name:Bonemeal
  500. desc:helps things grow</>10% Gain from Gardens
  501. req:boneUp
  502. passive:multiply yield of tag:garden by 1.1
  503. cost:50 stamina, 20 bones
  504. tags:animal skill
  505. *kilnUp
  506. name:Kiln
  507. desc:Start baking that clay you have</>unlocks use of clay</>Gain 5 Fire Experience
  508. req:1 clay
  509. cost:50 stamina, 10 wood, 10 limestone, 5 clay
  510. tags:fire
  511. on earn:yield 5 fireXp
  512. *glassUp
  513. name:Glass Making
  514. desc:Sand from the river add heat and...</>unlocks glass upgrades</>Gain 5 Fire Experience
  515. req:kilnUp
  516. req:40 craftXp
  517. cost:50 stamina, 10 wood, 10 limestone
  518. tags:fire skill
  519. on earn:yield 5 fireXp
  520. *mortarPestleUp
  521. name:Mortar and Pestle
  522. desc:Grinding and Mixing... on the Dance Floor</>10% Stamina Gain</>Gain 5 Water Experience
  523. req:apothecaryUp
  524. req:60 herbXp
  525. passive:multiply yield of stamina by 1.1
  526. cost:50 stamina, 5 wood, 5 limestone
  527. tags:water skill
  528. on earn:yield 5 waterXp
  529. *glassvialUp
  530. name:Glass Vials
  531. desc:Properly storing and using your herbs</>10% Stamina Gain</>Gain 5 Water Experience
  532. req:glassUp
  533. req:mortarPestleUp
  534. req:85 herbXp
  535. passive:multiply yield of stamina by 1.1
  536. cost:50 stamina, 20 herbs
  537. tags:water skill
  538. on earn:yield 5 waterXp
  539. *furnaceUp
  540. name:Furnace
  541. desc:Smelt your iron into usable metal</>10% Food and Stamina Gain</>Gain 5 Fire Experience
  542. req:kilnUp
  543. req:1 iron
  544. cost:50 stamina, 10 wood, 10 clay, 5 iron
  545. tags:fire
  546. on earn:yield 5 fireXp
  547. *ovenUp
  548. name:Oven
  549. desc:Bake your food for better results</>10% Food and Stamina Gain</>Gain 5 Fire Experience
  550. req:kilnUp
  551. cost:50 stamina, 10 wood, 10 clay, 50 food
  552. passive:multiply yield of food by 1.1
  553. passive:multiply yield of stamina by 1.1
  554. tags:fire
  555. on earn:yield 5 fireXp
  556. *travelpackUp
  557. name:Travel Bag
  558. desc:Helps you travel more</>20% Explore Experience Gain</>Gain 5 Craft Experience
  559. req:1 hide
  560. passive:multiply yield of exploreXp by 1.2
  561. cost: 5 hide, 50 food
  562. tags:bag travel
  563. on earn:yield 5 craftXp
  564. *bedrollUp
  565. name:Bed Roll
  566. desc:Helps you sleep</>10% Stamina Gain
  567. req:1 hide
  568. passive:multiply yield of stamina by 1.1
  569. cost:5 hide
  570. tags:bed
  571. *tentUp
  572. name:Tent
  573. desc:A simple tent</>10% Stamina Gain</>Gain 5 space</>Gain 5 Craft Experience
  574. req:bedrollUp
  575. req:20 craftXp
  576. passive:multiply yield of stamina by 1.1
  577. cost:10 hide, 10 wood
  578. tags:shelter bed
  579. on earn:yield 5 space
  580. on earn:yield 5 craftXp
  581. *campUp
  582. name:Camp
  583. desc:A humble camp in the woods</>10% Stamina Gain</>Gain 10 space
  584. req:tentUp
  585. passive:multiply yield of stamina by 1.1
  586. cost:15 hide, 15 wood, 15 flint, 100 food
  587. tags:shelter bed town
  588. on earn:yield 10 space
  589. *fertileUp
  590. name:Fertile Ground
  591. desc:Make the ground around your camp better for growing</>10% Herbalism Experience Gain</>10% Herbs Gain</>Gain 5 space
  592. req:50 herbXp
  593. passive:multiply yield of herbs by 1.1
  594. passive:multiply yield of herbXp by 1.1
  595. cost:50 stamina, 20 herbs, 100 food
  596. tags:farm town
  597. on earn:yield 5 space
  598. *clearcuttingUp
  599. name:Clear Cutting
  600. desc:Make room for expanse!</>Gain 20 Wood</>Gain 10 space
  601. req:75 bodyXp
  602. cost:100 stamina, 10 flint
  603. tags:town
  604. on earn:yield 10 space
  605. on earn:yield 20 wood
  606. *writingUp
  607. name:Writing
  608. desc:Records last longer than memory</>Except when they dont</>10% all Experience gain.
  609. req:50 craftXp
  610. cost:10 paper, 50 stamina
  611. tags:paper skill
  612. passive:multiply yield of tag:xp by 1.1
  613. *bookUp
  614. name:Book Binding
  615. desc:Organized paper</>Unlock Craft Paper</>15% all Experience gain.
  616. req:75 craftXp
  617. req:have writingUp
  618. cost:15 paper, 15 hide, 75 stamina
  619. tags:paper skill
  620. passive:multiply yield of tag:xp by 1.15
  621. *paperUp
  622. name:Paper Press
  623. desc:Literally time to make history</>Unlock Craft Paper</>Gain 5 Craft Experience
  624. req:30 craftXp
  625. cost:10 wood, 10 limestone, 50 stamina
  626. tags:paper
  627. on earn:yield 5 craftXp
  628. on earn:show paperButton
  629. *forgeUp
  630. name:Forging
  631. desc:Forge your iron into powerful tools</>Unlocks Iron Tools</>Gain 5 Fire Experience
  632. req:60 craftXp
  633. req:have furnaceUp
  634. tags:fire
  635. cost:50 stamina, 10 iron, 5 wood
  636. on earn:yield 5 fireXp
  637. *ironaxeUp
  638. name:Iron Axe
  639. desc:New and improved axe to help you punch wood.</>50% Wood Gain</>Gain 5 Fire Experience
  640. req:have forgeUp
  641. cost:20 stamina, 10 iron, 10 wood
  642. passive:multiply yield of wood by 1.50
  643. tags:axe weapon
  644. on earn:yield 5 fireXp
  645. *ironpickUp
  646. name:Iron Pick
  647. desc:Flint was terrible anyways.</>50% Gain From Mining</>Gain 5 Fire Experience
  648. req:have forgeUp
  649. cost:20 stamina, 10 iron, 10 wood
  650. passive:multiply yield of mineButton by 1.50
  651. tags:pick weapon
  652. on earn:yield 5 fireXp
  653. *ironbowUp
  654. name:Iron Bow
  655. desc:It has quite the kick to it</>50% Resources Gain From Hunting</>Gain 5 Fire Experience
  656. req:have forgeUp
  657. cost:20 stamina, 10 iron, 10 wood
  658. passive:multiply yield of huntButton by 1.50
  659. tags:bow weapon
  660. on earn:yield 5 fireXp
  661. *firstpickUp
  662. name:First Mining Pick
  663. desc:A flint pick</>Double Iron Gain</>Gain 5 Craft Experience
  664. req:1 flint
  665. passive:multiply yield of iron by 2
  666. cost:10 flint, 5 wood
  667. tags:pick weapon
  668. on earn:yield 5 craftXp
  669. *firstaxeUp
  670. name:Simple Axe
  671. desc:A flint axe</>Double Wood Gain</>Gain 5 Craft Experience
  672. req:1 flint
  673. passive:multiply yield of wood by 2
  674. cost:10 flint, 5 wood
  675. tags:axe weapon
  676. on earn:yield 5 craftXp
  677. *firstbowUp
  678. name:Wood Bow
  679. desc:A hunting bow, to look pretty when you go hunting</>Gain 5 Craft Experience
  680. req:60 exploreXp
  681. cost:5 wood
  682. tags:bow weapon
  683. on earn:
  684. yield 5 craftXp
  685. show huntButton
  686. end
  687. *firstfishUp
  688. name:Fishing Pole
  689. desc:You found a river to fish at</>Also, where are you getting all this string from?</>Gain 5 Craft Experience
  690. req:50 exploreXp
  691. cost:5 wood
  692. tags:pole weapon
  693. on earn:
  694. yield 5 craftXp
  695. show fishButton
  696. end
  697. *flintknifeUp
  698. name:Cutting Edge
  699. desc:Your first blade... or is it?</>Gain 5 Craft Experience
  700. req:1 flint
  701. cost:5 flint, 1 wood
  702. tags:blade weapon
  703. on earn:yield 5 craftXp
  704. *prospectingUp
  705. name:Prospecting
  706. desc:Knowledge of where to mine and gather rocks</>10% Limestone Gain</>10% Flint Gain</>10% Clay Gain</>10% Iron Gain
  707. req:30 rocksXp
  708. cost:50 stamina, 5 flint, 5 limestone, 5 clay, 5 iron
  709. passive:multiply yield of flint by 1.1
  710. passive:multiply yield of limestone by 1.1
  711. passive:multiply yield of clay by 1.1
  712. passive:multiply yield of iron by 1.1
  713. tags:skill
  714. *subterranean
  715. name:Subterranean Expanse
  716. desc:Digging out a basement</>Gain 5 space
  717. req:50 rocksXp
  718. cost:75 stamina, 15 wood
  719. tags:shelter
  720. *fletchingUp
  721. name:Fletching
  722. desc:The art of making flying pointy sticks</>Unlocks Arrow Making
  723. req:10 craftXp
  724. req:1 flint
  725. cost:25 food, 5 flint, 5 wood
  726. tags:skill
  727. on earn:show flintarrowButton
  728. *skinningUp
  729. name:Skinning
  730. desc:allows you to make hide</>adds hide to hunt results
  731. req:flintknifeUp
  732. req:10 animalXp
  733. cost:100 food
  734. tags:skill
  735. *trackingUp
  736. name:Tracking
  737. desc:You have become better at following tracks.</><i>Chu Chu</i></>Oh no! There is a train coming quick stop follow the tracks!</>10% Gain From Hunting
  738. req:50 animalXp
  739. passive:multiply yield of huntButton by 1.10
  740. cost:100 food, 50 stamina
  741. tags:skill
  742. *pathUp
  743. name:Pathfinding
  744. desc:Following the proper path leads to quicker travel</>10% Gain From Hunting</>10% Gain From Gather Stone</>10% Gain From Gather Berries</>10% Gain from Gather Herbs</>10% Gain from Explore
  745. req:trackingUp
  746. passive:
  747. multiply yield of huntButton by 1.10
  748. multiply yield of stoneButton by 1.10
  749. multiply yield of berriesButton by 1.10
  750. multiply yield of herbsButton by 1.10
  751. multiply yield of exploreButton by 1.10
  752. end
  753. cost:100 food, 100 stamina
  754. tags:skill nature
  755. *catchingUp
  756. name:Catching
  757. desc:A more humane hunt tactic</>Unlocks Animal Pins
  758. req:trackingUp
  759. req:60 animalXp
  760. cost:200 food
  761. tags:skill
  762. *haulUp
  763. name:Hauling Force
  764. desc:Carry more wood when you go</>20% Wood Gain
  765. req:10 bodyXp
  766. cost:25 stamina, 25 food
  767. passive:multiply yield of wood by 1.2
  768. tags:skill
  769. *stonehaulUp
  770. name:Stone Hauling
  771. desc:Carry more stone when you go</>20% Limestone Gain</>20% Flint Gain</>20% Clay Gain
  772. req:30 bodyXp
  773. req:1 limestone
  774. cost:50 stamina, 50 food, 5 wood, 5 hide
  775. passive:multiply yield of flint by 1.2
  776. passive:multiply yield of limestone by 1.2
  777. passive:multiply yield of clay by 1.2
  778. tags:skill
  779. *ironhaulUp
  780. name:Iron Hauling
  781. desc:Carry more wood when you go</>20% Iron Gain
  782. req:50 bodyXp
  783. req:1 iron
  784. cost:75 stamina, 75 food, 10 wood, 10 hide
  785. passive:multiply yield of wood by 1.1
  786. tags:skill
  787. *punchingUp
  788. name:Punching Force
  789. desc:Punch those trees much harder!</>15% Wood Gain
  790. req:20 bodyXp
  791. cost:50 stamina, 50 food
  792. passive:multiply yield of wood by 1.15
  793. tags:skill
  794. *stonefistUp
  795. name:Stone Fist
  796. desc:Fists of bone become fists of stone!</>Wait, what do you mean by fist of bone?</>10% Wood Gain
  797. req:40 bodyXp
  798. req:have punchingUp
  799. cost:75 stamina, 75 food, 10 limestone
  800. passive:multiply yield of wood by 1.10
  801. tags:skill
  802. *ironfistUp
  803. name:Stone Fist
  804. desc:Brass knuckles...</>Iron. Iron knuckles</>10% Wood Gain
  805. req:60 bodyXp
  806. req:have stonefistUp
  807. req:have furnaceUp
  808. cost:100 stamina, 100 food, 10 iron
  809. passive:multiply yield of wood by 1.10
  810. tags:skill
  811. *spellBookUp
  812. name:Spell Book
  813. desc:The first step of a mage
  814. req:100 magicXp
  815. cost:20 paper
  816. tags:magic book
  817. *startingbodyUp
  818. name:Your Own Body
  819. desc:Made it yourself</>5 stamina per second</>1 food consumed per stamina gained
  820. start with
  821. passive:
  822. if (stamina < staminaMax and food >= 1)
  823. yield 5 stamina
  824. lose 1 food
  825. else if (stamina < staminaMax and food < 1)
  826. yield 1 stamina
  827. end
  828. end
  829. *GameManagerItem
  830. owned
  831. hidden
  832. on explore:
  833. yield 0.5 exploreXp
  834. if (exploreXp >=75 and rocksXp >= 20)
  835. show mineButton
  836. else if (herbXp >= 10 and exploreXp >= 40)
  837. show herbsButton
  838. else if (exploreXp >= 30)
  839. show stoneButton
  840. else if (exploreXp >= 20)
  841. show woodButton
  842. else if (exploreXp >= 10)
  843. show berriesButton
  844. end
  845. end
  846. on gatherherbs:
  847. yield 0.5 herbs
  848. yield 0.5 herbXp
  849. end
  850. on fish:
  851. yield 1 food
  852. yield 0.1 waterXp
  853. end
  854. on gatherwood:
  855. yield 0.2 wood
  856. yield 0.2 bodyXp
  857. end
  858. on gatherberries:
  859. yield 2 food
  860. yield 0.2 herbXp
  861. lose 3 stamina
  862. if (herbXp >= 10 and exploreXp >= 40)
  863. show herbsButton
  864. end
  865. end
  866. on gatherstone:
  867. yield 0.2 flint
  868. yield 0.2 rocksXp
  869. if (rocksXp >= 40)
  870. yield 0.2 clay
  871. end
  872. if (rocksXp >= 20)
  873. if (exploreXp>=75) show mineButton
  874. end
  875. if (rocksXp >= 10)
  876. yield 0.2 limestone
  877. end
  878. end
  879. on mine:
  880. yield 0.2 iron
  881. yield 0.6 rocksXp
  882. end
  883. on makearrows:
  884. if (flint >= 2 and wood >= 1)
  885. yield 10 arrows
  886. yield 0.5 craftXp
  887. lose 2 flint
  888. lose 1 wood
  889. end
  890. end
  891. on presspaper:
  892. if (wood >= 1)
  893. yield 1 paper
  894. yield 0.5 craftXp
  895. lose 1 wood
  896. end
  897. end
  898. on hunt:
  899. if (arrows >= 1)
  900. yield 5 food
  901. if (have skinningUp) yield 0.2 hide
  902. if (have boneUp) yield 0.2 bone
  903. yield 0.5 animalXp
  904. lose 1 arrows
  905. end
  906. end
  907. tags:manager
  908.  
  909. Achievements
  910. *deforestationAch
  911. name:Deforestation
  912. desc:The trees grow angry...</> +10% wood
  913. req:1000 woodButton:clicks
  914. passive:multiply yield of wood by 1.1
  915. hidden when 0
  916.  
  917.  
  918. Items
  919.  
  920.  
  921. Shinies
  922. //*wishingStarShine
  923. //name:Wishing Star
  924. //on click:yield 50 magicXp
  925. //movement:fade onLeft moveRight bobVertical
  926. //frequency:60
  927. //frequency variation:60
  928. //duration:5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement