IronDizaster

Untitled

Jun 28th, 2021 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. Let's make a game!
  2.  
  3. name:Wizards and dragons
  4. Desc:magic
  5.  
  6. Layout
  7.  
  8. *main
  9. contains:res, buttons
  10. *res
  11. contains:Resources
  12. class:fullWidth
  13. ps:hide
  14. *buttons
  15. contains:Buttons
  16. *store
  17. contains:buildings, upgrades, log
  18. *buildings
  19. contains:Buildings
  20. header:Stuff
  21. tooltip origin:left
  22. *upgrades
  23. contains:Upgrades
  24. header:enchantments
  25. *log
  26. contains:Log
  27.  
  28. CSS
  29.  
  30. #box-main
  31. {
  32. top:0%;
  33. left:50%;
  34. width:50%;
  35. height:100%;
  36. }
  37.  
  38. #box-res
  39. {
  40. bottom:100%;
  41. right:1%;
  42. width:100%;
  43. height:100%;
  44. }
  45.  
  46. #box-buttons
  47. {
  48. bottom:50%;
  49. right:25%;
  50. width:100%;
  51. height:100%;
  52. overflow-x: hidden;
  53. overflow-y: scroll;
  54. }
  55.  
  56. #box-store
  57. {
  58. width:50%;
  59. height:100%;
  60. overflow-x: hidden;
  61. overflow-y: scroll;
  62. }
  63.  
  64. #box-buildings
  65. {
  66. top:0%;
  67. width:100%;
  68. height:33%;
  69. overflow-x: hidden;
  70. overflow-y: scroll;
  71. }
  72.  
  73. #box-upgrades
  74. {
  75. top:33%;
  76. width:100%;
  77. height:33%;
  78. overflow-x: hidden;
  79. overflow-y: scroll;
  80. }
  81.  
  82. #box-log
  83. {
  84. top:66%;
  85. width:100%;
  86. height:33%;
  87. overflow-x: hidden;
  88. overflow-y: scroll;
  89. }
  90.  
  91.  
  92. Settings
  93.  
  94. tiling background:https://pipe.miroware.io/606c3d44a333fb12a3ac9d3f/pixil-frame-0-33.png
  95.  
  96. building cost increase:120%
  97.  
  98. building cost refund:0%
  99.  
  100.  
  101. Resources
  102.  
  103. *M
  104. name:Magic
  105. desc:Magic can buy a TON of things
  106.  
  107. Buttons
  108.  
  109. *MB
  110. name:The staff
  111. desc:Make the magic
  112. on click:yield 1 M
  113. on tick:log test
  114. class:bigButton
  115. icon:https://pipe.miroware.io/606c3d44a333fb12a3ac9d3f/staff.png
  116. tag:thestaff
  117.  
  118. Buildings
  119.  
  120. *t
  121. name:test
  122. desc:test
Advertisement
Add Comment
Please, Sign In to add comment