Advertisement
Jacorb90

Distance Idle

Oct 5th, 2018
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.30 KB | None | 0 0
  1. Let's make a game!
  2. name:Distance Idle
  3.  
  4. Settings
  5. building cost increase:100%
  6. building cost refund:10%
  7.  
  8. Layout
  9. *main
  10. contains:res
  11. *res
  12. contains:Resources
  13. class:fullWidth
  14. *store
  15. contains:buildings, upgrades
  16. *buildings
  17. contains:Buildings
  18. header:Buildings
  19. tooltip origin:left
  20. *upgrades
  21. contains:Upgrades
  22. header:Upgrades
  23.  
  24. Resources
  25. *Distance
  26. name:Distance
  27. desc:The distance you have traveled in meters.
  28. tag:Resource
  29. *Velocity
  30. name:Velocity
  31. desc:The rate at which your distance is increasing.
  32. tag:Resource
  33. *Acceleration
  34. name:Acceleration
  35. desc:The rate at which your velocity is increasing.
  36. req:1 RocketBooster
  37. tag:Resource
  38. *Jerk
  39. name:Jerk
  40. desc:The rate at which your acceleration is increasing
  41. req:1 GravityRemote
  42. tag:Resource
  43. *Jounce
  44. name:Jounce
  45. desc:The rate at which your jerk is increasing
  46. req:1 ThunderBoot
  47. tag:Resource
  48. *UniverseParticles
  49. name:Universe Particles
  50. desc:Your universe particles! Increases yield of Distance, Velocity, Acceleration, etc. by 1% for each Particle.
  51. passive:multiply yield of tag:Resource by (1+0.01*UniverseParticles)
  52. hidden when 0
  53.  
  54. Buildings
  55. *StartAdventure
  56. name:Start Adventure!
  57. desc:Time to start everything!
  58. on earn:yield 10 Distance
  59. on tick:yield (Velocity) Distance
  60. on tick:yield (Acceleration) Velocity
  61. on tick:yield (Jerk) Acceleration
  62. on tick:yield (Jounce) Jerk
  63. on earn:hide StartAdventure
  64. tag:Building
  65. *RunningShoe
  66. name:Running Shoe
  67. desc:A running shoe to help you run faster (obviously)...
  68. cost:10 Distance
  69. on earn:yield (1/RunningShoe) Velocity
  70. tag:Building
  71. *RocketBooster
  72. name:Rocket Booster
  73. desc:A rocket booster to help you go faster over time.
  74. cost:25 Velocity
  75. req:1 RunningShoe
  76. on earn:yield (1/RocketBooster) Acceleration
  77. tag:Building
  78. *GravityRemote
  79. name:Gravity Remote
  80. desc:A gravity remote to change gravity in the direction you want to go.
  81. cost:50 Acceleration
  82. req:1 RocketBooster
  83. on earn:yield (1/GravityRemote) Jerk
  84. tag:Building
  85. *ThunderBoot
  86. name:Thunder Boot
  87. desc:A thunder boot to help zap you into shape!
  88. cost:100 Jerk
  89. req:1 GravityRemote
  90. on earn:yield (((SpeedMaster/4)+1)/ThunderBoot) Jounce
  91. tag:Building
  92. *SpeedMaster
  93. name:Speed Master
  94. desc:Becoming a speed master is difficult. Reach 100 of this building to become one.
  95. cost:250 Jounce
  96. req:1 ThunderBoot
  97. on tick:yield 1 RunningShoe
  98. on tick:yield 0.5 RocketBooster
  99. on tick:yield 0.33 GravityRemote
  100. on tick:yield 0.25 ThunderBoot
  101. on tick:yield -(1/SpeedMaster) Jounce
  102. tag:Building
  103.  
  104. Upgrades
  105. *EarthLap
  106. name:Earth Lap
  107. desc:A lap around the earth! Increases yield of every resource by 10%.
  108. cost:40075000 Distance
  109. req:4007500 Distance
  110. passive:multiply yield of StartAdventure by 1.1
  111. on earn:hide EarthLap
  112. tag:Upgrade
  113. *EarthLapInOneSecond
  114. name:Earth Lap In One Second
  115. desc:A lap around the earth in one second! Increases yield of every resource by 10%.
  116. cost:40075000 Velocity
  117. req:4007500 Velocity
  118. passive:multiply yield of StartAdventure by 1.1
  119. on earn:hide EarthLapInOneSecond
  120. tag:Upgrade
  121. *ELPS2
  122. name:ELPS Squared
  123. desc:Increasing velocity by earth lap every second! Increases yield of every resource by 10%.
  124. cost:40075000 Acceleration
  125. req:4007500 Acceleration
  126. passive:multiply yield of StartAdventure by 1.1
  127. on earn:hide ELPS2
  128. tag:Upgrade
  129. *ELPS3
  130. name:ELPS Cubed?
  131. desc:Increasing acceleration by earth lap every second! Increases yield of every resource by 10%.
  132. cost:40075000 Jerk
  133. req:4007500 Jerk
  134. passive:multiply yield of StartAdventure by 1.1
  135. on earn:hide ELPS3
  136. tag:Upgrade
  137. *ELPSJ
  138. name:ELPS Jounce Edition
  139. desc:Increasing jerk by earth lap every second! Increases yield of every resource by 10%.
  140. cost:40075000 Jounce
  141. req:4007500 Jounce
  142. passive:multiply yield of StartAdventure by 1.1
  143. on earn:hide ELPSJ
  144. tag:Upgrade
  145. *FirstLightSecond
  146. name:First Light Second!
  147. desc:Your first light second! Increases Distance per second by 10%.
  148. cost:299792000 Distance
  149. req:29979200 Distance
  150. passive:multiply Distance yield of StartAdventure by 1.1
  151. on earn:hide FirstLightSecond
  152. tag:Upgrade
  153. *LightSpeed
  154. name:Light Speed!
  155. desc:Reaching lightspeed! Increases Velocity per second by 10%.
  156. cost:299792000 Velocity
  157. req:29979200 Velocity
  158. passive:multiply Velocity yield of StartAdventure by 1.1
  159. on earn:hide LightSpeed
  160. tag:Upgrade
  161. *LightAcceleration
  162. name:Light Acceleration!
  163. desc:Accelerating at lightspeed! Increases Acceleration per second by 10%.
  164. cost:299792000 Acceleration
  165. req:29979200 Acceleration
  166. passive:multiply Acceleration yield of StartAdventure by 1.1
  167. on earn:hide LightAcceleration
  168. tag:Upgrade
  169. *LightJerk
  170. name:Light Jerk?
  171. desc:Jerking at lightspeed! Increases Jerk per second by 10%.
  172. cost:299792000 Jerk
  173. req:29979200 Jerk
  174. passive:multiply Jerk yield of StartAdventure by 1.1
  175. on earn:hide LightJerk
  176. tag:Upgrade
  177. *FirstLightEar
  178. name:First Light Year!
  179. desc:Your first light year! Increases Distance per second by 0.001% for every building you have.
  180. cost:9.461e+15 Distance
  181. req:946100000000000 Distance
  182. passive:multiply Distance yield of StartAdventure by (1+pow(0.00001*(RunningShoe+RocketBooster+GravityRemote+ThunderBoot+SpeedMaster),0.5))
  183. on earn:hide FirstLightEar
  184. tag:Upgrade
  185. *LightEarInOneSecond
  186. name:Light Year In One Second
  187. desc:You reached a light year in one second! Increases Velocity per second by 0.001% for every building you have.
  188. cost:9.461e+15 Velocity
  189. req:946100000000000 Velocity
  190. passive:multiply Velocity yield of StartAdventure by (1+pow(0.00001*(RunningShoe+RocketBooster+GravityRemote+ThunderBoot+SpeedMaster),0.5))
  191. on earn:hide LightEarInOneSecond
  192. tag:Upgrade
  193. *LightEarInOneSecond2
  194. name:Light Year In One Second Squared
  195. desc:You accelerated at a light year in one second! Increases Acceleration per second by 0.001% for every building you have.
  196. cost:9.461e+15 Acceleration
  197. req:946100000000000 Acceleration
  198. passive:multiply Acceleration yield of StartAdventure by (1+pow(0.00001*(RunningShoe+RocketBooster+GravityRemote+ThunderBoot+SpeedMaster),0.5))
  199. on earn:hide LightEarInOneSecond2
  200. tag:Upgrade
  201. *LightEarInOneSecond3
  202. name:Light Year In One Second Cubed?
  203. desc:You jerked at a light year in one second! Increases Jerk per second by 0.001% for every building you have.
  204. cost:9.461e+15 Jerk
  205. req:946100000000000 Jerk
  206. passive:multiply Jerk yield of StartAdventure by (1+pow(0.00001*(RunningShoe+RocketBooster+GravityRemote+ThunderBoot+SpeedMaster),0.5))
  207. on earn:hide LightEarInOneSecond2
  208. tag:Upgrade
  209. *JounceAutomatic
  210. name:Jounce Automatic
  211. desc:Increases Jounce per second by 1
  212. cost:250 Jounce
  213. req:100 Jounce
  214. on tick:yield 1 Jounce
  215. on earn:hide JounceAutomatic
  216. tag:Upgrade
  217. *SpeedMastery
  218. name:Speed Mastery
  219. desc:Become a speed master! Gives you 1 Speed Master per second.
  220. cost:100 SpeedMaster
  221. req:100 SpeedMaster
  222. on tick:yield 1 SpeedMaster
  223. on earn:hide SpeedMastery
  224. tag:Upgrade
  225. *UniverseRewind
  226. name:Universe Rewind
  227. desc:You have reached the edge of the universe! Time to rewind and recieve [pow(Distance/880000000000000000000000000,0.5)] Universe Particles!
  228. cost:8.8e+26 Distance
  229. req:88000000000000000000000000 Distance
  230. on earn:hide UniverseRewind
  231. on earn:yield (pow(Distance/880000000000000000000000000,0.5)) UniverseParticles
  232. on earn:lose tag:Upgrade
  233. on earn:lose tag:Building
  234. on earn:lose tag:Resource
  235. tag:Upgrade
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement