Dunnknow

Untitled

Jul 2nd, 2020
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Let's make a game!
  2. name:lint
  3. by:Dunnknow
  4. desc:EEEEEEEEEEEEEEEEEEEEe
  5. created:2
  6. updated:3
  7. version:5
  8.  
  9. Settings
  10. tiling background:https://image.ibb.co/kzZBTo/bg1.png
  11. building cost increase:115%
  12. building cost refund:50%
  13. spritesheet:icons, 48 by 48, https://i.ibb.co/tms8y2x/eeeeeeeee.png
  14.  
  15. Resources
  16. *lint
  17. name:lint
  18. desc:lint<//>world lint reserve: [lint:earned]
  19. icon:icons[0,0]
  20. *shinylint
  21. name:shiny lint
  22. desc:it's better<//>world shiny lint reserve: [shinylint:earned]
  23. icon:icons[0,1]
  24. req:1 shinylint
  25.  
  26. Buttons
  27. *more
  28. name:more
  29. desc:accumulate
  30. icon:https://i.ibb.co/WHgBkzX/more.png
  31. on click:yield 1 lint
  32. on click:anim icon wobble
  33. show clicks
  34. no text
  35. class:bigButton hasFlares
  36.  
  37. Buildings
  38. *lintendo
  39. name:lintendo
  40. desc:1 lint per second<.>fountains lint
  41. on tick:yield 1 lint
  42. cost:5 lint
  43. icon:icons[1,0]
  44. req:1 lint:earned
  45. *monoblogging
  46. name:monoblogging
  47. desc:12 lint per second<.>you slide dog! you got me monoblogging!
  48. on tick:yield 12 lint
  49. cost:1000 lint
  50. icon:icons[1,1]
  51. req:500 lint:earned
  52.  
  53. Upgrades
  54. *lintendoup1
  55. name:more lintery
  56. desc:more<//><.>x2 more lint frmo the lintendo
  57. passive:multiply yield of lintendo by 2
  58. cost:100 lint
  59. icon:icons[1,0]
  60. req:1 lintendo
  61. *lintendoup2
  62. name:scratched disck
  63. desc:more<//><.>x2 more lint frmo the lintendo
  64. passive:multiply yield of lintendo by 2
  65. cost:3000 lint
  66. icon:icons[1,0]
  67. req:10 lintendo
  68.  
  69. *monobloggingup1
  70. name:everyone is a super
  71. desc:no one is<//><.>x2 more lint frmo the MONOBLOGGING
  72. passive:multiply yield of monoblogging by 2
  73. cost:5000 lint
  74. icon:icons[1,1]
  75. req:1 monoblogging
  76.  
  77. CSS
  78. #box-res2.fullWidth
  79. {
  80. width:50%;
  81. top:85%;
  82. height:5%;
  83. min-height:32px;
  84. z-index:100;
  85. position:absolute;
  86. }
  87. #box-buildings
  88. {
  89. top:0px;
  90. bottom:0px;
  91. width:50%;
  92. height:80%;
  93. right:50%;
  94. overflow-x:hidden;
  95. overflow-y:scroll;
  96. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  97. position:absolute;
  98. }
  99. #box-items
  100. {
  101. top:80%;
  102. bottom:0px;
  103. width:50%;
  104. height:20%;
  105. right:50%;
  106. overflow-x:hidden;
  107. overflow-y:scroll;
  108. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  109. position:absolute;
  110. }
  111. #box-upgrades
  112. {
  113. top:0px;
  114. bottom:0px;
  115. width:50%;
  116. height:50%;
  117. right:0%;
  118. overflow-x:hidden;
  119. overflow-y:scroll;
  120. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  121. position:absolute;
  122. }
  123. #box-upgrades2
  124. {
  125. top:50%;
  126. bottom:0px;
  127. width:50%;
  128. height:50%;
  129. right:0%;
  130. overflow-x:hidden;
  131. overflow-y:scroll;
  132. padding-bottom:48px;/* this is to accommodate the info and settings buttons */
  133. position:absolute;
  134. }
  135. .upgrade.cantAfford
  136. {
  137. border:none;
  138. background:rgba(200,50,50,1);
  139. }
  140. .upgrade.owned
  141. {
  142. background:rgba(50,220,50,1);
  143. box-shadow:0px 0px 0px 2px rgba(0,0,0,0.5) inset;
  144. }
  145.  
  146. Layout
  147. *main
  148. contains:res, res2, buttons
  149. *res
  150. contains:Resources
  151. class:fullWidth
  152. *res2
  153. contains:tag:special
  154. class:fullWidth
  155. *buttons
  156. contains:Buttons
  157. *store
  158. contains:buildings, items, upgrades, upgrades2
  159. *buildings
  160. contains:Buildings
  161. header:<b>Buildings</b>
  162. tooltip origin:left
  163. *items
  164. contains:Items
  165. header:<b>Items</b>
  166. tooltip origin:left
  167. names:hide
  168. *upgrades
  169. contains:Upgrades
  170. header:<b>Upgrades</b>
  171. costs:hide
  172. names:hide
  173. *upgrades2
  174. contains:tag:specialUp
  175. header:<b>Special Upgrades</b>
  176. costs:hide
  177. names:hide
Add Comment
Please, Sign In to add comment