Ultra Kaiju Monster Rancher
Research Data: AI Selection Processing for Battles
During the battle, the Monster AI makes a selection every frame, so a rate of 30 times a second. The monster has the following "Action State" options (initially set to No Decision): 0) No Decision, 1) Move Forward, 2) Move Backward, 3) Move to Target Range, 4) Use a Technique, 5) Knockback, and 6) Dash. All the options are pretty self-explanatory, except Move to Target Range which occurs when the monster gets too far out of range from the rival monster or has no Techs to use at the current range. Two timers are used and are updated every frame. The first timer is the "Use Tech Wait Duration" timer. It is a countdown timer, which when it reaches 0, allows the monster to use a tech. The second timer is the "New Decision Duration" timer. It is a count-up timer, and when it exceeds its threshold, the monster will stop its current course of action and choose a new one. The only action that continues to get executed after the decision actually is movement. All the other actions, except dash will cause the monster to wait at its current position until the duration is exceeded again. Due to the length of the action steps/processing decisions, both the Execute "Use Tech" and Execute "Tech Selection" will be covered in their Special processing part of the document. The word "End" will be used to indicate that no other decisions or logic will be executed.
So, basically, the logic works like this when it first starts. The AI makes a decision about using a tech at the current range. If it doesn’t, then it decides to move in a direction for a random amount of time, unless it decides to dash. Once the amount of time has expired, then it will decide on a new course of action depending on where it is at. The new course of action comes from one of the 7 action state options. If movement is not chosen as an option, then the delay for choosing a new option will be based on the last. Now, let’s get on to the AI Selection processing on the next page.
Monster AI Selection Processing Logic
Step A [Dashed and Confused]: Check to see if the Action State is DASH.- If (DASH) yes, then check to see if monster is done Dashing
- If (Dashing) yes, then set Action State to NO DECISION and go to Step C.
- If (Dashing) no, then keep Action State as DASH, and End.
- If (DASH) no , then check to see if monster is Confused
- If (Confused) yes, then check if New Decision Duration Threshold has been Exceeded
- If (Exceeded) yes, then go to Step E.
- If (Exceeded) no, then execute "Tech Selection" and End.
- If (Confused) yes, then check if New Decision Duration Threshold has been Exceeded
- If (Confused) no, then go to Step B
- If (State) yes, then check if (the Current Range has a Usable Tech [a usable tech is one that exists and the guts cost can be met]) AND (the Use Tech Wait Duration has Expired)
- If (Both Conditions) yes, then make a decision about attempting to use the tech at the current range
[Note: it is possible to use a tech in a region before reaching the targeted control area].- Determine the percent chance threshold for using the tech based on Personality, Tech Range, and Guts.
- Generate a random number and check the chance to be less than the threshold.
- If (Percent) yes, then check to see if the New Decision Duration Threshold has been exceeded and will change the monsters mind on using its tech.
- If (Change Mind) yes, then go to Step C.
- If (Change Mind) no, then set the Action State to NO DECISION, execute "Use Tech", and End.
- If (Percent) no, then continue to move to target range processing in Step B.3.
- If (Percent) yes, then check to see if the New Decision Duration Threshold has been exceeded and will change the monsters mind on using its tech.
- If (Either Conditions) no, then move to target range processing in Step B.3.
- If (Both Conditions) yes, then make a decision about attempting to use the tech at the current range
- If (State) no, then go to Step C.
- Move towards the target range
- If the monster’s current position is less than the target control range, then move backwards
- After moving, check if the monster is against the arena wall
- If (Wall) yes, then check if the monster wants to dash
- Set the percent chance threshold for dashing to 10%
- Generate a random number and check the chance to be less than the threshold
- If (Percent) yes, check if the monster meets all the dashing requirements
- If (Dash) yes, then set the Dash Range, set the Action State to DASH, Execute a dash and End.
- If (Dash) no, then set the Action State to NO DECISION and End.
- If (Percent) no, then set the Action State to NO DECISION and End.
- If (Percent) yes, check if the monster meets all the dashing requirements
- If (Wall) no, then keep the action state as MOVE TO TARGET RANGE and End.
- If (Wall) yes, then check if the monster wants to dash
- After moving, check if the monster is against the arena wall
- If the monster’s current position is greater than the target control range, then move forwards, keep the action state as MOVE TO TARGET RANGE and End.
- If the monster’s current position is within the target control range, then set the action state to NO DECISION, and move to Step C.
- If the monster’s current position is less than the target control range, then move backwards
- If (Duration Exceeded) yes, then check to see if the monster meets all the knockback requirements
- If (Knockback) yes, then make a decision about attempting to knockback
- Determine the percent chance threshold for knockback based on Personality
- Generate a random number and check the chance to be less than the threshold.
- If (Percent) yes, then set the Action State to NO DECISION, reset the New Decision Duration Timer, Execute a Knockback, Execute "Tech Selection" and End.
- If (percent) no, then go to step D.
- If (Knockback) no, then go to step D.
- If (Knockback) yes, then make a decision about attempting to knockback
- If (Duration Exceeded) no, then check to see if the Action State is MOVE FORWARD or MOVE BACKWARD
- If (MOVE) yes, then move accordingly, execute "Tech Selection", and End.
- If (MOVE) no, then execute "Tech Selection" and End.
- If (Both Conditions) yes, then make a decision about attempting to use the tech at the current range
- Determine the percent chance threshold for using the tech based on Personality, Tech Range, and Guts.
- Generate a random number and check the chance to be less than the threshold.
- If (Percent) yes, then set the Action State to NO DECISION, reset the New Decision Duration Timer, execute "Use Tech" and End.
- If (Percent) no, then go to Step E.
- If (Either Conditions) no, then go to Step E.
- Determine the percent chance threshold for moving forward and for moving backward based on Personality
- Generate a random number for both directions and check the chance to be less than either of the thresholds.
- If (Either Percent) yes, then check which percent move chance was met
- If (Both) yes, check to see which direction should be chosen
- Set the percent chance threshold to move forward to 50%
- Generate a random number and check the chance to be less than the threshold
- If (Percent) yes, then go to Step E.2.a.ii (Forward only)
- If (Percent) no, then go to Step E.2.a.iii (Backward only)
- If (Forward Only) yes, then set Action State to MOVE FORWARD, reset the New Decision Duration Timer, set the New Decision Duration Threshold from a randomly chosen value between minimum and maximum values based on Personality and Movement direction, execute "Tech Selection", and End.
- If (Backward Only) yes, then set Action State to MOVE BACKWARD, reset the New Decision Duration Timer, set the New Decision Duration Threshold from a randomly chosen value between minimum and maximum values based on Personality and Movement direction, execute "Tech Selection", and End.
- If (Both) yes, check to see which direction should be chosen
- If (Both Percent) no, then go to Step F if not confused; otherwise, Execute "Tech Selection" and End.
- If (Either Percent) yes, then check which percent move chance was met
- Set the percent chance threshold for dashing to 2%
- Generate a random number and check the chance to be less than the thresholds
- If (Percent) yes, check if the monster meets all the dashing requirements
- If (Dash) yes, then set the Dash Range, set the Action State to DASH, Execute a dash, Execute "Tech Selection" and End.
- If (Dash) no, then set the Action State to NO DECISION, Execute "Tech Selection" and End
- If (Percent) no, then go to Step G.
- If (Percent) yes, check if the monster meets all the dashing requirements
- Set the percent chance threshold for Targeting to 75%
- Generate a random number and check the chance to be less than the threshold
- If (Percent) yes, then check if (the Current Range is a Tech Range) and (the Current Range has Available Techs)
- If (Both Conditions) yes, then set the Action State to NO DECISION, Execute "Tech Selection" and End.
- If (Either Condition) no, then randomly set a Target Range from the Tech Ranges that have Techs, set the Action State to MOVE TO TARGET RANGE, reset the New Decision Duration Timer, Execute "Tech Selection" and End.
- If (Percent) no, then set the Action State to NO DECISION, Execute "Tech Selection" and End.
- If (Percent) yes, then check if (the Current Range is a Tech Range) and (the Current Range has Available Techs)
Use Tech Processing
- Check to see if the technique at the current range has any life steal or life recovery capability
- If (capability) yes, then check to see if starting life equals current life
- If (equal) yes, then attempt to select the previous tech at the current range if possible and End.
- If (equal) no, then go to step 2
- If (capability) no, then go to step 2
- If (capability) yes, then check to see if starting life equals current life
- Set the "Use Tech Wait Duration" to a random value between 1 1/6 and 3 seconds and go to step 3.
- Set the in game Use Tech flag that will cause the monster to attempt the technique at the current range.
Tech Selection Processing
Tech selection describes how the monster determines what techniques are selected for use in each of the tech ranges. The AI will first evaluate the techs at the current range, and then maybe move on to a different range for the next time Tech selection is executed.- Check if a decision will be made to select the previous tech at the currently selected range
- Determine the percent chance threshold for selecting the previous tech based on Personality.
- Generate a random number and check the chance to be less than the threshold
- If (Percent) yes, then select the previous tech if one exists and go to Step 2.
- If (Percent) no, then go to Step 2.
- Check if a decision will be made to select the next tech at the currently selected range
- Determine the percent chance threshold for selecting the next tech based on Personality.
- Generate a random number and check the chance to be less than the threshold
- If (Percent) yes, then select the next tech if one exists and go to Step 3.
- If (Percent) no, then go to Step 3.
- Check if a decision will be made to select a closer range
- Determine the percent chance threshold for selecting a closer range based on Personality.
- Generate a random number and check the chance to be less than the threshold
- If (Percent) yes, then select the next closest range (wrap around from Melee to Long), go to Step 4.
- If (Percent) no, then go to Step 4.
- Check if a decision will be made to select a farther range
- Determine the percent chance threshold for selecting a farther range based on Personality.
- Generate a random number and check the chance to be less than the threshold
- If (Percent) yes, then select the next farthest range (wrap around from Long to Melee).
- If (Percent) no, then do nothing.
Appendix A – Distance, Movement, Knockback, and Dashing
- Background on Distance and Formulas
- Comments on Movement Speed and Distance units
- Knockback Determination and Results
- Dash Determination and Results
A battle takes place in a fixed arena length. Each monster’s in-arena-position is considered where its back is currently at. The in-arena-position is in respect to the center of the arena, position 0. Each monster starts the battle at the same relative fixed position from the center. There is an area between the monsters that will be referred to as a dead zone. The monsters can never physically get closer than the dead zone to each other. Each monster has a base length that stays constant during its lifetime.
General Values – These are the values used to define the general setup for battle
- (AL) Arena Length: 1200.0 (-600.0 to 600.0)
- (M1P/MP) Monster 1 Position: Starting Position: -195.0
- (M2P/MP) Monster 2 Position: Starting Position: 195 .0
- (MS1/MS2) Monster Size: 65.0 (Reicubas), 65.0 (Thunder Killer), 60.0 (Suezo), 50.0 (Everyone Else)
- (MDZ) Dead Zone: 100.0
Formulas – These formulas help define how the ranges and controls are determined
- (MBD) Distance between Monsters from front including Dead Zone: (M1P - MS1) + (M2P - MS2)
- (MZD) Distance between Monsters from front excluding Dead Zone: (M1P - MS1) + (M2P - MS2) - MDZ
- (M1ED/MED) Monster 1 Distance from back to Arena Edge: 600 + M1P
- (M2ED/MED) Monster 2 Distance from back to Arena Edge: 600 - M2P
Technique Ranges – These are the ranges that techniques can be used in
- (MTR1/MTR) Monster Melee Range: 100 <= MBD < 180
- (MTR2/MTR) Monster Close Range: 180 <= MBD < 300
- (MTR3/MTR) Monster Middle Range: 300 <= MBD < 460
- (MTR4/MTR) Monster Long Range: 460 <= MBD < 660
- (MTRO/MTR) Monster Out of Range: MBD >= 660
Target Control Ranges – These are the ranges and values that monsters are controlled to
-
(MCR1/MCR) Monster Melee Controlled Range: 120 <= MBD <= 160
(MCR2/MCR) Monster Close Controlled Range: 210 <= MBD <= 270
(MCR3/MCR) Monster Mid Controlled Range: 300 <= MBD <= 420
(MCR4/MCR) Monster Long Controlled Range: 510 <= MBD <= 610
Knockback and Dash Ranges – These are the values that affect Knockback (Push) and Dash
(KRZ) Knockback Range Zone: 100 <= MBD <= 110 (MZD <= 10) | |
(D1R) Dash 1 Range - 180 <= MBD < 300 | (D1T) Dash 1 Range Target Position - MBD = 140 |
(D2R) Dash 2 Range - 300 <= MBD < 460 | (D2T) Dash 2 Range Target Position - MBD = 240 |
(D3R) Dash 3 Range - 460 <= MBD < 660 | (D3T) Dash 3 Range Target Position - MBD = 380 |
(D4R) Dash 4 Range - MBD >= 660 | (D4T) Dash 4 Range Target Position - MBD = 560 |
Comments on Movement Speed and Distance units (fun anecdote about movement)
Distance in the game is hard to relate to because we have no units to determine its length. For the purposes of this section though we will make an assumption that the units for distance are in meters. An average human man walks at a speed of 1.42 meters/second with a height of 1.765 meters, so a 1.24 height to walking speed ratio. If Gomora as defined by the Ultraman TV series was 40 meters tall, then we can make a guess that it would walk at a rate of 40 meters / 1.24 height to speed ratio to get a speed of 32.2 meters/second.
Let’s see how this relates to Gomora’s in game speed definition. Gomora moves at a rate of 2.2 distance/time. If we assume distance is in meters, then what is the time? Well the game does give us some information for this. Every time the monster moves, a frame passes by, and since the frame rate is at a speed of 30 frames per second as well all conversions from seconds to a time duration in the game are a multiplication of 30, we can safely assume and determine that if we multiply the movement speed by 30, we will get it in terms of distance per second. Since we assumed that distance was in meters and time was in terms of 1 frame, then translating 2.2 to usable units gives us 2.2 x 30 which equals 66 meters/second.
So, are we off on 66 meters/second in game movement versus 32.2 meters/second guesstimated walking speed for good old Gomora. I don’t think so, because if I was in a battle against some giant terrible monster, I think I would be moving twice as fast. At any rate, whatever distance units you would like to use will work, since we know the arena length, we can relate all movement to it. Below is a chart showing all the different movement speeds used by the game.
One final comment above movement speed before the chart: There are two defined movement speeds in the game, a forward movement and a backwards movement. All monsters have the same forward and backwards movement. Generated monsters can have a maximum of 4.0 and a minimum of 2.0 movement speed. Only Ultraman characters actually have a different forward and backwards movement. Ultraman forward movement is 5.2 and backwards movement is 2.0.
Category | Base Move Value | Movement per Sec. | % of Arena Length per Sec |
---|---|---|---|
Slow | 2 | 60 | 5.00% |
Slow | 2.1 | 63 | 5.30% |
Slow | 2.2 | 66 | 5.50% |
Slow | 2.3 | 69 | 5.80% |
Sluggish | 2.4 | 72 | 6.00% |
Sluggish | 2.5 | 75 | 6.30% |
Sluggish | 2.6 | 78 | 6.50% |
Normal | 2.7 | 81 | 6.80% |
Normal | 2.8 | 84 | 7.00% |
Normal | 2.9 | 87 | 7.30% |
Quick | 3 | 90 | 7.50% |
Quick | 3.1 | 93 | 7.80% |
Quick | 3.2 | 96 | 8.00% |
Fast | 3.3 | 99 | 8.30% |
Fast | 3.4 | 102 | 8.50% |
Fast | 3.5 | 105 | 8.80% |
Fast | 3.6 | 108 | 9.00% |
Fast | 3.7 | 111 | 9.30% |
Fast | 3.8 | 114 | 9.50% |
Fast | 3.9 | 117 | 9.80% |
Fast | 4 | 120 | 10.00% |
(Super) Fast | 5.2 | 156 | 13.00% |
Knockback Determination and Results
A knockback can occur if the rival monster’s back position is at least 80 away from the arena’s edge and the distance between the monsters is less than or equal to 110 MBD (10 MZD). If a knockback is executed, then the rival’s position knockback zone will be determined. The zone will be based upon the rival’s position from the arena’s edge as defined in the knock back distance definitions below. Once the zone is determined, then the knockback distance will be calculated. If the zone is 4, then the knockback distance will be randomly chosen from distances 2, 3, or 4. If the zone is 3, then the knockback distance will be randomly chosen between distances 2 or 3. If the zone is 2, then the knockback distance will be 2. If the zone is 1, then the knockback distance will be the rival’s distance from the edge.
Knock Back Quick Reference Ranges - These are the values that define Knockback | |
---|---|
(KRZ) Knockback Range Zone: MBD <= 110 | (RPKZ) Rival Position Knockback Zone: MED > 80 |
(KD1) Knockback Distance 1: MED | (RPZ1) Rival Position Zone 1: MED <= 240 |
(KD1) Knockback Distance 2: 230 (19.2% of Arena) | (RPZ2) Rival Position Zone 2: 240 < MED <= 440 |
(KD2) Knockback Distance 3: 430 (35.8% of Arena) | (RPZ3) Rival Position Zone 3: 440 < MED <= 640 |
(KD3) Knockback Distance 4: 630 (52.5% of Arena) | (RPZ4) Rival Position Zone 4: MED > 640 |
Dash Determination and Results A dash can occur if the monster has at least 10 guts and is in Tech Range 2, 3, 4 or Out of Range. If a dash is executed, then the monster will lose 10 guts and increase its movement speed to 3x its normal speed and move until it is within 10 of the mid-point of the next closest range. To maximize the distance gained, it is best to wait until you are in the back half of the range.
Appendix B – Monster Personality Percentages
Personality | Use Tech < 50 Guts | Use Tech >= 50 Guts | Knock Back |
Range Select | Tech Select | Move Fwd |
Fwd Min |
Fwd Max |
Move Bwd |
Bwd Min |
Bwd Max |
||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
TR1 | TR2 | TR3 | TR4 | TR1 | TR2 | TR3 | TR4 | Closer | Farther | Next | Prev | ||||||||
% | % | % | % | % | % | % | % | % | % | % | % | % | % | Sec | Sec | % | Sec | Sec | |
Brave | 40 | 40 | 40 | 40 | 40 | 40 | 40 | 40 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 20 | 0.75 | 1 | 15 | 0.75 | 1 |
Calm | 5 | 5 | 10 | 30 | 5 | 5 | 10 | 60 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 10 | 0.75 | 1 | 30 | 0.75 | 1 |
Carefree | 5 | 5 | 30 | 5 | 5 | 5 | 60 | 5 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 13 | 0.75 | 1 | 15 | 0.75 | 1 |
Cautious | 1 | 1 | 1 | 1 | 20 | 20 | 20 | 20 | 12 | 1.75 | 1.75 | 2.25 | 2.25 | 13 | 0.75 | 1 | 17 | 0.75 | 1 |
Cool | 5 | 5 | 5 | 5 | 10 | 10 | 10 | 10 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 10 | 0.75 | 1 | 10 | 0.75 | 1 |
Earnest | 15 | 15 | 15 | 15 | 50 | 50 | 50 | 50 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 15 | 0.75 | 1 | 15 | 0.75 | 1 |
Easygoing | 5 | 5 | 5 | 5 | 7 | 7 | 7 | 7 | 10 | 1.05 | 1.05 | 0.75 | 0.75 | 4 | 0.75 | 1 | 4 | 0.75 | 1 |
Fiery | 20 | 20 | 7 | 7 | 40 | 40 | 7 | 7 | 2 | 2.45 | 2.45 | 2.25 | 2.25 | 30 | 0.75 | 1.2 | 10 | 0.75 | 0.9 |
Honest | 15 | 15 | 15 | 15 | 30 | 30 | 30 | 30 | 10 | 2.5 | 2.5 | 2 | 2 | 10 | 0.75 | 1 | 10 | 0.75 | 1 |
Hot-Cold | 50 | 20 | 5 | 5 | 50 | 20 | 5 | 5 | 15 | 2.45 | 2.45 | 2.25 | 2.25 | 5 | 0.75 | 1 | 15 | 0.75 | 1 |
Lazy | 3 | 3 | 3 | 3 | 5 | 5 | 5 | 5 | 5 | 0.35 | 0.35 | 0.75 | 0.75 | 2 | 0.75 | 1 | 2 | 0.75 | 1 |
Liberated | 20 | 30 | 6 | 6 | 6 | 6 | 20 | 15 | 8 | 3.15 | 3.15 | 1.5 | 1.5 | 20 | 0.75 | 1 | 20 | 0.75 | 1 |
Lively | 40 | 40 | 40 | 40 | 50 | 50 | 50 | 50 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 30 | 0.75 | 1 | 30 | 0.75 | 1 |
Naughty | 7 | 30 | 5 | 5 | 7 | 60 | 5 | 5 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 15 | 0.75 | 1 | 13 | 0.75 | 1 |
Nervous | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 50 | 10 | 3.5 | 3.5 | 7.5 | 7.5 | 30 | 0.75 | 1 | 30 | 0.75 | 1 |
Obedient | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 7 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 15 | 0.75 | 1 | 15 | 0.75 | 1 |
Prodigy | 10 | 10 | 10 | 10 | 20 | 20 | 20 | 20 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 15 | 0.75 | 1 | 15 | 0.75 | 1 |
Rivalrous | 40 | 40 | 40 | 40 | 5 | 5 | 5 | 5 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 15 | 0.75 | 1 | 15 | 0.75 | 1 |
Rowdy | 30 | 30 | 5 | 5 | 60 | 60 | 5 | 5 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 18 | 0.75 | 1.2 | 15 | 0.75 | 1 |
Selfish | 30 | 30 | 30 | 30 | 30 | 30 | 30 | 30 | 10 | 5.25 | 5.25 | 11.25 | 11.25 | 15 | 0.75 | 1 | 15 | 0.75 | 1 |
Slow | 5 | 5 | 5 | 5 | 7 | 7 | 7 | 7 | 5 | 1.75 | 1.75 | 1.5 | 1.5 | 10 | 0.75 | 1 | 10 | 0.75 | 1 |
Sociable | 15 | 15 | 4 | 4 | 40 | 40 | 4 | 4 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 15 | 0.75 | 1 | 5 | 0.75 | 1 |
Spoiled | 15 | 15 | 15 | 10 | 30 | 30 | 30 | 20 | 5 | 2.45 | 2.45 | 2.25 | 2.25 | 20 | 0.75 | 1.5 | 15 | 0.75 | 1 |
Stubborn | 50 | 5 | 5 | 5 | 50 | 5 | 5 | 5 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 25 | 0.9 | 1.5 | 10 | 0.75 | 1 |
Tenacious | 20 | 20 | 20 | 20 | 40 | 40 | 40 | 40 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 15 | 0.75 | 1 | 15 | 0.75 | 1 |
Timid | 5 | 5 | 5 | 5 | 7 | 7 | 7 | 7 | 10 | 2.45 | 2.45 | 2.25 | 2.25 | 5 | 0.75 | 1 | 30 | 0.75 | 1.2 |
Whimsical | 5 | 10 | 10 | 30 | 20 | 5 | 15 | 5 | 8 | 3.5 | 3.5 | 3.75 | 3.75 | 15 | 0.5 | 1 | 15 | 0.5 | 1 |
Appendix C – Personality Percentage Observations
Sortable Table: Click headers!Category | Personality | Observation |
---|---|---|
Changes Tech Select Ranges the Most | Selfish | 2 times more than average |
Changes Tech Select Ranges the Least | Lazy | 7 times less than average |
Changes Tech Selections the Most | Selfish | 4 times more than average |
Changes Tech Selections the Least | Easygoing / Lazy | 3.5 times less than average |
Move Forward the Most | Fiery / Lively / Nervous | 2 times more than average |
Move Forward the Least | Lazy | 7.5 times less than average |
Move Backward the Most | Calm / Lively / Nervous / Timid | 2 times more than average |
Move Backward the Least | Lazy | 7.5 times less than average |
Makes New Decisions the Most (Forward Move) | Whimsical | 1.2 times more than average |
Makes New Decisions the Least (Forward Move) | Stubborn | 1.3 times less than average |
Makes New Decisions the Most (Backward Move) | Whimsical | 1.1 times more than average |
Makes New Decisions the Least (Backward Move) | Timid | 1.1 times less than average |
Knockback the Most | Hot-Cold | 1.5 times more than average |
Knockback the Least | Fiery | 4.5 times less than average |
Melee Use Tech The Most < 50 Guts | Hot-Cold / Nervous / Stubborn | 2.6 times more than average |
Melee Use Tech The Least < 50 Guts | Cautious | 19 times less than average |
Close Use Tech The Most < 50 Guts | Nervous | 2.8 times more than average |
Close Use Tech The Least < 50 Guts | Cautious | 17.6 times less than average |
Mid Use Tech The Most < 50 Guts | Nervous | 3.4 times more than average |
Mid Use Tech The Least < 50 Guts | Cautious | 14.5 times less than average |
Long Use Tech The Most < 50 Guts | Nervous | 3.3 times more than average |
Long Use Tech The Least < 50 Guts | Cautious | 14.9 times less than average |
Melee Use Tech The Most >= 50 Guts | Rowdy | 2.3 times more than average |
Melee Use Tech The Least >= 50 Guts | Calm / Carefree / Lazy / Rivalrous | 5.1 times less than average |
Close Use Tech The Most >= 50 Guts | Rowdy / Naughty | 2.5 times more than average |
Close Use Tech The Least >= 50 Guts | Calm / Carefree / Lazy / Rivalrous / Stubborn / Whimsical | 4.8 times less than average |
Mid Use Tech The Most >= 50 Guts | Carefree | 3 times more than average |
Mid Use Tech The Least >= 50 Guts | Sociable | 5 times less than average |
Long Use Tech The Most >= 50 Guts | Calm | 3.1 times more than average |
Long Use Tech The Least >= 50 Guts | Sociable | 4.7 times less than average |