360haven works best with JavaScript enabled
[Tutorial] Simple Hex Modding Final Fantasy XIII-3: Lightning Returns - Page 14
Loading
Page 14 of 21 FirstFirst ... 4910111213141516171819 ... LastLast
Results 105 to 112 of 161
  1. #105
    Eternal

    Re: Simple Hex Modding Final Fantasy XIII-3: Lightning Returns

    Here is an explanation on how to edit all aspects of abilities. I am using HxD editor, so the explanation is based off that. I feel that an example would be best, so here it is:


    Example:
    Element lv 2 to Elementa Lv 5 (8.9 modifer)

    Element looks like this: mc900_00_10...mc900_00......wear_mg180........ÿÿ ÿû
    6D 63 39 30 30 5F
    30 30 5F 31 30 00 00 00 6D 63 39 30 30 5F 30 30
    00 00 00 00 00 00 77 65 61 72 5F 6D 67 31 38 30
    00 00 00 00 00 02 00 00 FF FF FF FB



    Now, the important offsets are the last few. In the example above:
    wear_mg180 = auto ability, and is 6 places after mc900_00
    00 = Unequipped. 01 means equipped.
    02 = Level 2
    00 00 = ATB cost (0 means it is the default value, like 40 ATB for Elementa)
    FF FF FF FB = Damage modifier (Every modifier worked of a base value)


    Now to change this to Elementa lv 5 with 8.9 modifer and 25 ATB cost, change as below:

    mc900_00_10...mc900_00 TO mc910_00_10...mc910_00
    wear_mg180 TO aa_rat300_00 (Elemental Chaser. Change this to whatever you want as the auto ability from the list in my previous posts)
    02 TO 05
    00 00 TO F1 00 (F1 is 15 below 0, meaning the ATB cost will reduce by 15 from 40 ATB to 25 ATB)
    FF FF FF FB = 00 00 00 3D (See explanation below)

    Now each ability has a base modifier. Elementa has 2.8 as the base. Each ability also has an increment value, and for Elementa it is 0.1. So basically, to get from 2.8 to 8.9 in 0.1 increments, it would take 61 increments. 61 in hex is 3D. That's what you change the modifier to.

    With this you should be able to change pretty much every ability as long as you know the base and the increment. One of the users in Echelo's thread shared the details of bases and increments, which I'm quoting word to word below:

    Code:
    at010_00 Attack.               Base Value: 1.00
    at010_10 Flamestrike.          Base Value: 0.85
    at010_20 Frost Strike.         Base Value: 0.85
    at010_30 spark strike.         Base Value: 0.85
    at010_50 Gale Strike.          Base Value: 0.85
    at060_00 Light Slash.          Base Value: 0.55
    at130_00 Beat Down.            Base Value: 0.75
    at150_00 Fatal Sweep.          Base Value: 1.25
    at160_00 Charged Strike.       Base Value: 1.00
    at520_00 Blitz.                Base Value: 1.80
    at620_00 Area Sweep.           Base Value: 0.30
    at620_10 Heat Blitz.           Base Value: 1.50
    at620_20 Ice Blitz.            Base Value: 1.50
    at620_30 Electric Blitz.       Base Value: 1.50
    at620_50 Aero Blitz.           Base Value: 1.50  
    at700_00 Punt.                 Base Value: 0.25
    at800_00 Heavy Slash.          Base Value: 4.00
    
    
    ma000_00 Ruin.                 Base Value: 0.90
    ma020_00 Ruinga.               Base Value: 3.00
    ma100_00 Magnet.               Base Value: 0.12    Increment 0.04
    
    mb000_00 Fire.                 Base Value: 0.85
    mb010_00 Fira.                 Base Value: 1.20
    mb020_00 Firaga.               Base Value: 3.50
    mb030_00 Flare.                Base Value: 20.00
    mb100_00 Blizzard.             Base Value: 0.85
    mb110_00 Blizzara.             Base Value: 1.20
    mb120_00 Blizzaga.             Base Value: 3.50
    mb130_00 Chill.                Base Value: 20.00
    mb200_00 Thunder.              Base Value: 0.85
    mb210_00 Thundara.             Base Value: 1.20    Increment 0.04
    mb220_00 Thundaga.             Base Value: 3.50    Increment 0.08
    mb230_00 Surge.                Base Value: 20.00
    mb400_00 Aero.                 Base Value: 0.85
    mb410_00 Aerora.               Base Value: 1.20    Increment 0.04
    mb420_00 Aeroga.               Base Value: 3.50    Increment 0.08
    mb430_00 Tornado.              Base Value: 20.00
    
    mc100_00 Flamespark.           Base Value: 1.20    Increment 0.02
    mc110_00 Flamesparka.          Base Value: 2.20    Increment 0.05  
    mc200_00 Firestorm.            Base Value: 1.20    Increment 0.02
    mc210_00 Firestorma.           Base Value: 2.20    Increment 0.05  
    mc300_00 Icespark.             Base Value: 1.20    Increment 0.02
    mc310_00 Icesparka.            Base Value: 2.20    Increment 0.05  
    mc400_00 Icestorm.             Base Value: 1.20    Increment 0.02
    mc410_00 Icestorma.            Base Value: 2.20    Increment 0.05  
    mc900_00 Element.              Base Value: 1.40    Increment 0.04
    mc910_00 Elementa.             Base Value: 2.80    Increment 0.10
    ms910_00 Elementaga            Base Value: 20.00
    
    av010_00 Evade.                Base Value: 0
    
    ac300_00 ATB Charge.           Base Value: -100
    
    ga010_00 Counterblow.          Base Value: 0
    ga110_00 Counterspell.         Base Value: 0
    
    gd010_00 Steelguard.           Base Value: 25
    gd020_00 Guard.                Base Value: 40
    gd030_00 Light Guard.          Base Value: 25
    gd040_00 Heavy Guard.          Base Value: 50
    gd110_00 Mediguard.            Base Value: 25
    gd510_00 NulAll Guard          Base Value: 25
    gd810_00 Heroic Guard          Base Value: 99
    
    mg000_00 Deprotect.            Base Value: 60
    mg010_00 Deshell.              Base Value: 60
    mg020_00 Poison.               Base Value: 30
    mg030_00 Imperil.              Base Value: 60
    mg200_00 Deprotega.            Base Value: 30
    mg210_00 Deshellga.            Base Value: 30
    mg220_00 Poisonga.             Base Value: 15
    mg230_00 Imperilga.            Base Value: 30
    mg240_00 Dispel.               Base Value: 0
    mg250_00 Dispelga.             Base Value: 0
    mg500_00 Slow.                 Base Value: 30
    mg530_00 Curse.                Base Value: 30
    mg560_00 Debrave.              Base Value: 60
    mg570_00 Defaith.              Base Value: 60
    mg700_00 slowga.              Base Value: 15
    mg730_00 Cursega.              Base Value: 15
    mg760_00 Debravega.            Base Value: 30
    mg770_00 Defaithga.            Base Value: 30
    mg900_00 Disaster.             Base Value: 20
    
    They work just like I posted above; so, using Attack as an example, a strength value of 00 00 00 01 would give you a strength modifier of 1.01, a strength value of FF FF FF FF would give you a strength modifier of 0.99. Hopefully, this will make it easier to add ability modification to the editor :).
    
    EDIT: I've added the rest of the abilities. Almost all of them increase or decrease in strength in steps of 0.01 (so 00 00 00 01 is a strength increment of 0.01, for example), except for certain, multi-hit abilities, which have different increments (taking Elementa as an example, a value of 00 00 00 01 increases strength by 0.1 from the base value). I've made a note in the list for every such exception that I noticed.
    
    Guard abilities use increments of 1% (resistance), ailment abilities increase in steps of 1 (duration).

    You should be able to edit any and all abilities using the above information. Let me know if you have further questions.

  2. #106
    Junior Member
    YazanHikary is offline
    Join Date : Feb 2014
    Location : Sydney, Australia, Australia
    Posts : 5
    Array

    Re: Simple Hex Modding Final Fantasy XIII-3: Lightning Returns

    Quote Originally Posted by Eternal View Post
    Here is an explanation on how to edit all aspects of abilities. I am using HxD editor, so the explanation is based off that. I feel that an example would be best, so here it is:


    Example:
    Element lv 2 to Elementa Lv 5 (8.9 modifer)

    Element looks like this: mc900_00_10...mc900_00......wear_mg180........ÿÿ ÿû
    6D 63 39 30 30 5F
    30 30 5F 31 30 00 00 00 6D 63 39 30 30 5F 30 30
    00 00 00 00 00 00 77 65 61 72 5F 6D 67 31 38 30
    00 00 00 00 00 02 00 00 FF FF FF FB



    Now, the important offsets are the last few. In the example above:
    wear_mg180 = auto ability, and is 6 places after mc900_00
    00 = Unequipped. 01 means equipped.
    02 = Level 2
    00 00 = ATB cost (0 means it is the default value, like 40 ATB for Elementa)
    FF FF FF FB = Damage modifier (Every modifier worked of a base value)


    Now to change this to Elementa lv 5 with 8.9 modifer and 25 ATB cost, change as below:

    mc900_00_10...mc900_00 TO mc910_00_10...mc910_00
    wear_mg180 TO aa_rat300_00 (Elemental Chaser. Change this to whatever you want as the auto ability from the list in my previous posts)
    02 TO 05
    00 00 TO F1 00 (F1 is 15 below 0, meaning the ATB cost will reduce by 15 from 40 ATB to 25 ATB)
    FF FF FF FB = 00 00 00 3D (See explanation below)

    Now each ability has a base modifier. Elementa has 2.8 as the base. Each ability also has an increment value, and for Elementa it is 0.1. So basically, to get from 2.8 to 8.9 in 0.1 increments, it would take 61 increments. 61 in hex is 3D. That's what you change the modifier to.

    With this you should be able to change pretty much every ability as long as you know the base and the increment. One of the users in Echelo's thread shared the details of bases and increments, which I'm quoting word to word below:

    Code:
    at010_00 Attack.               Base Value: 1.00
    at010_10 Flamestrike.          Base Value: 0.85
    at010_20 Frost Strike.         Base Value: 0.85
    at010_30 spark strike.         Base Value: 0.85
    at010_50 Gale Strike.          Base Value: 0.85
    at060_00 Light Slash.          Base Value: 0.55
    at130_00 Beat Down.            Base Value: 0.75
    at150_00 Fatal Sweep.          Base Value: 1.25
    at160_00 Charged Strike.       Base Value: 1.00
    at520_00 Blitz.                Base Value: 1.80
    at620_00 Area Sweep.           Base Value: 0.30
    at620_10 Heat Blitz.           Base Value: 1.50
    at620_20 Ice Blitz.            Base Value: 1.50
    at620_30 Electric Blitz.       Base Value: 1.50
    at620_50 Aero Blitz.           Base Value: 1.50  
    at700_00 Punt.                 Base Value: 0.25
    at800_00 Heavy Slash.          Base Value: 4.00
    
    
    ma000_00 Ruin.                 Base Value: 0.90
    ma020_00 Ruinga.               Base Value: 3.00
    ma100_00 Magnet.               Base Value: 0.12    Increment 0.04
    
    mb000_00 Fire.                 Base Value: 0.85
    mb010_00 Fira.                 Base Value: 1.20
    mb020_00 Firaga.               Base Value: 3.50
    mb030_00 Flare.                Base Value: 20.00
    mb100_00 Blizzard.             Base Value: 0.85
    mb110_00 Blizzara.             Base Value: 1.20
    mb120_00 Blizzaga.             Base Value: 3.50
    mb130_00 Chill.                Base Value: 20.00
    mb200_00 Thunder.              Base Value: 0.85
    mb210_00 Thundara.             Base Value: 1.20    Increment 0.04
    mb220_00 Thundaga.             Base Value: 3.50    Increment 0.08
    mb230_00 Surge.                Base Value: 20.00
    mb400_00 Aero.                 Base Value: 0.85
    mb410_00 Aerora.               Base Value: 1.20    Increment 0.04
    mb420_00 Aeroga.               Base Value: 3.50    Increment 0.08
    mb430_00 Tornado.              Base Value: 20.00
    
    mc100_00 Flamespark.           Base Value: 1.20    Increment 0.02
    mc110_00 Flamesparka.          Base Value: 2.20    Increment 0.05  
    mc200_00 Firestorm.            Base Value: 1.20    Increment 0.02
    mc210_00 Firestorma.           Base Value: 2.20    Increment 0.05  
    mc300_00 Icespark.             Base Value: 1.20    Increment 0.02
    mc310_00 Icesparka.            Base Value: 2.20    Increment 0.05  
    mc400_00 Icestorm.             Base Value: 1.20    Increment 0.02
    mc410_00 Icestorma.            Base Value: 2.20    Increment 0.05  
    mc900_00 Element.              Base Value: 1.40    Increment 0.04
    mc910_00 Elementa.             Base Value: 2.80    Increment 0.10
    ms910_00 Elementaga            Base Value: 20.00
    
    av010_00 Evade.                Base Value: 0
    
    ac300_00 ATB Charge.           Base Value: -100
    
    ga010_00 Counterblow.          Base Value: 0
    ga110_00 Counterspell.         Base Value: 0
    
    gd010_00 Steelguard.           Base Value: 25
    gd020_00 Guard.                Base Value: 40
    gd030_00 Light Guard.          Base Value: 25
    gd040_00 Heavy Guard.          Base Value: 50
    gd110_00 Mediguard.            Base Value: 25
    gd510_00 NulAll Guard          Base Value: 25
    gd810_00 Heroic Guard          Base Value: 99
    
    mg000_00 Deprotect.            Base Value: 60
    mg010_00 Deshell.              Base Value: 60
    mg020_00 Poison.               Base Value: 30
    mg030_00 Imperil.              Base Value: 60
    mg200_00 Deprotega.            Base Value: 30
    mg210_00 Deshellga.            Base Value: 30
    mg220_00 Poisonga.             Base Value: 15
    mg230_00 Imperilga.            Base Value: 30
    mg240_00 Dispel.               Base Value: 0
    mg250_00 Dispelga.             Base Value: 0
    mg500_00 Slow.                 Base Value: 30
    mg530_00 Curse.                Base Value: 30
    mg560_00 Debrave.              Base Value: 60
    mg570_00 Defaith.              Base Value: 60
    mg700_00 slowga.              Base Value: 15
    mg730_00 Cursega.              Base Value: 15
    mg760_00 Debravega.            Base Value: 30
    mg770_00 Defaithga.            Base Value: 30
    mg900_00 Disaster.             Base Value: 20
    
    They work just like I posted above; so, using Attack as an example, a strength value of 00 00 00 01 would give you a strength modifier of 1.01, a strength value of FF FF FF FF would give you a strength modifier of 0.99. Hopefully, this will make it easier to add ability modification to the editor :).
    
    EDIT: I've added the rest of the abilities. Almost all of them increase or decrease in strength in steps of 0.01 (so 00 00 00 01 is a strength increment of 0.01, for example), except for certain, multi-hit abilities, which have different increments (taking Elementa as an example, a value of 00 00 00 01 increases strength by 0.1 from the base value). I've made a note in the list for every such exception that I noticed.
    
    Guard abilities use increments of 1% (resistance), ailment abilities increase in steps of 1 (duration).

    You should be able to edit any and all abilities using the above information. Let me know if you have further questions.
    OMG THANK YOU A LOT :D AMAZING JOB THANK YOUUUUU :D , If i wanna change to like 1324x damage how to do it , which to change and how ?? maybe i didn't understand it fully
    Downloads : 18 || Uploads : 0 || Rep Power : 3787 || Posts : 5 || Thanks : 2 || Thanked 0 Times in 0 Posts


    Nobody's Perfect , Just A Hint , I Am No Body

  3. #107
    Junior Member
    tsumewulf is offline
    Join Date : Sep 2012
    Location : the moon?
    Posts : 5
    Array

    Re: Simple Hex Modding Final Fantasy XIII-3: Lightning Returns

    ok, so i'm trying to mod my soul seeds so i don't have to grind for them for both the achievement/trophy in the game & the elixir yet when i follow this guide & hex edit the amount of soul seeds i have....it shows up in game but does not pop the achievement/trophy for 50 soul seeds collected but the number continues to increase like normal when i pick up a soul seed so did i do something wrong when hex editing or is it impossible to hex edit to get the soul seed achievement/trophy easier?

  4. #108
    Junior Member
    NobodySociety is offline
    Join Date : Dec 2011
    Posts : 6
    Array

    Re: Simple Hex Modding Final Fantasy XIII-3: Lightning Returns

    Quote Originally Posted by tsumewulf View Post
    ok, so i'm trying to mod my soul seeds so i don't have to grind for them for both the achievement/trophy in the game & the elixir yet when i follow this guide & hex edit the amount of soul seeds i have....it shows up in game but does not pop the achievement/trophy for 50 soul seeds collected but the number continues to increase like normal when i pick up a soul seed so did i do something wrong when hex editing or is it impossible to hex edit to get the soul seed achievement/trophy easier?
    Have you taken them to one of the Soul Seed people? When I modded them and went to one of the people it went through all of the awards, and when the Elixir came up it popped the achievement.

    EDIT: Wait nevermind I didn't realize that there was two achievements tied to soul seeds.
    Last edited by NobodySociety; 04-15-2014 at 05:02 AM.

  5. #109
    Gfx Artist
    Rpg_Fan

    Ryudo is offline
    Join Date : Dec 2010
    Location : Netherlands
    Posts : 925
    Array

    Re: Simple Hex Modding Final Fantasy XIII-3: Lightning Returns

    There is most likely another hidden value that keeps track of how many you 'picked up'. Just adding them to the Inventory doesn't work for the 50 Seeds collected Achievement, because it doesn't register as you having picked up the items.

    For the Elixir it's a different story, because you just have to exchange 100 for one (80 on NG+).
    Downloads : 25 || Uploads : 1 || Rep Power : 5928 || Posts : 925 || Thanks : 86 || Thanked 234 Times in 134 Posts



  6. #110
    Junior Member
    tsumewulf is offline
    Join Date : Sep 2012
    Location : the moon?
    Posts : 5
    Array

    Re: Simple Hex Modding Final Fantasy XIII-3: Lightning Returns

    ok so i was going to make it to where i only had to kill the last one of a few monsters in game....i found the offset list for monsters & was wondering if there were any others i have to edit besides the one in the list because i just want to kill the last ones.

  7. #111
    lobotomizedgod

    Re: Simple Hex Modding Final Fantasy XIII-3: Lightning Returns

    Thank you Ryudo for starting me chasing this rabbit down the hole. I think I got the complete list of Auto-Abilities now.
    Ryudo was missing a few items in his table so rather than just post the missing ones, I'm posting the whole table.

    For your rabbid consumption:

    Abilities
    Code:
    Abilities Offset: 3632C
    mb400_00_40 = Aero (Level 5)      Base Power: 1.90     Increment: 0.05     Legit Max Power: 2.55 (00 00 00 AA)
    mb400_00_30 = Aero (Level 4)      Base Power: 1.35     Increment: 0.05     Legit Max Power: 1.85 (00 00 00 64)
    mb400_00_20 = Aero (Level 3)      Base Power: 0.95     Increment: 0.05     Legit Max Power: 1.3 (00 00 00 2D)
    mb400_00_10 = Aero (Level 2)      Base Power: 0.65     Increment: 0.05     Legit Max Power: 0.9 (00 00 00 05)
    mb400_00_00 = Aero (Level 1)      Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.6
    at620_50_40 = Aero Blitz (Level 5)     Base Power: 3.35     Increment: 0.1     Legit Max Power: 4.45 (00 00 01 27)
    at620_50_30 = Aero Blitz (Level 4)     Base Power: 2.45     Increment: 0.1     Legit Max Power: 3.25 (00 00 00 AF)
    at620_50_20 = Aero Blitz (Level 3)     Base Power: 1.85     Increment: 0.1     Legit Max Power: 2.35 (00 00 00 55)
    at620_50_10 = Aero Blitz (Level 2)     Base Power: 1.25     Increment: 0.1     Legit Max Power: 1.75 (00 00 00 19)
    at620_50_00 = Aero Blitz (Level 1)     Base Power: ?.??     Increment: 0.1     Legit Max Power: 1.15
    mb420_00_40 = Aeroga (Level 5)     Base Power: 8.14     Increment: 0.32     Legit Max Power: 10.7 (00 00 00 5A)
    mb420_00_30 = Aeroga (Level 4)     Base Power: 5.58     Increment: 0.32     Legit Max Power: 7.82 (00 00 00 36)
    mb420_00_20 = Aeroga (Level 3)     Base Power: 4.14     Increment: 0.16     Legit Max Power: 5.42 (00 00 00 18)
    mb420_00_10 = Aeroga (Level 2)     Base Power: 2.86     Increment: 0.16     Legit Max Power: 3.98 (00 00 00 06)
    mb420_00_00 = Aeroga (Level 1)     Base Power: ?.??     Increment: 0.16     Legit Max Power: 2.7
    mb410_00_40 = Aerora (Level 5)     Base Power: 2.68     Increment: 0.08     Legit Max Power: 3.64 (00 00 00 3D)
    mb410_00_30 = Aerora (Level 4)     Base Power: 1.96     Increment: 0.08     Legit Max Power: 2.6  (00 00 00 23)
    mb410_00_20 = Aerora (Level 3)     Base Power: 1.48     Increment: 0.08     Legit Max Power: 1.88 (00 00 00 11)
    mb410_00_10 = Aerora (Level 2)     Base Power: 1.00     Increment: 0.08     Legit Max Power: 1.4  (00 00 00 05)
    mb410_00_00 = Aerora (Level 1)     Base Power: ?.??     Increment: 0.08     Legit Max Power: 0.92
    at620_00_40 = Area Sweep (Level 5)     Base Power: 0.75     Increment: 0.05     Legit Max Power: 0.95 (00 00 00 41)
    at620_00_30 = Area Sweep (Level 4)     Base Power: 0.50     Increment: 0.05     Legit Max Power: 0.7  (00 00 00 28)
    at620_00_20 = Area Sweep (Level 3)     Base Power: 0.35     Increment: 0.05     Legit Max Power: 0.45 (00 00 00 0F)
    at620_00_10 = Area Sweep (Level 2)     Base Power: 0.25     Increment: 0.05     Legit Max Power: 0.3  (00 00 00 00)
    at620_00_00 = Area Sweep (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.2
    ac300_00_40 = ATB Charge (Level 5)     Base Power: -60%/-60%         Increment: 00%     Legit Max Power: -60%/-60%  (00 00 00 28)
    ac300_00_30 = ATB Charge (Level 4)     Base Power: -70%/-70%         Increment: 10%     Legit Max Power: -70%/-70%  (00 00 00 1E)
    ac300_00_20 = ATB Charge (Level 3)     Base Power: -80%/-80%         Increment: 10%     Legit Max Power: -80%/-80%  (00 00 00 14)
    ac300_00_10 = ATB Charge (Level 2)     Base Power: -90%/-90%         Increment: 10%     Legit Max Power: -90%/-90%  (00 00 00 0A)
    ac300_00_00 = ATB Charge (Level 1)     Base Power: -100%/-100%       Increment: 10%     Legit Max Power: -100%/-100% (00 00 00 00)
    at010_00_40 = Attack (Level 5)     Base Power: 2.25     Increment: 0.05     Legit Max Power: 3    (00 00 00 C8)
    at010_00_30 = Attack (Level 4)     Base Power: 1.60     Increment: 0.05     Legit Max Power: 2.2  (00 00 00 78)
    at010_00_20 = Attack (Level 3)     Base Power: 1.15     Increment: 0.05     Legit Max Power: 1.55 (00 00 00 37)
    at010_00_10 = Attack (Level 2)     Base Power: 0.80     Increment: 0.05     Legit Max Power: 1.1  (00 00 00 0A)
    at010_00_00 = Attack (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.75 
    at130_00_40 = Beat Down (Level 5)     Base Power: 1.70     Increment: 0.05     Legit Max Power: 2.25 (00 00 00 96)
    at130_00_30 = Beat Down (Level 4)     Base Power: 1.25     Increment: 0.05     Legit Max Power: 1.65 (00 00 00 5A)
    at130_00_20 = Beat Down (Level 3)     Base Power: 0.90     Increment: 0.05     Legit Max Power: 1.2  (00 00 00 2D)
    at130_00_10 = Beat Down (Level 2)     Base Power: 0.65     Increment: 0.05     Legit Max Power: 0.85 (00 00 00 0A)
    at130_00_00 = Beat Down (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.6
    at520_00_40 = Blitz (Level 5)     Base Power: 4.00     Increment: 0.1     Legit Max Power: 5.4 (00 00 01 68)
    at520_00_30 = Blitz (Level 4)     Base Power: 2.90     Increment: 0.1     Legit Max Power: 3.9 (00 00 00 D2)
    at520_00_20 = Blitz (Level 3)     Base Power: 2.10     Increment: 0.1     Legit Max Power: 2.8 (00 00 00 64)
    at520_00_10 = Blitz (Level 2)     Base Power: 1.50     Increment: 0.1     Legit Max Power: 2   (00 00 00 14)
    at520_00_00 = Blitz (Level 1)     Base Power: ?.??     Increment: 0.1     Legit Max Power: 1.4
    mb120_00_40 = Blizzaga (Level 5)     Base Power: 7.85     Increment: 0.2     Legit Max Power: 10.25 (00 00 02 A3)
    mb120_00_30 = Blizzaga (Level 4)     Base Power: 5.65     Increment: 0.2     Legit Max Power: 7.65  (00 00 01 9F)
    mb120_00_20 = Blizzaga (Level 3)     Base Power: 4.05     Increment: 0.2     Legit Max Power: 5.45  (00 00 00 C3)
    mb120_00_10 = Blizzaga (Level 2)     Base Power: 2.85     Increment: 0.2     Legit Max Power: 3.85  (00 00 00 23)
    mb120_00_00 = Blizzaga (Level 1)     Base Power: ?.??     Increment: 0.2     Legit Max Power: 2.65
    mb110_00_40 = Blizzara (Level 5)     Base Power: 2.65     Increment: 0.10     Legit Max Power: 3.55 (00 00 00 EB)
    mb110_00_30 = Blizzara (Level 4)     Base Power: 1.95     Increment: 0.10     Legit Max Power: 2.55 (00 00 00 87)
    mb110_00_20 = Blizzara (Level 3)     Base Power: 1.40     Increment: 0.05     Legit Max Power: 1.9  (00 00 00 46)
    mb110_00_10 = Blizzara (Level 2)     Base Power: 1.00     Increment: 0.05     Legit Max Power: 1.35 (00 00 00 0F)
    mb110_00_00 = Blizzara (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.95
    mb100_00_40 = Blizzard (Level 5)     Base Power: 1.90     Increment: 0.05     Legit Max Power: 2.55 (00 00 00 AA)
    mb100_00_30 = Blizzard (Level 4)     Base Power: 1.35     Increment: 0.05     Legit Max Power: 1.85 (00 00 00 64)
    mb100_00_20 = Blizzard (Level 3)     Base Power: 0.95     Increment: 0.05     Legit Max Power: 1.3  (00 00 00 2D)
    mb100_00_10 = Blizzard (Level 2)     Base Power: 0.65     Increment: 0.05     Legit Max Power: 0.9  (00 00 00 05)
    mb100_00_00 = Blizzard (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.6
    at160_00_40 = Charged Strike (Level 5)     Base Power: 2.25     Increment: 0.05     Legit Max Power: 3    (00 00 00 C8)
    at160_00_30 = Charged Strike (Level 4)     Base Power: 1.60     Increment: 0.05     Legit Max Power: 2.2  (00 00 00 78)
    at160_00_20 = Charged Strike (Level 3)     Base Power: 1.15     Increment: 0.05     Legit Max Power: 1.55 (00 00 00 37)
    at160_00_10 = Charged Strike (Level 2)     Base Power: 0.80     Increment: 0.05     Legit Max Power: 1.1  (00 00 00 0A)
    at160_00_00 = Charged Strike (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.75
    mb130_00_40 = Chill (Level 5)     Base Power: 24.00     Increment: 1     Legit Max Power: 28 (00 00 03 20)
    mb130_00_30 = Chill (Level 4)     Base Power: 20.00     Increment: 1     Legit Max Power: 23 (00 00 01 2C)
    mb130_00_20 = Chill (Level 3)     Base Power: 16.00     Increment: 1     Legit Max Power: 19 (FF FF FF 9C)
    mb130_00_10 = Chill (Level 2)     Base Power: 13.00     Increment: 1     Legit Max Power: 15 (FF FF FE 0C)
    mb130_00_00 = Chill (Level 1)     Base Power: 10.00     Increment: 1     Legit Max Power: 12
    ga010_00_40 = Counterblow (Level 5)     Base Power: 20     Increment: 0     Legit Max Power: 20 (00 00 00 14)
    ga010_00_30 = Counterblow (Level 4)     Base Power: 14     Increment: 6     Legit Max Power: 14 (00 00 00 0E)
    ga010_00_20 = Counterblow (Level 3)     Base Power: 08     Increment: 6     Legit Max Power: 8 (00 00 00 08)
    ga010_00_10 = Counterblow (Level 2)     Base Power: 04     Increment: 4     Legit Max Power: 4 (00 00 00 04)
    ga010_00_00 = Counterblow (Level 1)     Base Power: 00     Increment: 4     Legit Max Power: 0 (00 00 00 00)
    ga110_00_40 = Counterspell (Level 5)     Base Power: 20     Increment: 0     Legit Max Power: 20 (00 00 00 14)
    ga110_00_30 = Counterspell (Level 4)     Base Power: 14     Increment: 6     Legit Max Power: 14 (00 00 00 0E)
    ga110_00_20 = Counterspell (Level 3)     Base Power: 08     Increment: 6     Legit Max Power: 8 (00 00 00 08)
    ga110_00_10 = Counterspell (Level 2)     Base Power: 04     Increment: 4     Legit Max Power: 4 (00 00 00 04)
    ga110_00_00 = Counterspell (Level 1)     Base Power: 00     Increment: 4     Legit Max Power: 0 (00 00 00 00)
    mg530_00_40 = Curse (Level 5)     Base Power: 45s     Increment: 0s      Legit Max Power: 45s (00 00 00 0F)
    mg530_00_30 = Curse (Level 4)     Base Power: 35s     Increment: 10s     Legit Max Power: 35s (00 00 00 05)
    mg530_00_20 = Curse (Level 3)     Base Power: 25s     Increment: 10s     Legit Max Power: 25s (FF FF FF FB)
    mg530_00_10 = Curse (Level 2)     Base Power: 20s     Increment: 5s      Legit Max Power: 20s (FF FF FF F6)
    mg530_00_00 = Curse (Level 1)     Base Power: 15s     Increment: 5s      Legit Max Power: 15s (FF FF FF F1)
    mg730_00_40 = Cursega (Level 5)     Base Power: 30s     Increment: 0s     Legit Max Power: 30s (00 00 00 0F)
    mg730_00_30 = Cursega (Level 4)     Base Power: 25s     Increment: 5s     Legit Max Power: 25s (00 00 00 0A)
    mg730_00_20 = Cursega (Level 3)     Base Power: 20s     Increment: 5s     Legit Max Power: 20s (00 00 00 05)
    mg730_00_10 = Cursega (Level 2)     Base Power: 15s     Increment: 5s     Legit Max Power: 15s (00 00 00 00)
    mg730_00_00 = Cursega (Level 1)     Base Power: 10s     Increment: 5s     Legit Max Power: 10s (FF FF FF FB)
    mg560_00_40 = Debrave (Level 5)     Base Power: 90s     Increment: 00s     Legit Max Power: 90s (00 00 00 1E)
    mg560_00_30 = Debrave (Level 4)     Base Power: 75s     Increment: 15s     Legit Max Power: 75s (00 00 00 0F)
    mg560_00_20 = Debrave (Level 3)     Base Power: 60s     Increment: 15s     Legit Max Power: 60s (00 00 00 00)
    mg560_00_10 = Debrave (Level 2)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (FF FF FF F1)
    mg560_00_00 = Debrave (Level 1)     Base Power: 30s     Increment: 15s     Legit Max Power: 30s (FF FF FF E2)
    mg760_00_40 = Debravega (Level 5)     Base Power: 60s     Increment: 00s     Legit Max Power: 60s (00 00 00 1E)
    mg760_00_30 = Debravega (Level 4)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (00 00 00 0F)
    mg760_00_20 = Debravega (Level 3)     Base Power: 35s     Increment: 10s     Legit Max Power: 35s (00 00 00 05)
    mg760_00_10 = Debravega (Level 2)     Base Power: 25s     Increment: 10s     Legit Max Power: 25s (FF FF FF FB)
    mg760_00_00 = Debravega (Level 1)     Base Power: 15s     Increment: 10s     Legit Max Power: 15s (00 00 00 00)
    mg570_00_40 = Defaith (Level 5)     Base Power: 90s     Increment: 00s     Legit Max Power: 90s (00 00 00 1E)
    mg570_00_30 = Defaith (Level 4)     Base Power: 75s     Increment: 15s     Legit Max Power: 75s (00 00 00 0F)
    mg570_00_20 = Defaith (Level 3)     Base Power: 60s     Increment: 15s     Legit Max Power: 60s (00 00 00 00)
    mg570_00_10 = Defaith (Level 2)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (FF FF FF F1)
    mg570_00_00 = Defaith (Level 1)     Base Power: 30s     Increment: 15s     Legit Max Power: 30s (FF FF FF E2)
    mg770_00_40 = Defaithga (Level 5)     Base Power: 60s     Increment: 00s     Legit Max Power: 60s (00 00 00 1E)
    mg770_00_30 = Defaithga (Level 4)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (00 00 00 0F)
    mg770_00_20 = Defaithga (Level 3)     Base Power: 35s     Increment: 10s     Legit Max Power: 35s (00 00 00 05)
    mg770_00_10 = Defaithga (Level 2)     Base Power: 25s     Increment: 10s     Legit Max Power: 25s (FF FF FF FB)
    mg770_00_00 = Defaithga (Level 1)     Base Power: 15s     Increment: 10s     Legit Max Power: 15s (00 00 00 00)
    mg000_00_40 = Deprotect (Level 5)     Base Power: 90s     Increment: 00s     Legit Max Power: 90s (00 00 00 1E)
    mg000_00_30 = Deprotect (Level 4)     Base Power: 75s     Increment: 15s     Legit Max Power: 75s (00 00 00 0F)
    mg000_00_20 = Deprotect (Level 3)     Base Power: 60s     Increment: 15s     Legit Max Power: 60s (00 00 00 00)
    mg000_00_10 = Deprotect (Level 2)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (FF FF FF F1)
    mg000_00_00 = Deprotect (Level 1)     Base Power: 30s     Increment: 15s     Legit Max Power: 30s (FF FF FF E2)
    mg200_00_40 = Deprotega (Level 5)     Base Power: 60s     Increment: 00s     Legit Max Power: 60s (00 00 00 1E)
    mg200_00_30 = Deprotega (Level 4)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (00 00 00 0F)
    mg200_00_20 = Deprotega (Level 3)     Base Power: 35s     Increment: 10s     Legit Max Power: 35s (00 00 00 05)
    mg200_00_10 = Deprotega (Level 2)     Base Power: 25s     Increment: 10s     Legit Max Power: 25s (FF FF FF FB)
    mg200_00_00 = Deprotega (Level 1)     Base Power: 15s     Increment: 10s     Legit Max Power: 15s (FF FF FF F1)
    mg010_00_40 = Deshell (Level 5)     Base Power: 90s     Increment: 00s     Legit Max Power: 90s (00 00 00 1E)
    mg010_00_30 = Deshell (Level 4)     Base Power: 75s     Increment: 15s     Legit Max Power: 75s (00 00 00 0F)
    mg010_00_20 = Deshell (Level 3)     Base Power: 60s     Increment: 15s     Legit Max Power: 60s (00 00 00 00)
    mg010_00_10 = Deshell (Level 2)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (FF FF FF F1)
    mg010_00_00 = Deshell (Level 1)     Base Power: 30s     Increment: 15s     Legit Max Power: 30s (FF FF FF E2)
    mg210_00_40 = Deshellga (Level 5)     Base Power: 60s     Increment: 00s     Legit Max Power: 60s (00 00 00 1E)
    mg210_00_30 = Deshellga (Level 4)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (00 00 00 0F)
    mg210_00_20 = Deshellga (Level 3)     Base Power: 35s     Increment: 10s     Legit Max Power: 35s (00 00 00 05)
    mg210_00_10 = Deshellga (Level 2)     Base Power: 25s     Increment: 10s     Legit Max Power: 25s (FF FF FF FB)
    mg210_00_00 = Deshellga (Level 1)     Base Power: 15s     Increment: 10s     Legit Max Power: 15s (FF FF FF F1)
    mg900_00_40 = Disaster (Level 5)     Base Power: 30s     Increment: 0s     Legit Max Power: 30s (00 00 00 0A)
    mg900_00_30 = Disaster (Level 4)     Base Power: 25s     Increment: 5s     Legit Max Power: 25s (00 00 00 05)
    mg900_00_20 = Disaster (Level 3)     Base Power: 20s     Increment: 5s     Legit Max Power: 20s (00 00 00 00)
    mg900_00_10 = Disaster (Level 2)     Base Power: 15s     Increment: 5s     Legit Max Power: 15s (FF FF FF FB)
    mg900_00_00 = Disaster (Level 1)     Base Power: 10s     Increment: 5s     Legit Max Power: 10s (FF FF FF F6)
    mg240_00_40 = Dispel (Level 5)     Base Power: 4s     Increment: 0s     Legit Max Power: 4s (00 00 00 04)
    mg240_00_30 = Dispel (Level 4)     Base Power: 3s     Increment: 1s     Legit Max Power: 3s (00 00 00 03)
    mg240_00_20 = Dispel (Level 3)     Base Power: 2s     Increment: 1s     Legit Max Power: 2s (00 00 00 02)
    mg240_00_10 = Dispel (Level 2)     Base Power: 1s     Increment: 1s     Legit Max Power: 1s (00 00 00 01)
    mg240_00_00 = Dispel (Level 1)     Base Power: 0s     Increment: 1s     Legit Max Power: 0s (00 00 00 00)
    mg250_00_40 = Dispelga (Level 5)     Base Power: 4s     Increment: 0s     Legit Max Power: 4s (00 00 00 04)
    mg250_00_30 = Dispelga (Level 4)     Base Power: 3s     Increment: 1s     Legit Max Power: 3s (00 00 00 03)
    mg250_00_20 = Dispelga (Level 3)     Base Power: 2s     Increment: 1s     Legit Max Power: 2s (00 00 00 02)
    mg250_00_10 = Dispelga (Level 2)     Base Power: 1s     Increment: 1s     Legit Max Power: 1s (00 00 00 01)
    mg250_00_00 = Dispelga (Level 1)     Base Power: 0s     Increment: 1s     Legit Max Power: 0s (00 00 00 00)
    at620_30_40 = Electric Blitz (Level 5)     Base Power: 3.35     Increment: 0.1     Legit Max Power: 4.45 (00 00 01 27)
    at620_30_30 = Electric Blitz (Level 4)     Base Power: 2.45     Increment: 0.1     Legit Max Power: 3.25 (00 00 00 AF)
    at620_30_20 = Electric Blitz (Level 3)     Base Power: 1.85     Increment: 0.1     Legit Max Power: 2.35 (00 00 00 55)
    at620_30_10 = Electric Blitz (Level 2)     Base Power: 1.25     Increment: 0.1     Legit Max Power: 1.75 (00 00 00 19)
    at620_30_00 = Electric Blitz (Level 1)     Base Power: ?.??     Increment: 0.1     Legit Max Power: 1.15
    mc900_00_40 = Element (Level 5)     Base Power: 2.88     Increment: 0.08     Legit Max Power: 3.84 (00 00 00 3D)
    mc900_00_30 = Element (Level 4)     Base Power: 2.16     Increment: 0.08     Legit Max Power: 2.8  (00 00 00 23)
    mc900_00_20 = Element (Level 3)     Base Power: 1.68     Increment: 0.08     Legit Max Power: 2.08 (00 00 00 11)
    mc900_00_10 = Element (Level 2)     Base Power: 1.20     Increment: 0.08     Legit Max Power: 1.6  (00 00 00 05)
    mc900_00_00 = Element (Level 1)     Base Power: ?.??     Increment: 0.08     Legit Max Power: 1.12 
    mc910_00_40 = Elementa (Level 5)     Base Power: 6.5     Increment: 0.2     Legit Max Power: 8.9 (00 00 00 3D)
    mc910_00_30 = Elementa (Level 4)     Base Power: 4.7     Increment: 0.2     Legit Max Power: 6.3 (00 00 00 23)
    mc910_00_20 = Elementa (Level 3)     Base Power: 3.5     Increment: 0.2     Legit Max Power: 4.5 (00 00 00 11)
    mc910_00_10 = Elementa (Level 2)     Base Power: 2.3     Increment: 0.2     Legit Max Power: 3.3 (00 00 00 05)
    mc910_00_00 = Elementa (Level 1)     Base Power: ?.??    Increment: 0.2     Legit Max Power: 2.1
    ms910_00_40 = Elementaga (Level 5)     Base Power: 24.00     Increment: 1     Legit Max Power: 28 (00 00 03 20)
    ms910_00_30 = Elementaga (Level 4)     Base Power: 20.00     Increment: 1     Legit Max Power: 23 (00 00 01 2C)
    ms910_00_20 = Elementaga (Level 3)     Base Power: 16.00     Increment: 1     Legit Max Power: 19 (FF FF FF 9C)
    ms910_00_10 = Elementaga (Level 2)     Base Power: 13.00     Increment: 1     Legit Max Power: 15 (FF FF FE 0C)
    ms910_00_00 = Elementaga (Level 1)     Base Power: 10.00     Increment: 1     Legit Max Power: 12
    av010_00_40 = Evade (Level 5)     Base Power: 10%/10%     Increment: 0%     Legit Max Power: 10%/10% (00 00 00 0A)
    av010_00_30 = Evade (Level 4)     Base Power: 06%/06%     Increment: 4%     Legit Max Power: 6%/6%   (00 00 00 06)
    av010_00_20 = Evade (Level 3)     Base Power: 04%/04%     Increment: 2%     Legit Max Power: 4%/4%   (00 00 00 04)
    av010_00_10 = Evade (Level 2)     Base Power: 02%/02%     Increment: 2%     Legit Max Power: 2%/2%   (00 00 00 02)
    av010_00_00 = Evade (Level 1)     Base Power: 00%/00%     Increment: 2%     Legit Max Power: 0%/0%   (00 00 00 00)
    at150_00_40 = Fatal Sweep (Level 5)     Base Power: 1.75     Increment: 0.05     Legit Max Power: 2.1  (00 00 00 55)
    at150_00_30 = Fatal Sweep (Level 4)     Base Power: 1.50     Increment: 0.05     Legit Max Power: 1.7  (00 00 00 2D)
    at150_00_20 = Fatal Sweep (Level 3)     Base Power: 1.35     Increment: 0.05     Legit Max Power: 1.45 (00 00 00 14)
    at150_00_10 = Fatal Sweep (Level 2)     Base Power: 1.20     Increment: 0.05     Legit Max Power: 1.3  (00 00 00 05)
    at150_00_00 = Fatal Sweep (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 1.15 
    mb010_00_40 = Fira (Level 5)     Base Power: 2.65     Increment: 0.10     Legit Max Power: 3.55 (00 00 00 EB)
    mb010_00_30 = Fira (Level 4)     Base Power: 1.95     Increment: 0.10     Legit Max Power: 2.55 (00 00 00 87)
    mb010_00_20 = Fira (Level 3)     Base Power: 1.40     Increment: 0.05     Legit Max Power: 1.9  (00 00 00 46)
    mb010_00_10 = Fira (Level 2)     Base Power: 1.00     Increment: 0.05     Legit Max Power: 1.35 (00 00 00 0F)
    mb010_00_00 = Fira (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.95
    mb020_00_40 = Firaga (Level 5)     Base Power: 7.85     Increment: 0.2     Legit Max Power: 10.25 (00 00 02 A3)
    mb020_00_30 = Firaga (Level 4)     Base Power: 5.65     Increment: 0.2     Legit Max Power: 7.65  (00 00 01 9F)
    mb020_00_20 = Firaga (Level 3)     Base Power: 4.05     Increment: 0.2     Legit Max Power: 5.45  (00 00 00 C3)
    mb020_00_10 = Firaga (Level 2)     Base Power: 2.85     Increment: 0.2     Legit Max Power: 3.85  (00 00 00 23)
    mb020_00_00 = Firaga (Level 1)     Base Power: ?.??     Increment: 0.2     Legit Max Power: 2.65
    mb000_00_40 = Fire (Level 5)     Base Power: 1.90     Increment: 0.05     Legit Max Power: 2.55 (00 00 00 AA)
    mb000_00_30 = Fire (Level 4)     Base Power: 1.35     Increment: 0.05     Legit Max Power: 1.85 (00 00 00 64)
    mb000_00_20 = Fire (Level 3)     Base Power: 0.95     Increment: 0.05     Legit Max Power: 1.3  (00 00 00 2D)
    mb000_00_10 = Fire (Level 2)     Base Power: 0.65     Increment: 0.05     Legit Max Power: 0.9  (00 00 00 05)
    mb000_00_00 = Fire (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.6
    mc200_00_40 = Firestorm (Level 5)     Base Power: 2.52     Increment: 0.08     Legit Max Power: 3.48 (00 00 00 72)
    mc200_00_30 = Firestorm (Level 4)     Base Power: 1.72     Increment: 0.08     Legit Max Power: 2.44 (00 00 00 3E)
    mc200_00_20 = Firestorm (Level 3)     Base Power: 1.30     Increment: 0.06     Legit Max Power: 1.66 (00 00 00 17)
    mc200_00_10 = Firestorm (Level 2)     Base Power: 1.00     Increment: 0.06     Legit Max Power: 1.24 (00 00 00 02)
    mc200_00_00 = Firestorm (Level 1)     Base Power: ?.??     Increment: 0.06     Legit Max Power: 0.94
    mc210_00_40 = Firestorma (Level 5)     Base Power: 5.10     Increment: 0.2     Legit Max Power: 6.7 (00 00 00 5A)
    mc210_00_30 = Firestorma (Level 4)     Base Power: 3.50     Increment: 0.2     Legit Max Power: 4.9 (00 00 00 36)
    mc210_00_20 = Firestorma (Level 3)     Base Power: 2.60     Increment: 0.1     Legit Max Power: 3.4 (00 00 00 18)
    mc210_00_10 = Firestorma (Level 2)     Base Power: 1.80     Increment: 0.1     Legit Max Power: 2.5 (00 00 00 06)
    mc210_00_00 = Firestorma (Level 1)     Base Power: ?.??     Increment: 0.1     Legit Max Power: 1.7
    mc100_00_40 = Flamespark (Level 5)     Base Power: 2.52     Increment: 0.08     Legit Max Power: 3.48 (00 00 00 72)
    mc100_00_30 = Flamespark (Level 4)     Base Power: 1.72     Increment: 0.08     Legit Max Power: 2.44 (00 00 00 3E)
    mc100_00_20 = Flamespark (Level 3)     Base Power: 1.30     Increment: 0.06     Legit Max Power: 1.66 (00 00 00 17)
    mc100_00_10 = Flamespark (Level 2)     Base Power: 1.00     Increment: 0.06     Legit Max Power: 1.24 (00 00 00 02)
    mc100_00_00 = Flamespark (Level 1)     Base Power: ?.??     Increment: 0.06     Legit Max Power: 0.94
    mc110_00_40 = Flamesparka (Level 5)     Base Power: 5.10     Increment: 0.2     Legit Max Power: 6.7 (00 00 00 5A)
    mc110_00_30 = Flamesparka (Level 4)     Base Power: 3.50     Increment: 0.2     Legit Max Power: 4.9 (00 00 00 36)
    mc110_00_20 = Flamesparka (Level 3)     Base Power: 2.60     Increment: 0.1     Legit Max Power: 3.4 (00 00 00 18)
    mc110_00_10 = Flamesparka (Level 2)     Base Power: 1.80     Increment: 0.1     Legit Max Power: 2.5 (00 00 00 06)
    mc110_00_00 = Flamesparka (Level 1)     Base Power: ?.??     Increment: 0.1     Legit Max Power: 1.7
    at010_10_40 = Flamestrike (Level 5)     Base Power: 1.90     Increment: 0.05     Legit Max Power: 2.55 (00 00 00 AA)
    at010_10_30 = Flamestrike (Level 4)     Base Power: 1.30     Increment: 0.05     Legit Max Power: 1.85 (00 00 00 64)
    at010_10_20 = Flamestrike (Level 3)     Base Power: 0.95     Increment: 0.05     Legit Max Power: 1.25 (00 00 00 28)
    at010_10_10 = Flamestrike (Level 2)     Base Power: 0.65     Increment: 0.05     Legit Max Power: 0.9  (00 00 00 05)
    at010_10_00 = Flamestrike (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.6
    mb030_00_40 = Flare (Level 5)     Base Power: 24.00     Increment: 1     Legit Max Power: 28 (00 00 03 20)
    mb030_00_30 = Flare (Level 4)     Base Power: 20.00     Increment: 1     Legit Max Power: 23 (00 00 01 2C)
    mb030_00_20 = Flare (Level 3)     Base Power: 16.00     Increment: 1     Legit Max Power: 19 (FF FF FF 9C)
    mb030_00_10 = Flare (Level 2)     Base Power: 13.00     Increment: 1     Legit Max Power: 15 (FF FF FE 0C)
    mb030_00_00 = Flare (Level 1)     Base Power: 10.00     Increment: 1     Legit Max Power: 12
    at010_20_40 = Froststrike (Level 5)     Base Power: 1.90     Increment: 0.05     Legit Max Power: 2.55 (00 00 00 AA)
    at010_20_30 = Froststrike (Level 4)     Base Power: 1.30     Increment: 0.05     Legit Max Power: 1.85 (00 00 00 64)
    at010_20_20 = Froststrike (Level 3)     Base Power: 0.95     Increment: 0.05     Legit Max Power: 1.25 (00 00 00 28)
    at010_20_10 = Froststrike (Level 2)     Base Power: 0.65     Increment: 0.05     Legit Max Power: 0.9  (00 00 00 05)
    at010_20_00 = Froststrike (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.6
    at010_50_40 = Galestrike (Level 5)     Base Power: 1.90     Increment: 0.05     Legit Max Power: 2.55 (00 00 00 AA)
    at010_50_30 = Galestrike (Level 4)     Base Power: 1.30     Increment: 0.05     Legit Max Power: 1.85 (00 00 00 64)
    at010_50_20 = Galestrike (Level 3)     Base Power: 0.95     Increment: 0.05     Legit Max Power: 1.25 (00 00 00 28)
    at010_50_10 = Galestrike (Level 2)     Base Power: 0.65     Increment: 0.05     Legit Max Power: 0.9 (00 00 00 05)
    at010_50_00 = Galestrike (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.6
    gd020_00_40 = Guard (Level 5)     Base Power: 55%/55%     Increment: 0%/0%     Legit Max Power: 55%/55% (00 00 00 0F)
    gd020_00_30 = Guard (Level 4)     Base Power: 50%/50%     Increment: 5%/5%     Legit Max Power: 50%/50% (00 00 00 0A)
    gd020_00_20 = Guard (Level 3)     Base Power: 46%/46%     Increment: 4%/4%     Legit Max Power: 46%/46% (00 00 00 06)
    gd020_00_10 = Guard (Level 2)     Base Power: 43%/43%     Increment: 3%/3%     Legit Max Power: 43%/43% (00 00 00 03)
    gd020_00_00 = Guard (Level 1)     Base Power: 40%/40%     Increment: 3%/3%     Legit Max Power: 40%/40% (00 00 00 00)
    at620_10_40 = Heat Blitz (Level 5)     Base Power: 3.35     Increment: 0.1     Legit Max Power: 4.45 (00 00 01 27)
    at620_10_30 = Heat Blitz (Level 4)     Base Power: 2.45     Increment: 0.1     Legit Max Power: 3.25 (00 00 00 AF)
    at620_10_20 = Heat Blitz (Level 3)     Base Power: 1.85     Increment: 0.1     Legit Max Power: 2.35 (00 00 00 55)
    at620_10_10 = Heat Blitz (Level 2)     Base Power: 1.25     Increment: 0.1     Legit Max Power: 1.75 (00 00 00 19)
    at620_10_00 = Heat Blitz (Level 1)     Base Power: ?.??     Increment: 0.1     Legit Max Power: 1.15
    gd040_00_40 = Heavy Guard (Level 5)     Base Power: 70%/70%     Increment: 0%/0%     Legit Max Power: 70%/70% (00 00 00 14)
    gd040_00_30 = Heavy Guard (Level 4)     Base Power: 64%/64%     Increment: 6%/6%     Legit Max Power: 64%/64% (00 00 00 0E)
    gd040_00_20 = Heavy Guard (Level 3)     Base Power: 58%/58%     Increment: 6%/6%     Legit Max Power: 58%/58% (00 00 00 08)
    gd040_00_10 = Heavy Guard (Level 2)     Base Power: 54%/54%     Increment: 4%/4%     Legit Max Power: 54%/54% (00 00 00 04)
    gd040_00_00 = Heavy Guard (Level 1)     Base Power: 50%/50%     Increment: 4%/4%     Legit Max Power: 50%/50% (00 00 00 00)
    at800_00_40 = Heavy Slash (Level 5)     Base Power: 9.00     Increment: 0.2     Legit Max Power: 12  (00 00 03 20)
    at800_00_30 = Heavy Slash (Level 4)     Base Power: 6.40     Increment: 0.2     Legit Max Power: 8.8 (00 00 01 E0)
    at800_00_20 = Heavy Slash (Level 3)     Base Power: 4.60     Increment: 0.2     Legit Max Power: 6.2 (00 00 00 DC)
    at800_00_10 = Heavy Slash (Level 2)     Base Power: 3.20     Increment: 0.2     Legit Max Power: 4.4 (00 00 00 28)
    at800_00_00 = Heavy Slash (Level 1)     Base Power: ?.??     Increment: 0.2     Legit Max Power: 3
    gd810_00_40 = Heroic Guard (Level 5)     Base Power: 99%/99%     Increment: 0%/0%     Legit Max Power: 99%/99% (00 00 00 00)
    gd810_00_30 = Heroic Guard (Level 4)     Base Power: 93%/93%     Increment: 6%/6%     Legit Max Power: 93%/93% (FF FF FF FA)
    gd810_00_20 = Heroic Guard (Level 3)     Base Power: 90%/90%     Increment: 3%/3%     Legit Max Power: 90%/90% (FF FF FF F7)
    gd810_00_10 = Heroic Guard (Level 2)     Base Power: 87%/87%     Increment: 3%/3%     Legit Max Power: 87%/87% (FF FF FF F4)
    gd810_00_00 = Heroic Guard (Level 1)     Base Power: 84%/84%     Increment: 3%/3%     Legit Max Power: 84%/84% (FF FF FF F1)
    at620_20_40 = Ice Blitz (Level 5)     Base Power: 3.35     Increment: 0.1     Legit Max Power: 4.45 (00 00 01 27)
    at620_20_30 = Ice Blitz (Level 4)     Base Power: 2.45     Increment: 0.1     Legit Max Power: 3.25 (00 00 00 AF)
    at620_20_20 = Ice Blitz (Level 3)     Base Power: 1.85     Increment: 0.1     Legit Max Power: 2.35 (00 00 00 55)
    at620_20_10 = Ice Blitz (Level 2)     Base Power: 1.25     Increment: 0.1     Legit Max Power: 1.75 (00 00 00 19)
    at620_20_00 = Ice Blitz (Level 1)     Base Power: ?.??     Increment: 0.1     Legit Max Power: 1.15
    mc300_00_40 = Icespark (Level 5)     Base Power: 2.52     Increment: 0.08     Legit Max Power: 3.48 (00 00 00 72)
    mc300_00_30 = Icespark (Level 4)     Base Power: 1.72     Increment: 0.08     Legit Max Power: 2.44 (00 00 00 3E)
    mc300_00_20 = Icespark (Level 3)     Base Power: 1.30     Increment: 0.06     Legit Max Power: 1.66 (00 00 00 17)
    mc300_00_10 = Icespark (Level 2)     Base Power: 1.00     Increment: 0.06     Legit Max Power: 1.24 (00 00 00 02)
    mc300_00_00 = Icespark (Level 1)     Base Power: ?.??     Increment: 0.06     Legit Max Power: 0.94
    mc310_00_40 = Icesparka (Level 5)     Base Power: 5.10     Increment: 0.2     Legit Max Power: 6.7 (00 00 00 5A)
    mc310_00_30 = Icesparka (Level 4)     Base Power: 3.50     Increment: 0.2     Legit Max Power: 4.9 (00 00 00 36)
    mc310_00_20 = Icesparka (Level 3)     Base Power: 2.60     Increment: 0.1     Legit Max Power: 3.4 (00 00 00 18)
    mc310_00_10 = Icesparka (Level 2)     Base Power: 1.80     Increment: 0.1     Legit Max Power: 2.5 (00 00 00 06)
    mc310_00_00 = Icesparka (Level 1)     Base Power: ?.??     Increment: 0.1     Legit Max Power: 1.7
    mc400_00_40 = Icestorm (Level 5)     Base Power: 2.52     Increment: 0.08     Legit Max Power: 3.48 (00 00 00 72)
    mc400_00_30 = Icestorm (Level 4)     Base Power: 1.72     Increment: 0.08     Legit Max Power: 2.44 (00 00 00 3E)
    mc400_00_20 = Icestorm (Level 3)     Base Power: 1.30     Increment: 0.06     Legit Max Power: 1.66 (00 00 00 17)
    mc400_00_10 = Icestorm (Level 2)     Base Power: 1.00     Increment: 0.06     Legit Max Power: 1.24 (00 00 00 02)
    mc400_00_00 = Icestorm (Level 1)     Base Power: ?.??     Increment: 0.06     Legit Max Power: 0.94
    mc410_00_40 = Icestorma (Level 5)     Base Power: 5.10     Increment: 0.2     Legit Max Power: 6.7 (00 00 00 5A)
    mc410_00_30 = Icestorma (Level 4)     Base Power: 3.50     Increment: 0.2     Legit Max Power: 4.9 (00 00 00 36)
    mc410_00_20 = Icestorma (Level 3)     Base Power: 2.60     Increment: 0.1     Legit Max Power: 3.4 (00 00 00 18)
    mc410_00_10 = Icestorma (Level 2)     Base Power: 1.80     Increment: 0.1     Legit Max Power: 2.5 (00 00 00 06)
    mc410_00_00 = Icestorma (Level 1)     Base Power: ?.??     Increment: 0.1     Legit Max Power: 1.7
    mg030_00_40 = Imperil (Level 5)     Base Power: 90s     Increment: 00s     Legit Max Power: 90s (00 00 00 1E)
    mg030_00_30 = Imperil (Level 4)     Base Power: 75s     Increment: 15s     Legit Max Power: 75s (00 00 00 0F)
    mg030_00_20 = Imperil (Level 3)     Base Power: 60s     Increment: 15s     Legit Max Power: 60s (00 00 00 00)
    mg030_00_10 = Imperil (Level 2)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (FF FF FF F1)
    mg030_00_00 = Imperil (Level 1)     Base Power: 30s     Increment: 15s     Legit Max Power: 30s (FF FF FF E2)
    mg230_00_40 = Imperilga (Level 5)     Base Power: 60s     Increment: 00s     Legit Max Power: 60s (00 00 00 1E)
    mg230_00_30 = Imperilga (Level 4)     Base Power: 45s     Increment: 15s     Legit Max Power: 45s (00 00 00 0F)
    mg230_00_20 = Imperilga (Level 3)     Base Power: 35s     Increment: 10s     Legit Max Power: 35s (00 00 00 05)
    mg230_00_10 = Imperilga (Level 2)     Base Power: 25s     Increment: 10s     Legit Max Power: 25s (FF FF FF FB)
    mg230_00_00 = Imperilga (Level 1)     Base Power: 15s     Increment: 10s     Legit Max Power: 15s (FF FF FF F1)
    gd030_00_40 = Light Guard (Level 5)     Base Power: 35%/35%     Increment: 0%     Legit Max Power: 35%/35% (00 00 00 0A)
    gd030_00_30 = Light Guard (Level 4)     Base Power: 31%/31%     Increment: 4%     Legit Max Power: 31%/31% (00 00 00 06)
    gd030_00_20 = Light Guard (Level 3)     Base Power: 29%/29%     Increment: 2%     Legit Max Power: 29%/29% (00 00 00 04)
    gd030_00_10 = Light Guard (Level 2)     Base Power: 27%/27%     Increment: 2%     Legit Max Power: 27%/27% (00 00 00 02)
    gd030_00_00 = Light Guard (Level 1)     Base Power: 25%/25%     Increment: 2%     Legit Max Power: 25%/25% (00 00 00 00)
    at060_00_40 = Light Slash (Level 5)     Base Power: 1.30     Increment: 0.05     Legit Max Power: 1.65 (00 00 00 6E)
    at060_00_30 = Light Slash (Level 4)     Base Power: 0.95     Increment: 0.05     Legit Max Power: 1.25 (00 00 00 46)
    at060_00_20 = Light Slash (Level 3)     Base Power: 0.70     Increment: 0.05     Legit Max Power: 0.9  (00 00 00 23)
    at060_00_10 = Light Slash (Level 2)     Base Power: 0.50     Increment: 0.05     Legit Max Power: 0.65 (00 00 00 0A)
    at060_00_00 = Light Slash (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.45
    ma100_00_40 = Magnet (Level 5)     Base Power: 0.52     Increment: 0.00     Legit Max Power: 0.52 (00 00 00 0A)
    ma100_00_30 = Magnet (Level 4)     Base Power: 0.40     Increment: 0.12     Legit Max Power: 0.4  (00 00 00 07)
    ma100_00_20 = Magnet (Level 3)     Base Power: 0.28     Increment: 0.12     Legit Max Power: 0.28 (00 00 00 04)
    ma100_00_10 = Magnet (Level 2)     Base Power: 0.20     Increment: 0.08     Legit Max Power: 0.2  (00 00 00 02)
    ma100_00_00 = Magnet (Level 1)     Base Power: 0.12     Increment: 0.08     Legit Max Power: 0.12 (00 00 00 00)
    gd110_00_40 = Mediguard (Level 5)     Base Power: 35%/35%     Increment: 0%/0%     Legit Max Power: 35%/35% (00 00 00 0A)
    gd110_00_30 = Mediguard (Level 4)     Base Power: 31%/31%     Increment: 4%/4%     Legit Max Power: 31%/31% (00 00 00 06)
    gd110_00_20 = Mediguard (Level 3)     Base Power: 29%/29%     Increment: 2%/2%     Legit Max Power: 29%/29% (00 00 00 04)
    gd110_00_10 = Mediguard (Level 2)     Base Power: 27%/27%     Increment: 2%/2%     Legit Max Power: 27%/27% (00 00 00 02)
    gd110_00_00 = Mediguard (Level 1)     Base Power: 25%/25%     Increment: 2%/2%     Legit Max Power: 25%/25% (00 00 00 00)
    gd510_00_40 = NulAll Guard (Level 5)     Base Power: 40%/40%     Increment: 0%/0%     Legit Max Power: 40%/40% (00 00 00 0F)
    gd510_00_30 = NulAll Guard (Level 4)     Base Power: 35%/35%     Increment: 5%/5%     Legit Max Power: 35%/35% (00 00 00 0A)
    gd510_00_20 = NulAll Guard (Level 3)     Base Power: 31%/31%     Increment: 4%/4%     Legit Max Power: 31%/31% (00 00 00 06)
    gd510_00_10 = NulAll Guard (Level 2)     Base Power: 28%/28%     Increment: 3%/3%     Legit Max Power: 28%/28% (00 00 00 03)
    gd510_00_00 = NulAll Guard (Level 1)     Base Power: 25%/25%     Increment: 3%/3%     Legit Max Power: 25%/25% (00 00 00 00)
    mg020_00_40 = Poison (Level 5)     Base Power: 45s     Increment: 00s     Legit Max Power: 45s (00 00 00 0F)
    mg020_00_30 = Poison (Level 4)     Base Power: 35s     Increment: 10s     Legit Max Power: 35s (00 00 00 05)
    mg020_00_20 = Poison (Level 3)     Base Power: 25s     Increment: 10s     Legit Max Power: 25s (FF FF FF FB)
    mg020_00_10 = Poison (Level 2)     Base Power: 20s     Increment: 05s     Legit Max Power: 20s (FF FF FF F6)
    mg020_00_00 = Poison (Level 1)     Base Power: 15s     Increment: 05s     Legit Max Power: 15s (FF FF FF F1)
    mg220_00_40 = Poisonga (Level 5)     Base Power: 30s     Increment: 0s     Legit Max Power: 30s (00 00 00 0F)
    mg220_00_30 = Poisonga (Level 4)     Base Power: 25s     Increment: 5s     Legit Max Power: 25s (00 00 00 0A)
    mg220_00_20 = Poisonga (Level 3)     Base Power: 20s     Increment: 5s     Legit Max Power: 20s (00 00 00 05)
    mg220_00_10 = Poisonga (Level 2)     Base Power: 15s     Increment: 5s     Legit Max Power: 15s (00 00 00 00)
    mg220_00_00 = Poisonga (Level 1)     Base Power: 10s     Increment: 5s     Legit Max Power: 10s (FF FF FF FB)
    at700_00_40 = Punt (Level 5)     Base Power: 0.80     Increment: 0.05     Legit Max Power: 1    (00 00 00 4B)
    at700_00_30 = Punt (Level 4)     Base Power: 0.55     Increment: 0.05     Legit Max Power: 0.75 (00 00 00 32)
    at700_00_20 = Punt (Level 3)     Base Power: 0.40     Increment: 0.05     Legit Max Power: 0.5  (00 00 00 19)
    at700_00_10 = Punt (Level 2)     Base Power: 0.25     Increment: 0.05     Legit Max Power: 0.35 (00 00 00 0A)
    at700_00_00 = Punt (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.2
    ma000_00_40 = Ruin (Level 5)     Base Power: 2.05     Increment: 0.05     Legit Max Power: 2.7 (00 00 00 B4)
    ma000_00_30 = Ruin (Level 4)     Base Power: 1.45     Increment: 0.05     Legit Max Power: 2   (00 00 00 6E)
    ma000_00_20 = Ruin (Level 3)     Base Power: 1.05     Increment: 0.05     Legit Max Power: 1.4 (00 00 00 32)
    ma000_00_10 = Ruin (Level 2)     Base Power: 0.75     Increment: 0.05     Legit Max Power: 1   (00 00 00 0A)
    ma000_00_00 = Ruin (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.7 
    ma020_00_40 = Ruinga (Level 5)     Base Power: 6.65     Increment: 0.20     Legit Max Power: 8.85 (00 00 02 49)
    ma020_00_30 = Ruinga (Level 4)     Base Power: 4.85     Increment: 0.20     Legit Max Power: 6.45 (00 00 01 59)
    ma020_00_20 = Ruinga (Level 3)     Base Power: 3.45     Increment: 0.20     Legit Max Power: 4.65 (00 00 00 A5)
    ma020_00_10 = Ruinga (Level 2)     Base Power: 2.40     Increment: 0.15     Legit Max Power: 3.3  (00 00 00 1E)
    ma020_00_00 = Ruinga (Level 1)     Base Power: ?.??     Increment: 0.15     Legit Max Power: 2.25
    mg500_00_40 = Slow (Level 5)     Base Power: 45s     Increment: 00s     Legit Max Power: 45s (00 00 00 0F)
    mg500_00_30 = Slow (Level 4)     Base Power: 35s     Increment: 10s     Legit Max Power: 35s (00 00 00 05)
    mg500_00_20 = Slow (Level 3)     Base Power: 25s     Increment: 10s     Legit Max Power: 25s (FF FF FF FB)
    mg500_00_10 = Slow (Level 2)     Base Power: 20s     Increment: 05s     Legit Max Power: 20s (FF FF FF F6)
    mg500_00_00 = Slow (Level 1)     Base Power: 15s     Increment: 05s     Legit Max Power: 15s (FF FF FF F1)
    mg700_00_40 = Slowga (Level 5)     Base Power: 30s     Increment: 0s     Legit Max Power: 30s (00 00 00 0F)
    mg700_00_30 = Slowga (Level 4)     Base Power: 25s     Increment: 5s     Legit Max Power: 25s (00 00 00 0A)
    mg700_00_20 = Slowga (Level 3)     Base Power: 20s     Increment: 5s     Legit Max Power: 20s (00 00 00 05)
    mg700_00_10 = Slowga (Level 2)     Base Power: 15s     Increment: 5s     Legit Max Power: 15s (00 00 00 00)
    mg700_00_00 = Slowga (Level 1)     Base Power: 10s     Increment: 5s     Legit Max Power: 10s (FF FF FF FB)
    at010_30_40 = Sparkstrike (Level 5)     Base Power: 1.90     Increment: 0.05     Legit Max Power: 2.55 (00 00 00 AA)
    at010_30_30 = Sparkstrike (Level 4)     Base Power: 1.30     Increment: 0.05     Legit Max Power: 1.85 (00 00 00 64)
    at010_30_20 = Sparkstrike (Level 3)     Base Power: 0.95     Increment: 0.05     Legit Max Power: 1.25 (00 00 00 28)
    at010_30_10 = Sparkstrike (Level 2)     Base Power: 0.65     Increment: 0.05     Legit Max Power: 0.9  (00 00 00 05)
    at010_30_00 = Sparkstrike (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.6
    gd010_00_40 = Steelguard (Level 5)     Base Power: 40%/40%     Increment: 0%/0%     Legit Max Power: 40%/40% (00 00 00 0F)
    gd010_00_30 = Steelguard (Level 4)     Base Power: 35%/35%     Increment: 5%/5%     Legit Max Power: 35%/35% (00 00 00 0A)
    gd010_00_20 = Steelguard (Level 3)     Base Power: 31%/31%     Increment: 4%/4%     Legit Max Power: 31%/31% (00 00 00 06)
    gd010_00_10 = Steelguard (Level 2)     Base Power: 28%/28%     Increment: 3%/3%     Legit Max Power: 28%/28% (00 00 00 03)
    gd010_00_00 = Steelguard (Level 1)     Base Power: 25%/25%     Increment: 3%/3%     Legit Max Power: 25%/25% (00 00 00 00)
    mb230_00_40 = Surge (Level 5)     Base Power: 24.00     Increment: 1     Legit Max Power: 28 (00 00 03 20)
    mb230_00_30 = Surge (Level 4)     Base Power: 20.00     Increment: 1     Legit Max Power: 23 (00 00 01 2C)
    mb230_00_20 = Surge (Level 3)     Base Power: 16.00     Increment: 1     Legit Max Power: 19 (FF FF FF 9C)
    mb230_00_10 = Surge (Level 2)     Base Power: 13.00     Increment: 1     Legit Max Power: 15 (FF FF FE 0C)
    mb230_00_00 = Surge (Level 1)     Base Power: 10.00     Increment: 1     Legit Max Power: 12
    mb220_00_40 = Thundaga (Level 5)     Base Power: 8.14     Increment: 0.32     Legit Max Power: 10.7 (00 00 00 5A)
    mb220_00_30 = Thundaga (Level 4)     Base Power: 5.58     Increment: 0.32     Legit Max Power: 7.82 (00 00 00 36)
    mb220_00_20 = Thundaga (Level 3)     Base Power: 4.14     Increment: 0.16     Legit Max Power: 5.42 (00 00 00 18)
    mb220_00_10 = Thundaga (Level 2)     Base Power: 2.86     Increment: 0.16     Legit Max Power: 3.98 (00 00 00 06)
    mb220_00_00 = Thundaga (Level 1)     Base Power: ?.??     Increment: 0.16     Legit Max Power: 2.7
    mb210_00_40 = Thundara (Level 5)     Base Power: 2.68     Increment: 0.08     Legit Max Power: 3.64 (00 00 00 3D)
    mb210_00_30 = Thundara (Level 4)     Base Power: 1.96     Increment: 0.08     Legit Max Power: 2.6  (00 00 00 23)
    mb210_00_20 = Thundara (Level 3)     Base Power: 1.48     Increment: 0.08     Legit Max Power: 1.88 (00 00 00 11)
    mb210_00_10 = Thundara (Level 2)     Base Power: 1.00     Increment: 0.08     Legit Max Power: 1.4  (00 00 00 05)
    mb210_00_00 = Thundara (Level 1)     Base Power: ?.??     Increment: 0.08     Legit Max Power: 0.92
    mb200_00_40 = Thunder (Level 5)     Base Power: 1.90     Increment: 0.05     Legit Max Power: 2.55 (00 00 00 AA)
    mb200_00_30 = Thunder (Level 4)     Base Power: 1.35     Increment: 0.05     Legit Max Power: 1.85 (00 00 00 64)
    mb200_00_20 = Thunder (Level 3)     Base Power: 0.95     Increment: 0.05     Legit Max Power: 1.3  (00 00 00 2D)
    mb200_00_10 = Thunder (Level 2)     Base Power: 0.65     Increment: 0.05     Legit Max Power: 0.9  (00 00 00 05)
    mb200_00_00 = Thunder (Level 1)     Base Power: ?.??     Increment: 0.05     Legit Max Power: 0.6 
    mb430_00_40 = Tornado (Level 5)     Base Power: 24.00     Increment: 1     Legit Max Power: 28 (00 00 03 20)
    mb430_00_30 = Tornado (Level 4)     Base Power: 20.00     Increment: 1     Legit Max Power: 23 (00 00 01 2C)
    mb430_00_20 = Tornado (Level 3)     Base Power: 16.00     Increment: 1     Legit Max Power: 19 (FF FF FF 9C)
    mb430_00_10 = Tornado (Level 2)     Base Power: 13.00     Increment: 1     Legit Max Power: 15 (FF FF FE 0C)
    mb430_00_00 = Tornado (Level 1)     Base Power: 10.00     Increment: 1     Legit Max Power: 12
    ms900_00_40 = Ultima (Level 5)     Base Power: 24.00     Increment: 1     Legit Max Power: 28 (00 00 03 20)
    ms900_00_30 = Ultima (Level 4)     Base Power: 20.00     Increment: 1     Legit Max Power: 23 (00 00 01 2C)
    ms900_00_20 = Ultima (Level 3)     Base Power: 16.00     Increment: 1     Legit Max Power: 19 (FF FF FF 9C)
    ms900_00_10 = Ultima (Level 2)     Base Power: 13.00     Increment: 1     Legit Max Power: 15 (FF FF FE 0C)
    ms900_00_00 = Ultima (Level 1)     Base Power: 10.00     Increment: 1     Legit Max Power: 12

    A word on abilities: To add to Eternal's post on modding all ability attributes, each level of ability has a different starting power. If you want to shoot for the moon, simply replacing the last four hex pairs with (00 00 FF FF) will more than take care of anything that would come across your path. If you're looking to keep things more legit, I've posted the max powers of each of the abilities above. (Sorry mates. I didn't record the Base Powers and Max Power hex codes for Physical and Magical damage abilities when I started this endeavor. If I restart and collect all of them again, I'll update this table.)

    Auto-Abilities
    Code:
    aa_rat000_00 = Blindside
    aa_rat100_00 = Deprotect Chaser
    aa_rat200_00 = Brave Thief
    aa_rat220_00 = Protect Thief
    aa_rat300_00 = Elemental Chaser
    aa_rat400_00 = Jump
    aa_rat500_00 = Whirlwind Kick
    aa_rat600_00 = Artemis’s Arrows
    aa_rat800_00 = Slayer
    spa_0000 = Strength +10%
    spa_0001 = Strength +25%
    spa_0002 = Strength +45%
    spa_0010 = Magic +10%
    spa_0011 = Magic +25%
    spa_0012 = Magic +45%
    spa_0100 = Fire-Attribute Attacks +10%
    spa_0101 = Fire-Attribute Attacks +12%
    spa_0102 = Fire-Attribute Attacks +15%
    spa_0103 = Fire-Attribute Attacks +20%
    spa_0110 = Ice-Attribute Attacks +10%
    spa_0111 = Ice-Attribute Attacks +12%
    spa_0112 = Ice-Attribute Attacks +15%
    spa_0113 = Ice-Attribute Attacks +20%
    spa_0120 = Lightning-Attribute Attacks +10%
    spa_0121 = Lightning-Attribute Attacks +12%
    spa_0122 = Lightning-Attribute Attacks +15%
    spa_0123 = Lightning-Attribute Attacks +20%
    spa_0130 = Wind-Attribute Attacks +10%
    spa_0131 = Wind-Attribute Attacks +12%
    spa_0132 = Wind-Attribute Attacks +15%
    spa_0133 = Wind-Attribute Attacks +20%
    spa_1000 = Resist Physical Damage +10%
    spa_1001 = Resist Physical Damage +25%
    spa_1002 = Resist Physical Damage +45%
    spa_1010 = Resist Magic Damage +10%
    spa_1011 = Resist Magic Damage +25%
    spa_1012 = Resist Magic Damage +45%
    spa_1100 = Resist Fire Damage +20%
    spa_1101 = Resist Fire Damage +35%
    spa_1102 = Resist Fire Damage +60%
    spa_1110 = Resist Ice Damage +20%
    spa_1111 = Resist Ice Damage +35%
    spa_1112 = Resist Ice Damage +60%
    spa_1120 = Resist Lightning Damage +20%
    spa_1121 = Resist Lightning Damage +35%
    spa_1122 = Resist Lightning Damage +60%
    spa_1130 = Resist Wind Damage +20%
    spa_1131 = Resist Wind Damage +35%
    spa_1132 = Resist Wind Damage +60%
    spa_2000 = Stagger Capability +15%
    spa_2001 = Stagger Capability +20%
    spa_2002 = Stagger Capability +25%
    spa_2010 = Stagger Duration +3%
    spa_2011 = Stagger Duration +5%
    spa_2012 = Stagger Duration +7%
    spa_2013 = Stagger Duration +10%
    spa_4000 = Status Ailment Damage +20%
    spa_4001 = Status Ailment Damage +25%
    spa_4002 = Status Ailment Damage +30%
    spa_4010 = Status Ailment Duration +10%
    spa_4011 = Status Ailment Duration +15%
    spa_4100 = Status Ailments Resistance +10%
    spa_4101 = Status Ailment Resistance +25%
    spa_4102 = Status Ailment Resistance +45%
    spa_5000 = Maximum HP +8%
    wear_hp10p = Maximum HP +10%
    spa_5001 = Maximum HP +20%
    spa_5002 = Maximum HP +35%
    spa_6000 = Auto Bravery (15 secs)
    spa_6001 = Auto Bravery (30 secs)
    spa_6010 = Auto Faith (15 secs)
    spa_6011 = Auto Faith (30 secs)
    spa_6020 = Auto Haste (15 secs)
    spa_6021 = Auto Haste (30 secs)
    spa_6100 = Critical: Protect (30 s)
    spa_6101 = Critical: Protect (60 s)
    spa_6102 = Critical: Protect (120 s)
    spa_6105 = Critical Protect + Regen (60 secs)
    spa_6110 = Critical: Shell (30 s)
    spa_6111 = Critical: Shell (60 s)
    spa_6112 = Critical: Shell (120 s)
    spa_6115 = Critical Shell + Regen (60 secs)
    spa_6120 = Critical Regen (20 secs)
    spa_6121 = Critical Regen (30 secs)
    spa_6122 = Critical Regen (45 secs)
    spa_6130 = Critical Bravery (20 secs)
    spa_6131 = Critical Bravery (40 secs)
    spa_6132 = Critical Bravery (60 secs)
    spa_6135 = Critical Bravery + Haste (60 secs)
    spa_6140 = Critical Faith (20 secs)
    spa_6141 = Critical Faith (40 secs)
    spa_6142 = Critical Faith (60 secs)
    spa_6145 = Critical Faith + Haste (60 secs)
    spa_6150 = Critical Haste (20 secs)
    spa_6151 = Critical Haste (40 secs)
    spa_6152 = Critical Haste (60 secs)
    spa_6155 = Critical Haste + Vigilance (60 Secs)
    spa_6160 = Critical Vigilance + Veil (45 secs)
    spa_6161 = Critical Vigilance + Veil (90 secs)
    spa_6162 = Critical Vigilance + Veil (180 secs)
    spa_6200 = Tithed Bravery
    spa_7100 = Group Defense +16%
    spa_7101 = Group Defense +18%
    spa_7102 = Group Defense +20%
    spa_7200 = Undaunted Lv. 1
    spa_7201 = Undaunted Lv. 2
    spa_7202 = Undaunted Lv. 3
    spa_7300 = Multiple Targets +10%
    spa_7301 = Multiple Targets +20%
    spa_7302 = Multiple Targets +30%
    spa_7400 = Strength in Numbers +16%
    spa_7401 = Strength in Numbers +18%
    spa_7402 = Strength in Numbers +20%
    spa_9000 = Chance Reprieve
    wear_asp_d = Vengeance Siphon
    wear_at020 = Strength +20
    wear_at040 = Strength +40
    wear_at080 = Strength +80
    wear_at140 = Strength +110
    wear_at180 = Strength +120
    wear_at220 = Strength +130
    wear_at300 = Strength +150
    wear_at380 = Strength +180
    wear_at420 = Strength +200
    wear_at460 = Strength +220
    wear_at500 = Strength +250
    wear_atbup_05 = Maximum ATB +5
    wear_atbup_10 = Maximum ATB +10
    wear_atbup_15 = Maximum ATB +15
    wear_gd020 = Guard Efficiency +20
    wear_gd030 = Guard Efficiency +30
    wear_hp0100 = Maximum HP +100
    wear_hp0200 = Maximum HP +150
    wear_hp0300 = Maximum HP +180
    wear_hp0500 = Maximum HP +260
    wear_hp1200 = Maximum HP +500
    wear_hp1500 = Maximum HP +600
    wear_hp2000 = Maximum HP +800
    wear_hp2500 = Maximum HP +1000
    wear_hp3000 = Maximum HP +1250
    wear_mg020 = Magic +20
    wear_mg040 = Magic +40
    wear_mg080 = Magic +80
    wear_mg140 = Magic +110
    wear_mg180 = Magic +120
    wear_mg220 = Magic +130
    wear_mg300 = Magic +150
    wear_mg380 = Magic +180
    wear_mg420 = Magic +200
    wear_mg460 = Magic +220
    wear_mg500 = Magic +250
    wear_mx010 = Strength & Magic +10
    wear_mx040 = Strength & Magic +30
    wear_mx090 = Strength & Magic +60
    wear_mx150 = Strength & Magic +100
    wear_mx210 = Strength & Magic +150
    wear_rgp_e = Victor's Rush
    wear_sp005 = ATB Recovery +5
    wear_sp010 = ATB Recovery +10
    wear_sp015 = ATB Recovery +15
    wear_sp020 = ATB Recovery +20
    wear_sp030 = ATB Recovery +30
    wear80_500 = Standby ATB Recovery
    wear80_510 = Sweet Spot
    wear80_540 = Stagger Booster
    wear80_550 = ATB Recycler
    wear80_560 = Committal
    wear80_570 = Grand Wizard
    wear80_600 = Strong Finale +15%
    wear80_601 = Strong Finale +25%


    Recovery Items
    Code:
    Offset: 1C56C
    it_potion = Potion
    it_hpotion = Hi-Potion
    it_expotion = X-Potion
    it_universal = Remedy
    it_unico = Mega Remedy
    it_phenxtal = Phoenix Down
    it_phenxbl = Phoenix Wing
    it_lowelxr = Refresher
    it_elixir = Elixir
    it_atel = Ether
    it_hiatel = Turbo Ether
    it_protect = Protect Potion
    it_shell = Shell Potion
    it_brave = Bravery Potion
    it_faith = Faith Potion
    it_guts = Vigilance Potion
    it_veil = Veil Potion
    it_haste = Haste Potion
    it_regen = Regen Potion
    it_reraise = Reraise Potion
    it_enfire = Enfire Potion
    it_enthunder = Enthunder Potion
    it_enfrost = Enfrost Potion
    it_enaero = Enaero Potion
    it_hero = Hero's Potion
    it_war = Crusader's Potion
    it_upper = Warrior's Potion
    it_grace = Holy Water
    it_ydrink1 = Nektar
    it_ydrink2 = Nektar Mk II
    it_ydrink3 = Mirakle Nektar
    it_ydrink4 = Nektar of the Gods
    it_ydrink5 = Nektar of the Gods Ω



    Components
    Code:
    Offset: 1DEEC
    mat_abi_0_08 = Crystal Malistone
    mat_abi_0_07 = Orichalc Malistone
    mat_abi_0_06 = Scarletite Malistone
    mat_abi_0_05 = Adamant Malistone
    mat_abi_0_04 = Mythril Malistone
    mat_abi_0_03 = Platinum Malistone
    mat_abi_0_02 = Gold Malistone
    mat_abi_0_01 = Silver Malistone
    mat_abi_0_00 = Bronze Malistone
    mat_cus_0_00 = Mighty Material
    mat_cus_0_01 = Sword Polisher
    mat_cus_0_02 = Shield Polisher
    mat_cus_0_03 = Holy Forgefire
    mat_cus_0_04 = Demonic Forgefire
    mat_cus_0_05 = Life Smeltwater
    mat_cus_0_06 = Soul Smeltwater



    Other Items
    Code:
    Offset: 236E0
    gil_r_010 = Platinum Ore
    gil_r_000 = Gold Dust
    gil_l_020 = Crystal Medal
    gil_l_010 = Silvered Medal
    gil_l_000 = Bronzed Medal
    gil_d_000 = Unappraised Item
    gil_d_010 = Lizard Tail
    gil_d_020 = Yellowed Skull
    key_w_tane = Vegetable Seed
    key_w_yasai = Gysahl Greens
    key_w_shiru = Sylkis Greens
    key_w_tanta = Tantal Greens
    key_w_hana2 = Moonsoul Bloom
    key_w_hana3 = Dayring Blossom
    key_w_milk = Fuzzy Sheep Milk
    key_w_smilk = Creamy Sheep Milk
    key_w_kino = Chocoborel
    key_w_kino2 = Luminous Mushroom
    key_w_drink = Chocobull
    key_w_drag2 = Animal Potion
    key_w_food = Mystical Meal
    mat_z_000 = Tattered Leather
    mat_z_001 = Vibrant Ooze
    mat_z_002 = Niblet Hairball
    mat_z_003 = Slug Sweet
    mat_z_004 = Monster Mince
    mat_z_007 = Clear Ooze
    mat_z_008 = Green Leather
    mat_z_009 = Radial Bearing
    mat_z_010 = Goblot Hairball
    mat_z_011 = Arboreal Spore
    mat_z_012 = Dead Man's Teeth
    mat_z_013 = Chipped Fang
    mat_z_014 = Shattered Bone
    mat_z_015 = Goopy Goo
    mat_z_016 = Pot Shard
    mat_z_017 = Dried Scale
    mat_z_018 = Wonder Gel
    mat_z_019 = Poisonous Sting
    mat_z_020 = Motor Coil
    mat_z_021 = Ether Coil
    mat_z_022 = Demon Spicule
    mat_z_024 = Organic Carapace
    mat_z_028 = Firewyrm Scale
    mat_z_029 = Quality Machine Oil
    mat_z_030 = Sinister Fang
    mat_z_031 = Stormdragon Down
    mat_z_032 = Green Monster Moss
    mat_z_033 = Desert Rose
    mat_z_035 = Single Eye
    mat_z_036 = AMP Chip
    mat_z_044 = Cactuar Doll
    mat_z_045 = Liquid Glass


    Editable Key Items
    (Yes, you can edit the others but it can break the game. These are the safe ones.)
    Code:
    Offset: 1E97C
    key_sm_lt = Soul Seed
    key_y_fire = Fireworks
    key_d_key = Pilgrim's Crux
    key_d_oil = Bhakti's Oil
    key_w_mori = Forest Fertilizer
    key_w_mash = Crimm Mushroom
    key_w_apple = Aryas Apple
    key_w_mogura = Rocky Crag Mole


    Enjoy!
    Last edited by lobotomizedgod; 04-20-2014 at 02:02 AM.

  8. #112
    Junior Member
    J4Fusion is offline
    Join Date : Mar 2014
    Posts : 4
    Array

    Re: Simple Hex Modding Final Fantasy XIII-3: Lightning Returns

    yeah, I cant do it I try to switching one of my copied abilities I dont need to a Heavy Slash (Level *) w/ Artemis’s Arrows but I got it code name with no stats instead & I tried looking it again after that start smelling copper from my head I need an easy way of doing this...... help me understand or something

 

 

Similar Threads

  1. Review - Lightning Returns: Final Fantasy XIII
    By THUMBS in forum Youtube Famous
    Replies: 2
    Last Post: 02-11-2014, 05:06 PM
  2. [YouTube] Battle System - LIGHTNING RETURNS: FINAL FANTASY XIII
    By CloudStrife7x in forum Youtube Famous
    Replies: 5
    Last Post: 01-25-2014, 04:54 PM
  3. 'Final Fantasy XIII - Lightning Returns' announced!
    By Ryudo in forum Youtube Famous
    Replies: 7
    Last Post: 09-03-2012, 01:30 AM

Visitors found this page by searching for:

lightning returns mods

how to mod ability in lightning return

lrff13 how to move locked abilities

FFXIII LR edit ability stats

ff XIII lightning returns code game genie ps3

Hack ffxiii lightning returns horizon

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

About 360haven

    360haven is an Forum Devoted To Game modding Fans from all over the world.

    An Awesome Community of Xbox 360 Gamers, Modders and Developers who Create & Share Tutorials, Applications, Gfx, Trainers and Gamesaves.

    A haven for the l33t.
    A scarce paradise for modders.

★★★★★¯\_(ツ)_/¯