Advertisement
Msipp

idle 0.02

May 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. Let's make a game!
  2. name:Idle by isaac
  3.  
  4.  
  5. desc:an idle game
  6.  
  7. created:24/05/2019
  8.  
  9. updated:DD/MM/YYYY
  10.  
  11. version:0.03
  12.  
  13. Settings
  14.  
  15. building cost increase:120%
  16.  
  17. building cost refund:0%
  18.  
  19. CSS
  20. #game.filtersOn .thing.cantAfford.notOwned
  21. {
  22. filter:blur(3px);
  23. }
  24.  
  25. #game
  26. {
  27. background:cornflowerblue;
  28. font-family:"Times New Roman",Times,serif;
  29. color:black;
  30. }
  31. Layout
  32.  
  33. *unlockables
  34. contains:Upgrades, Achievements
  35. names:hide
  36.  
  37. *main
  38. contains:res, buttons
  39.  
  40.  
  41.  
  42. *buttons
  43. contains:Buttons
  44.  
  45. *store
  46. contains:buildings, upgrades
  47. *buildings
  48. contains:Buildings
  49. header:These are things you can build.
  50. tooltip origin:left
  51.  
  52.  
  53. *upgrades
  54. contains:Upgrades
  55. header:Upgrades
  56. costs:hide
  57. names:hide
  58.  
  59.  
  60.  
  61. *resources
  62. contains:Resources
  63. header:These are your resources.
  64.  
  65.  
  66. *achievs
  67. in:main
  68. contains:Achievements
  69. Resources
  70.  
  71. *resource
  72. name:Resource
  73. desc: You want alot of theese
  74. show earned
  75.  
  76. *research
  77. name: Research
  78. desc: Why must you keep playing?
  79. show earned
  80. passive: multiply yield of Resource Maker by 1.5
  81.  
  82. Buildings
  83.  
  84. *Resourcemaker
  85. name:Resource Maker
  86. desc: You're acutally buying stuff?
  87. on tick: yield 1 Resource
  88. cost: 1 Resource
  89.  
  90. *Researcher
  91. name: Researcher
  92. desc: This game isn't even fun.
  93. on tick: yield 1 Research
  94. cost: 5 Resource
  95.  
  96.  
  97.  
  98.  
  99. Upgrades
  100.  
  101. *upgrade1
  102. name:First upgrade
  103. desc: wait you acutally wanna play this?
  104. passive: mutliply yield of button by 2
  105. cost: 1 resource
  106.  
  107.  
  108.  
  109.  
  110. Achievements
  111.  
  112. *1click
  113. name: why are you clicking
  114. desc:there's nothing but a button
  115. req: 1 button:clicks
  116.  
  117. *1resourcemaker
  118. name: why are you buying
  119. desc: this is supposed to be a boring game
  120. req: 1 Resource Maker
  121.  
  122.  
  123.  
  124. Buttons
  125.  
  126.  
  127. *button
  128. name:button
  129. desc: click this if you wanna play i guess
  130. on click: yield 1 resource
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement