IronDizaster

Untitled

Jan 1st, 2022 (edited)
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. Let's make a game!
  2. name:Smash n' Bash
  3. by:bindingofisaacgamer98
  4. desc:Go fight, stop reading this.
  5. created:25/7/2017
  6. updated:24/10/2017
  7. version:1
  8.  
  9. Settings
  10. background:https://i.ibb.co/m687bWj/cropped.jpg
  11. building cost increase:100%
  12. building cost refund:0%
  13.  
  14. Layout
  15. *main
  16. contains:buttons
  17. *res
  18. contains:Resources
  19. class:fullWidth
  20. ps:show
  21. *buttons
  22. contains:Buttons
  23. *store
  24. contains:upgrades, buildings, res
  25. *upgrades
  26. contains:Upgrades
  27. header:Items
  28. costs:hide
  29. names:hide
  30. *buildings
  31. contains:Buildings
  32. header:Shop
  33. ps:show
  34. tooltip origin:left
  35.  
  36. Buttons
  37. *enemy1Button
  38. name:Fight
  39. desc:kill em!
  40. on click:lose random(dmg,dmg) enemyhp
  41. icon:https://i.ibb.co/1K3NrGW/pixil-frame-0.png
  42. no text
  43. class:bigButton
  44. icon class:shadowed
  45. tooltip origin:bottom
  46. tooltip class:red
  47.  
  48. *enemy2Button
  49. name:lol
  50. desc:haha
  51. on click:yield 100000000000000 coin
  52. icon:https://i.ibb.co/1K3NrGW/pixil-frame-0.png
  53. no text
  54. icon class:shadowed
  55. tooltip origin:bottom
  56. tooltip class:red
  57. *bombbutton
  58. name:Use Bomb
  59. on click:lose 1 bomb
  60. on click:lose 40 enemyhp
  61. on click:if (bombs=0) toast You dont have any bombs.
  62. Resources
  63. *enemyhp
  64. name:enemy health
  65. desc:enemy health
  66. passive:if (enemyhp=0) yield 5 maxenemyhp
  67. passive:if (enemyhp=0) yield 1 kill
  68. passive:if (enemyhp=0) enemyhp is maxenemyhp
  69. *dmg
  70. name:DMG
  71. desc:your damage
  72. start with:1
  73. *maxenemyhp
  74. hidden
  75. start with:10
  76. *coin|coins
  77. name:Coins
  78. desc:money
  79. *kill|kills
  80. name:Kills
  81. desc:how many times you dieded da dude
  82. on earn:yield random(10000,10000000) coins
  83. *second|seconds
  84. name:Seconds
  85. passive:if (seconds=60) lose 60 seconds
  86. passive:if (seconds=60) yield 1 minute
  87. passive:yield 1 second
  88. *minute|minutes
  89. name:Minutes
  90. passive:if (minutes=60) lose 60 minutes
  91. passive:if (minutes=60) yield 1 hour
  92. *hour|hours
  93. name:Hours
  94. *maxcoins
  95. hidden
  96. start with:99
  97.  
  98. *bomb|bombs
  99. Name:Bombs
  100. start with:1
  101. Buildings
  102. *buyitem
  103. name:Buy Item
  104. desc:Buy an item.
  105. on earn:if (chance(100%)) yield item1
  106. on earn:if (chance(100%)) yield item2
  107. on earn:if (chance(100%)) yield item3
  108. on earn:if (chance(100%)) yield item4
  109. on earn:if (chance(100%)) yield item5
  110. cost:15 coins
  111. *buybomb
  112. name:Buy a bomb
  113. on earn:yield 1 bomb
  114. cost:5 coins
  115. Upgrades
  116. *item1
  117. name:Item 1
  118. desc:
  119. on earn:yield 2 dmg
  120. hidden when 0
  121. *item2
  122. name:Item 2
  123. desc:
  124. on earn:multiply yield of dmg by 2
  125. hidden when 0
  126. *item3
  127. name:Item 3
  128. desc:
  129. passive:lose 3.5 enemyhp
  130. passive:if (have item4) lose 3.5 enemyhp
  131. hidden when 0
  132. *item4
  133. name:Item 4
  134. desc:
  135. hidden when 0
  136. *item5
  137. name:Item 5
  138. desc:
  139. on earn:yield random(coins,coins) dmg
  140. hidden when 0
Add Comment
Please, Sign In to add comment