Advertisement
rendochai

Untitled

Dec 14th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. Let's make a game!
  2. name: quest
  3. author: rendochai
  4. desc: quest has you do just what it says. Quest.
  5. created: 14/12/2019
  6. version: .01
  7.  
  8. Settings
  9. building cost increase:115%
  10. building cost refund:50%
  11. stylesheet:stuff/bigBlue.css
  12.  
  13. Layout
  14. use default
  15.  
  16. Buttons
  17. *character button
  18. name:send a character on a quest
  19. desc:Click this button to get more exp and gold
  20. on click:anim icon wobble
  21. on click:yield 1 gold and 1 exp
  22. on click:chance(10%) yield 1 goldenIngot
  23. icon:stuff/bunny.png
  24. no text
  25. class:bigButton hasFlares
  26. icon class:shadowed
  27. tooltip origin:bottom
  28. tooltip class:red
  29.  
  30. Resources
  31. *gold
  32. name:gold
  33. desc:This is your gold. You can use it to purchase things. Your goal is to have as much gold as possible!
  34. icon:icons[0,0]
  35. class:noBackground
  36. show earned
  37. *exp
  38. name:exp
  39. desc:This is your exp. You can use it to level up skills.
  40. icon:icons[0,1]
  41. class:noBackground
  42. show earned
  43.  
  44. *goldenIngot|goldenIngots
  45. name:Golden Ingot|Golden Ingots
  46. desc:These shiny Ingots are terribly rare, terribly precious and visually stunning.
  47. icon:icons[0,2]
  48. class:noBackground
  49. hidden when 0
  50.  
  51. Buildings
  52. *TEMPLATE
  53. on click:anim glow
  54.  
  55. *Dummy|Dummies
  56. name:Training Dummy|Training Dummies
  57. desc:Your First Oponent<//><b>Effect:</b><.>Produces 1 exp every 10 seconds.
  58. icon:icons[3,0]
  59. cost:15 gold
  60. on tick:yield 0.1 exp
  61. unlocked
  62.  
  63. *Duel|Duels
  64. name:Duel|Duels
  65. desc:A friendly bout<//><b>Effect:</b><.>Produces 1 exp every 2 seconds.
  66. icon:icons[3,1]
  67. cost:100 gold
  68. on tick:yield 0.5 exp
  69. req:100 gold:earned
  70.  
  71. *Arena|Arenas
  72. name:Arena|Arenas
  73. desc:A much nicer way to die by the sword<//><b>Effect:</b><.>Produces 5 exp per second.
  74. icon:icons[3,2]
  75. cost:600 gold
  76. on tick:yield 5 exp
  77. req:600 gold:earned
  78.  
  79. *Dragon pen|Dragon pens
  80. name:Dragon pen|Dragon pens
  81. desc:A lovely enclosure with plenty Blood and Ash.<//><b>Effect:</b><.>Produces 12 exp per second.
  82. icon:icons[3,3]
  83. cost:4000 gold
  84. on tick:yield 12 exp
  85. req:4000 gold:earned
  86.  
  87. *Raid|Raids
  88. name:Boss Raid|Boss Raids
  89. desc:A wide open space, A gigantic chest full of treasure, and a boss ready to kick your teeth in<//><b>Effect:</b><.>Produces 90 exp per second.
  90. icon:icons[3,4]
  91. cost:20000 gold
  92. on tick:yield 90 exp
  93. req:20000 gold:earned
  94.  
  95. *Invasion|Invasions
  96. name:Faction Invasion|Faction Invasions
  97. desc:Your heroes are destroying a Faction City<//><b>Effect:</b><.>Produces 300 exp per second.
  98. icon:icons[3,5]
  99. cost:200000 gold
  100. on tick:yield exp bunnies
  101. req:200000 gold:earned and independenceDay
  102.  
  103. *city|cities
  104. name:Rabbit city|Rabbit cities
  105. desc:A bustling little city, populated with busy rabbits.<//><b>Effect:</b><.>Produces 1000 exp per second.
  106. icon:icons[3,6]
  107. cost:3000000 gold
  108. on tick:yield 1000 exp
  109. req:3000000 gold:earned and independenceDay
  110.  
  111. *citadel|citadels
  112. name:Moon citadel|Moon citadels
  113. desc:An ornate palace standing on the moon, ruled by bunny kings and queens and staffed with royal bunny guards.<//><b>Effect:</b><.>Produces 4000 exp per second.
  114. icon:icons[3,7]
  115. cost:70000000 gold
  116. on tick:yield 4000 exp
  117. on tick:if (have moonGardens) yield 0.1 gold
  118. req:70000000 gold:earned
  119.  
  120. *fortress
  121. name:Freedom fortress
  122. text:Freedom fortress ([this]%)
  123. desc:A huge bunny castle. A monument to the adventurous spirit of bunnykind, which will take time and effort to complete.<//><b>The fortress is [this]% complete.</b>
  124. icon:icons[3,8]
  125. cost:300000000 gold
  126. req:70000000 gold:earned
  127. limit:100
  128. cost increase:105%
  129.  
  130. Upgrades
  131. *TEMPLATE
  132. on click:anim glow
  133.  
  134. //food upgrades
  135. //inspiration : http://rabbit.org/suggested-vegetables-and-fruits-for-a-rabbit-diet/
  136.  
  137. *Strength
  138. name:Strength
  139. desc:Train with the Peasants.<//><b>Effect:</b><.>+1 gold/click
  140. icon:icons[1,1]
  141. cost:100 exp, 20 gold
  142. passive:increase gold yield of CharacterButton by 1
  143. req:20 gold:earned
  144.  
  145. *Wit
  146. name:Wit
  147. desc:Outsmart all the villagers.<//><b>Effect:</b><.>+1 gold/click
  148. icon:icons[1,2]
  149. cost:200 exp
  150. passive:increase bunny yield of bunnyButton by 1
  151. req:50 gold:earned
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement