Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. mark start
  2.  
  3. if match "ticking"
  4. call bullshit
  5. endif
  6.  
  7. ## Soggy used band-aid ##
  8. if hppercentbelow 30 && hascombatitem 5678
  9. use 5678
  10. goto start
  11. endif
  12.  
  13. ## If not barf ##
  14. if !snarfblat 442
  15. abort
  16. endif
  17.  
  18. if monstername "sausage goblin"
  19. call goblin
  20. endif
  21.  
  22. ## Olfaction ##
  23. if !hasskill 19
  24. goto noolfact
  25. endif
  26.  
  27. if monstername "garbage tourist" && !haseffect 331
  28. skill 19
  29. goto start
  30. endif
  31.  
  32. mark noolfact
  33.  
  34. if match ""solid gold""
  35. call solidgold
  36. endif
  37.  
  38. call combat
  39.  
  40. ##############################################
  41.  
  42. sub bullshit
  43. mark ticking
  44.  
  45. if match "annoying" || match "cartwheeling" || match "phase-shifting" || match "turgid" || match "untouchable"
  46. call instant
  47. endif
  48.  
  49. if monstername "sausage goblin"
  50. call goblin
  51. endif
  52.  
  53. mark tickingcombat
  54. attack
  55. goto tickingcombat
  56.  
  57. endsub
  58.  
  59. ##############################################
  60.  
  61. sub goblin
  62. mark sausage
  63.  
  64. # micrometeorite #
  65. if hasskill 7289
  66. skill 7289
  67. goto sausage
  68. endif
  69.  
  70. # crayon shavings #
  71. if hascombatitem 5703 && !match ""You throw the handful of wax shavings at your opponent""
  72. use 5703
  73. goto sausage
  74. endif
  75.  
  76. call combat
  77.  
  78. endsub
  79.  
  80. ##############################################
  81. sub solidgold
  82. mark gold
  83.  
  84. # meteor shower #
  85. if hasskill 7291
  86. skill 7291
  87. goto gold
  88. endif
  89.  
  90. call combat
  91.  
  92. endsub
  93.  
  94. ##############################################
  95.  
  96. sub instant
  97. mark instakill
  98.  
  99. # shattering punch #
  100. if hasskill 149
  101. skill 149
  102. goto instakill
  103. endif
  104.  
  105. # Exploding cigar #
  106. if hascombatitem 9497
  107. use 9497
  108. goto instakill
  109. endif
  110.  
  111. # superheated metal #
  112. if hascombatitem 8522
  113. use 8522
  114. goto instakill
  115. endif
  116.  
  117. # the bomb #
  118. if hascombatitem 5225
  119. use 5225
  120. goto instakill
  121. endif
  122.  
  123. # tatter #
  124. if hascombatitem 1959
  125. use 1959
  126. goto instakill
  127. endif
  128.  
  129. endsub
  130.  
  131. ##############################################
  132.  
  133. sub combat
  134. mark combatstart
  135.  
  136. ## Soggy used band-aid ##
  137. if hppercentbelow 40 && hascombatitem 5678
  138. use 5678
  139. goto combatstart
  140. endif
  141.  
  142. # complimentary dinsey refreshments (quest) #
  143. if monstername "angry tourist" && hascombatitem 8243
  144. use 8243
  145. goto combatstart
  146. endif
  147.  
  148. # sing along #
  149. if hasskill 7297
  150. skill 7297
  151. goto combatstart
  152. endif
  153.  
  154. attack
  155.  
  156. goto combatstart
  157.  
  158. endsub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement