Advertisement
DrFetus

EOX Rival Data

Aug 19th, 2018
735
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.50 KB | None | 0 0
  1. Brod
  2. ====
  3. Level: 82
  4. EXP: 159820
  5. Stats:
  6. -HP: 52680
  7. -STR: 122
  8. -VIT: 69
  9. -AGI: 75
  10. -LUC: 83
  11. -INT: 108
  12. -WIS: 64
  13. Attack type: Cut
  14. Damage types:
  15. -Cut: 100%
  16. -Bash: 100%
  17. -Stab: 100%
  18. -Fire: 100%
  19. -Ice: 100%
  20. -Volt: 100%
  21. -Almighty: 100%
  22. Disables:
  23. -Instant Death: 0%
  24. -Petrification: 0%
  25. -Sleep: 25%
  26. -Panic: 25%
  27. -Poison: 75%
  28. -Blind: 50%
  29. -Paralysis: 75%
  30. -Curse: 25%
  31. -Stun: 10%
  32. -Head Bind: 25%
  33. -Arm Bind: 25%
  34. -Leg Bind: 50%
  35.  
  36. Afterimage: Passive. Uses the legs. Creates an Afterimage if an attack from the user hits the target. Blocked and absorbed attacks still create Afterimages. Attacks that are avoided entirely do not create afterimages. A maximum of 4 Afterimages can be in the battle at once.
  37. Brave Wide: Uses the arms. Deals melee 100% STR-based Cut damage to one party member. If this skill is cast before their target can act due to being outsped or being disabled, the entire party is attacked instead. Has an accuracy of 99%. Has a speed modifier of +100.
  38. Refined Guard Rush: Uses the arms. Deals melee 70% STR-based Bash damage to the entire party. Each time the user is attacked before this skill activates, 115% damage is added onto the initial damage, up to a maximum of 400% damage. Has an accuracy of 99%. Has a speed modifier of +15.
  39. Refined Freezing Slash: Uses the arms. Deals melee 130% STR-based Ice damage to one party member, with splash damage, and attempts to inflict Arm bind and Leg bind with a 35% success rate. Splash damage deals 50% of the initial damage. Has an accuracy of 99%. Has a speed modifier of +90.
  40. Act Breaker: Uses the arms. Deals melee 115% STR-based Cut damage to one party member, and attempts to inflict Stun with an 80% success rate. Has an accuracy of 150%. Has a speed modifier of 150.
  41. Abominable Wave: Uses the head. Places a debuff on the entire party that lowers their physical and elemental attack by 30% for 4 turns. Attempts to inflict Blind on the entire party, with a 30% success rate. Has a speed modifier of +100.
  42. Refined Clear Mind: Does not use a body part. Removes all ailments, binds, and debuffs from the user. Restores 1750 HP to the user. Has a speed modifier of +10.
  43. Shadow Burst: Does not use a body part. Permanently places the user in the Shadow Burst state. While in the Shadow Burst state, the user creates 2 Afterimages at a time instead of 1.
  44. Refined Miracle Edge: Uses the arms. Deals melee 250% STR-based Cut damage to the entire party. Blocks the effects of the user's Afterimage passive. Has an accuracy of 200%. Has a speed modifier of +100.
  45.  
  46. Brod AI Script:
  47.  
  48. Start of turn parameters:
  49. Activate counter 1. Add 1 to counter 1 any time this routine is run again.
  50.  
  51. Deactivate global flags 1, 2, 3, and 4.
  52.  
  53. If flag 1 is active, activate counter 2. Add 1 to counter 2 any time this routine is run again.
  54.  
  55. End of turn parameters:
  56. If self is petrified, asleep, or panicking, do nothing.
  57.  
  58. If HP is below 31% and flag 1 is not active, cast Shadow Burst. (Targets self.)
  59.  
  60. If HP is below 51% and flag 2 is not active, activate flag 2. Do nothing.
  61.  
  62. Else, do nothing.
  63.  
  64. If counter 2 is equal to or greater than 3, set counter 2 to 0 and cast Refined Miracle Edge. (Standard targeting.)
  65.  
  66. If counter 1 is equal to or greater than 4, and flag 0 is not active:
  67. If self is petrified, asleep, panicking, blind, paralyzed, cursed, head bound, arm bound, leg bound, or has any debuffs:
  68. If HP is below 51% and flag 9 is not active, cast Refined Clear Mind. (Targets self.) Activate flag 9.
  69.  
  70. Else, if flag 9 is not active, 50% chance to cast Refined Clear Mind. (Targets self.) Activate flag 9.
  71.  
  72. Else, cast Refined Guard Rush. (Standard targeting.) Set counter 1 to 0. Activate flag 8. Deactivate flags 4, 5, 7, and 9. Activate global flag 2.
  73.  
  74. If flag 1 is active:
  75. Pick a random number from 0 to 99, then:
  76. If flag 8 is not active and the number is below 15, cast Refined Guard Rush. (Standard targeting.) Activate flag 8. Deactivate flags 6 and 7. Activate global flag 2.
  77. If flag 6 is not active and the number is below 50, cast Refined Freezing Slash. (Standard targeting.) Activate flag 6. Deactivate flag 8. Activate global flag 3.
  78. If flag 7 is not active and the number is below 80, cast Act Breaker. (Standard targeting.) Activate flag 7. Deactivate flag 8. Activate global flag 4.
  79. Else, cast Brave Wide. (Standard targeting.) Deactivate flags 6 and 7. Activate global flag 1.
  80.  
  81. If flag 2 is active;
  82. Deactivate flag 8.
  83.  
  84. If counter 1 is equal to 1:
  85. If flag 3 is not active, cast Act Breaker. (Standard targeting.) Activate flag 3. Activate global flag 4.
  86.  
  87. Else:
  88. 60% chance to cast Brave Wide. (Standard targeting.) Activate flag 4. Activate global flag 1.
  89. 40% chance to cast Act Breaker. (Standard targeting.) Activate flag 7.
  90.  
  91. If counter 1 is equal to 2:
  92. 60% chance to cast Abominable Wave. (Standard targeting.)
  93.  
  94. Else:
  95. If flag 4 is not active, cast Brave Wide. (Standard targeting.) Activate flag 4. Activate global flag 1.
  96. Else, cast Act Breaker. (Standard targeting.) Activate flag 7. Activate global flag 4.
  97.  
  98. If counter 1 is equal to 3:
  99. 60% chance to cast Refined Freezing Slash. (Standard targeting.) Activate global flag 3.
  100.  
  101. Else:
  102. If flag 4 is not active, cast Brave Wide. (Standard targeting.) Activate flag 4. Activate global flag 1.
  103.  
  104. If flag 7 is not active, cast Act Breaker. (Standard targeting.) Activate flag 7. Activate global flag 4.
  105.  
  106. Else, cast Abominable Wave. (Standard targeting.)
  107.  
  108. Else, use a regular attack. (Standard targeting.)
  109.  
  110. If HP is below 81%:
  111. Deactivate flag 8.
  112.  
  113. If counter 1 is equal to 1:
  114. 60% chance to cast Brave Wide. (Standard targeting.) Activate flag 4. Activate global flag 1.
  115. 40% chance to use a regular attack. (Standard targeting.)
  116.  
  117. If counter 1 is equal to 2:
  118. 60% chance to cast Abominable Wave. (Standard targeting.)
  119. Else:
  120. If flag 4 is not active, cast Brave Wide. (Standard targeting.) Activate global flag 1.
  121. Else, use a regular attack. (Standard targeting.)
  122.  
  123. If counter 1 is equal to 3, cast Refined Feezing Slash. (Standard targeting.)
  124.  
  125. Else, use a regular attack. (Standard targeting.)
  126.  
  127. Else:
  128. If flag 4 is not active, cast Brave Wide. (Standard targeting.) Activate flag 4. Deactivate flag 5. Activate global flag 1.
  129.  
  130. If flag 5 is not active, cast Abominable Wave. (Standard targeting.) Activate flag 5.
  131.  
  132. Else:
  133. 40% chance to cast Brave Wide. (Standard targeting.) Activate global flag 1.
  134. 60% chance to use a regular attack. (Standard targeting.)
  135.  
  136. Afterimage
  137. ==========
  138. Level: 82
  139. EXP: 0
  140. Stats:
  141. -HP: 1773
  142. -STR: 122
  143. -VIT: 69
  144. -AGI: 75
  145. -LUC: 83
  146. -INT: 108
  147. -WIS: 64
  148. Attack type: Cut
  149. Damage types:
  150. -Cut: 100%
  151. -Bash: 100%
  152. -Stab: 100%
  153. -Fire: 100%
  154. -Ice: 100%
  155. -Volt: 100%
  156. -Almighty: 100%
  157. Disables:
  158. -Instant Death: 50%
  159. -Petrification: 0%
  160. -Sleep: 50%
  161. -Panic: 50%
  162. -Poison: 75%
  163. -Blind: 75%
  164. -Paralysis: 75%
  165. -Curse: 75%
  166. -Stun: 75%
  167. -Head Bind: 75%
  168. -Arm Bind: 75%
  169. -Leg Bind: 50%
  170. Othernotes: Unlike the Hero's version of Afterimages, these last indefinitely until killed.
  171.  
  172. Afterimage AI:
  173.  
  174. If flags 1, 2, 3, and 4 are not active:
  175. If global flag 1 is active, activate flag 1.
  176.  
  177. If global flag 2 is active, activate flag 2.
  178.  
  179. If global flag 3 is active, activate flag 3.
  180.  
  181. If global flag 4 is active, activate flag 4.
  182.  
  183. If flag 1 is active, cast Brave Wide. (Standard targeting.)
  184.  
  185. If flag 2 is active, cast Refined Guard Rush. (Standard targeting.)
  186.  
  187. If flag 3 is active, cast Refined Freezing Slash. (Standard targeting.)
  188.  
  189. If flag 4 is active, cast Act Breaker. (Standard targeting.)
  190.  
  191. Else, use a regular attack. (Standard targeting.)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement