User:Kimbles/Medarot 1 Hacking Notes

From Medapedia
Jump to navigationJump to search

Just some notes about the inner workings of Medarot 1.

I'd love to make a translation patch for this, but it's definitely not happening any time soon!

Subpages[edit]

Bank map[edit]

For those interested in where things are organized in the ROM.

Legend:

  • Blue: Text or text pointers
  • Purple: Graphics

Parts data[edit]

(These are my notes from when I ripped the stats here.)

Sadly, this game isn't nearly as easy to work with as the others. ._. The stat screens give you much less info, and non-attacking actions aren't even named... It turns out this isn't just bad presentation, but the game basically doesn't define different actions as neatly as the later games.

The parts are listed in the same order as the Medarot list, with all 60 head parts followed by all 60 right arm parts, then left arms, then legs. The addresses are as follows:

Heads:    0x5C000
Rights:   0x5C3D0
Lefts:    0x5C7A0
Legs:     0x5CB70
End:      0x5CF30

The part names and model numbers are found elsewhere, but don't seem to have any other data stored with them... This should be everything, aside from whether the part is male or female (which I haven't been able to find).

Heads/Arms[edit]

Each head/arm part has 16 whole bytes, but a lot of the effects are invisible.

Format:
 /A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/

A = Attribute
B = Action
C = Armor
D = Skill
E = Success
F = Power
G = Pierce
H = Uses/Charge
I = Cooldown (for arms)
J = Flag (adds to Attack stat?)
K = Flag (adds to Defense stat?)
L = Flag (adds to Special stat?)
M = Battle animation
N = Preferred "effect flag" - when targeting
O = "Effect flag" - when being targeted
P = Attack name
  • A - Decides the attribute. There are 28 of these (00-1B), but some are for special medals and aren't used on parts. (By changing this, you could edit a part to be compatible with the cat and ? medals.)
  • B - Decides the action effect as well as the part's description. These range from 00-37 for heads and arms. (Full list below)
  • C - This decides the armor value. The maximum is 255 (FF).
  • D - This decides the skill as well as the "mode" the part uses in battle. Pretty mysterious. The possible values are 01-0F:
  01: Strike  (attack)       02: Berserk (unused)
  03: Strike  (unused)       04: Berserk (attack)
  05: Shoot   (attack)       06: Snipe   (attack)
  07: Support (speed up)     08: Protect (defend)
  09: Protect (traps)        0A: Heal    (status)
  0B: Heal    (recovery)     0C: Support (scan)
  0D: Support (conceal)      0E: Other   (transform)
  0F: Other   (negate)

(They seem to affect which messages it displays and whether it displays an attack name or animation when used.)

  • E - This number decides the success value (ranges from 0-99, or 00-63 in hex).
  • F - Likewise, decides the power value.
  • G - This decides whether or not the part has the "pierce" effect. It's always either 00 (no) or 0B (yes).
  • H - For heads, this is the number of uses. For arms it's the charge value.
  • I - For heads, this is always 00. For arms it's the cooldown value.
  • J, K, L - Always either 00 or 01. (One is 01, the other two are 00.) I haven't confirmed this but it appears to be linked to whether the part falls under the Attack, Defense, or Special category. (Apparently, using sets of parts with matching categories affects the Medal's Attack/Defense/Special stats, which in turn decides how it behaves in battle in some obscure way.) Supposedly the category is supposed to be directly tied to the part's attribute though, so really I don't see why they needed a separate value for it, let alone three. o_O
  • M - For parts with animations, this decides which animation it uses (ranging from 00-16). Always 00 for parts without animations.
  • N - Apparently this searches the enemy parts for a specific effect which it will try harder to aim for (For example, Anti-Air attacks will usually aim for flying Medarots.)
  • O - Puts a marker for a specific effect on the part, so that parts with a matching value in N will aim for it more?
  • P - For attacking parts, this decides the attack name it shows in-battle (ranging from 00-12). Tends to be 00 for non-attacking parts.

(Many thanks go out to this Japanese page for explaning what J, K, L, N, and O do, otherwise I never would have figured it out!)

Legs[edit]

These are a bit more straightforward, but still take 16 bytes.

Format:
 /A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/

A = Attribute
B = Leg type
C = Armor
D = Speed
E = Mobility
F = Fighting
G = Shooting
H = Scan
I = Conceal
J = Always 00
K = Always 00
L = Always 00
M = Always 00
N = ???
O = ???
P = Always 00
  • A - Same as above.
  • B - Decides the Leg type. There are 7 of them, ranging from 3D (Flying) to 43 (Water).
  • C, D, E, F, G, H - These are numeric stats ranging from 0 to 255 (FF in hex).
  • I - This is also a numeric stat (Conceal, which decides how much of a bonus you get from using Conceal parts), but it's not listed on the stats page like the others. (If you transfer the parts over into Medarot 2 where it shows the Conceal stat, you can see that they use the exact same numbers.) I have no idea why it's hidden in this game, maybe they just ran out of space on the stat page. :P
  • N, O - These only have non-00 values on Flying and Water leg parts, which implies it has something to do with the effects of Anti-Air and Anti-Sea.
  • J, K, L, M, P - These seem to have no use on leg parts and are always 00.

That's it!

Action list[edit]

This is a full list of actions and the descriptions associated with them. Although the game shows descriptions for every part, some descriptions are used for more than one attack, and actual attack names are only shown when the part is used in-battle.

The "Hex" column here refers to the value for "B" on head and arm parts above. The attack name (for attacking actions) is decided by the value for "P", regardless of which attack is actually being done. The names for non-attacking actions on this list are just the standard names used on this wiki, which mostly come from the later games.

Actions 1F, 21, 24, 25, 27, 2B, 2C, and 2F-36 aren't used, and their associated descriptions are blank.

* Samurai's beam swords use action 02 (Laser), but the attack name is set to "Beam". This actually makes a slight difference, because Beam attacks can be completely blocked by Negate Optical, but Laser attacks can only have their damage reduced by 3/4. (Basically, it's slightly weaker than it claims to be.)

** Action 1B isn't used by any parts in the game, but it's associated with the only unused part description. Based on the description and its placement on the list, it was probably meant to be a "Negate All" action, and maybe removed because it made the other Negate actions obsolete.