ROM Hack FE Fates USA: Custom Playable Characters DLC

KunoichiZ

Well-Known Member
Member
Joined
Mar 16, 2012
Messages
8,830
Trophies
0
Age
28
XP
4,597
Country
United States
@DeathChaos25, when you have the opportunity, can I get the following from your classes and characters:
-Characters: base stats, stat modifiers, hair color in RGB, isFemale (that's an option in the Characters.xml file), isBeast, and canUseDragonVein
-Classes: base stats, max stats, weapons used, growth rates, is a promoted unit, isSpecial (an option in Classes.xml), isFemale (another option), and isNPConly

Thanks in advance!
 

DeathChaos

Unmei wo koeru!
OP
Member
Joined
Oct 21, 2015
Messages
1,364
Trophies
0
Age
29
XP
1,736
Country
Puerto Rico
@DeathChaos25, when you have the opportunity, can I get the following from your classes and characters:
-Characters: base stats, stat modifiers, hair color in RGB, isFemale (that's an option in the Characters.xml file), isBeast, and canUseDragonVein
-Classes: base stats, max stats, weapons used, growth rates, is a promoted unit, isSpecial (an option in Classes.xml), isFemale (another option), and isNPConly

Thanks in advance!
I do have a few blocks of this info mapped out since I thought about that a few days ago.

in the Enums folder;

For Character.cs

Chrom = 0x600,
Frederick = 0x601,
Lissa = 0x602,
Garon = 0x603,
Mikoto = 0x604,
Sumeragi = 0x605,
LilithHuman = 0x607,
Witch = 0x1A06,
Arete = 0x609,

For Classs.cs
Lord = 0x81,
Cleric = 0x83,

For classes.xml
<class id="129" name="Lord">
<text lang="English" displayName="Lord" />
<text lang="Japanese" displayName="ロード" />
<baseStats hp="18" str="8" mag="1" skl="8" spd="9" lck="5" def="7" res="3" />
<maxStats hp="60" str="30" mag="25" skl="32" spd="34" lck="35" def="29" res="31" />
<weaponsUsed sword="true" lance="true" axe="false" shuriken="false" bow="false" tome="false" staff="false" stone="false" />
<growthRates hp="15" str="15" mag="0" skl="10" spd="10" lck="15" def="10" res="5" />
<categories isPromoted="false" isSpecial="true" isFemale="false" isNpcOnly="true" />
</class>
<class id="131" name="Cleric">
<text lang="English" displayName="Cleric" />
<text lang="Japanese" displayName="シスター" />
<baseStats hp="16" str="0" mag="7" skl="6" spd="7" lck="2" def="3" res="6" />
<maxStats hp="45" str="25" mag="33" skl="31" spd="32" lck="27" def="25" res="31" />
<weaponsUsed sword="false" lance="false" axe="true" shuriken="false" bow="false" tome="false" staff="true" stone="false" />
<growthRates hp="0" str="0" mag="20" skl="10" spd="15" lck="0" def="0" res="15" />
<categories isPromoted="false" isSpecial="true" isFemale="true" isNpcOnly="true" />
</class>

And for Characters.xml
<character id="1542" name="Chrom">
<text lang="English" displayName="Chrom" />
<text lang="Japanese" displayName="クロム" />
<baseStats hp="2" str="1" mag="1" skl="3" spd="1" lck="1" def="0" res="-1" />
<modifier hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
<flags canUseStones="false" isCorrin="false" isChild="false" isPrisoner="false" isFemale="false" isManakete="false" isBeast="false" canUseDragonVein="true" />
<hairColor r="255" g="255" b="255" a="255" />
<growthRates hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
</character>
<character id="1543" name="Frederick">
<text lang="English" displayName="Frederick" />
<text lang="Japanese" displayName="フレデリク" />
<baseStats hp="7" str="3" mag="2" skl="6" spd="4" lck="3" def="4" res="1" />
<modifier hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
<flags canUseStones="false" isCorrin="false" isChild="false" isPrisoner="false" isFemale="false" isManakete="false" isBeast="false" canUseDragonVein="false" />
<hairColor r="255" g="255" b="255" a="255" />
<growthRates hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
</character>
<character id="1544" name="Lissa">
<text lang="English" displayName="Lissa" />
<text lang="Japanese" displayName="リズ" />
<baseStats hp="1" str="1" mag="1" skl="1" spd="0" lck="4" def="3" res="-2" />
<modifier hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
<flags canUseStones="false" isCorrin="false" isChild="false" isPrisoner="false" isFemale="true" isManakete="false" isBeast="false" canUseDragonVein="true" />
<hairColor r="255" g="255" b="255" a="255" />
<growthRates hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
</character>

And that's as far as I've documented them, since I've been doing other stuff like figuring out how enemy stats are built and calculated, etc.
 
  • Like
Reactions: KunoichiZ

KunoichiZ

Well-Known Member
Member
Joined
Mar 16, 2012
Messages
8,830
Trophies
0
Age
28
XP
4,597
Country
United States
I do have a few blocks of this info mapped out since I thought about that a few days ago.

in the Enums folder;

For Character.cs

Chrom = 0x600,
Frederick = 0x601,
Lissa = 0x602,
Garon = 0x603,
Mikoto = 0x604,
Sumeragi = 0x605,
LilithHuman = 0x607,
Witch = 0x1A06,
Arete = 0x609,

For Classs.cs
Lord = 0x81,
Cleric = 0x83,

For classes.xml
<class id="129" name="Lord">
<text lang="English" displayName="Lord" />
<text lang="Japanese" displayName="ロード" />
<baseStats hp="18" str="8" mag="1" skl="8" spd="9" lck="5" def="7" res="3" />
<maxStats hp="60" str="30" mag="25" skl="32" spd="34" lck="35" def="29" res="31" />
<weaponsUsed sword="true" lance="true" axe="false" shuriken="false" bow="false" tome="false" staff="false" stone="false" />
<growthRates hp="15" str="15" mag="0" skl="10" spd="10" lck="15" def="10" res="5" />
<categories isPromoted="false" isSpecial="true" isFemale="false" isNpcOnly="true" />
</class>
<class id="131" name="Cleric">
<text lang="English" displayName="Cleric" />
<text lang="Japanese" displayName="シスター" />
<baseStats hp="16" str="0" mag="7" skl="6" spd="7" lck="2" def="3" res="6" />
<maxStats hp="45" str="25" mag="33" skl="31" spd="32" lck="27" def="25" res="31" />
<weaponsUsed sword="false" lance="false" axe="true" shuriken="false" bow="false" tome="false" staff="true" stone="false" />
<growthRates hp="0" str="0" mag="20" skl="10" spd="15" lck="0" def="0" res="15" />
<categories isPromoted="false" isSpecial="true" isFemale="true" isNpcOnly="true" />
</class>

And for Characters.xml
<character id="1542" name="Chrom">
<text lang="English" displayName="Chrom" />
<text lang="Japanese" displayName="クロム" />
<baseStats hp="2" str="1" mag="1" skl="3" spd="1" lck="1" def="0" res="-1" />
<modifier hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
<flags canUseStones="false" isCorrin="false" isChild="false" isPrisoner="false" isFemale="false" isManakete="false" isBeast="false" canUseDragonVein="true" />
<hairColor r="255" g="255" b="255" a="255" />
<growthRates hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
</character>
<character id="1543" name="Frederick">
<text lang="English" displayName="Frederick" />
<text lang="Japanese" displayName="フレデリク" />
<baseStats hp="7" str="3" mag="2" skl="6" spd="4" lck="3" def="4" res="1" />
<modifier hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
<flags canUseStones="false" isCorrin="false" isChild="false" isPrisoner="false" isFemale="false" isManakete="false" isBeast="false" canUseDragonVein="false" />
<hairColor r="255" g="255" b="255" a="255" />
<growthRates hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
</character>
<character id="1544" name="Lissa">
<text lang="English" displayName="Lissa" />
<text lang="Japanese" displayName="リズ" />
<baseStats hp="1" str="1" mag="1" skl="1" spd="0" lck="4" def="3" res="-2" />
<modifier hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
<flags canUseStones="false" isCorrin="false" isChild="false" isPrisoner="false" isFemale="true" isManakete="false" isBeast="false" canUseDragonVein="true" />
<hairColor r="255" g="255" b="255" a="255" />
<growthRates hp="0" str="0" mag="0" skl="0" spd="0" lck="0" def="0" res="0" />
</character>

And that's as far as I've documented them, since I've been doing other stuff like figuring out how enemy stats are built and calculated, etc.
Thank you so much!

Also, @DeathChaos25, what do you want me to use for the other characters' base stats in Characters.xml?
 
Last edited by KunoichiZ,

A FE Fates guy

Well-Known Member
Newcomer
Joined
Aug 25, 2016
Messages
49
Trophies
0
Age
59
XP
77
Country
United States
I know Chrom, Frederick and Lissa wouldn't work because of the Awakening Assets, but could I use FEFTwiddler to put in Sumeragi, Garon, Mikoto and Human Lilith?
 

A FE Fates guy

Well-Known Member
Newcomer
Joined
Aug 25, 2016
Messages
49
Trophies
0
Age
59
XP
77
Country
United States
Ciphers weren't included in the extdata, no Arete is weird though.
Ah, okay, and I am installing both Yours and Omegablu's DLC, and your Arete was the one I never seen, so I wanted to use yours for it and since it didn't give her to me, I was confused XD

--------------------- MERGED ---------------------------

Also, some characters will irk online, I fought a guy with Sumeragi, Mikoto and Arete
 

JimmyVKid123

Member
Newcomer
Joined
Sep 17, 2016
Messages
14
Trophies
0
XP
75
Country
United States
Hi @DeathChaos25 ,

I really appreciate your effort and time in making this for all of us. A big thanks to you! I have two questions:

1) The first one is regarding pair up with Nohrian King Garon. My understanding is that normally you can't have anyone pair up with someone who has the Nohrian King class. But in one of your screenshots I see you were able to pair Garon with Chrom. I wonder how you did that.

2) Garon does not benefit from the stat cap boosts from the gold (lvl 3) statues, while Sumeragi does. What can I do to make Garon also benefit from the statues?

Thank you very much in advance for your time!
 
Last edited by JimmyVKid123,

whitewolf8

Resident Lunatic
Member
Joined
Jun 22, 2016
Messages
310
Trophies
0
XP
1,010
Country
Australia
1) The first one is regarding pair up with Nohrian King Garon. My understanding is that normally you can't have anyone pair up with someone who has the Nohrian King class. But in one of your screenshots I see you were able to pair Garon with Chrom. I wonder how you did that.
Chrom's paired up with Frederick there, haha.
 

DeathChaos

Unmei wo koeru!
OP
Member
Joined
Oct 21, 2015
Messages
1,364
Trophies
0
Age
29
XP
1,736
Country
Puerto Rico
I mean the picture on the right with Chrom's image, where Chrom and Garon are dashing in the same direction...
Chrom is attacking Garon, it's the second part of the screenshot to the left, Frederick has Bold Stance, he was paired up to Chrom, Frederick got a Luna proc and then Chrom attacked (because of Bold Stance) while also getting a crit himself.
 

Grima

Well-Known Member
Member
Joined
Jul 2, 2016
Messages
118
Trophies
0
Age
24
XP
109
Country
United States
I mean the picture on the right with Chrom's image, where Chrom and Garon are dashing in the same direction...
Chrom just attacked Garon and ended up on the same side as Garon. Chrom is still paired up with rederick though. You can't pair up Nohrin King's with anyone sadly.

EDIT: Ninja'd
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • AncientBoi @ AncientBoi:
    :sad::sad::sad::sad::sad: l8er guys ..................... 🚪
  • Xdqwerty @ Xdqwerty:
    Later too...
  • BigOnYa @ BigOnYa:
    Damn @Xdqwerty chasing off users like a Juan
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Welcome to the internet! Lol
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    He just means that some conversations are light and funny, Madonna having sex with a dog? Hilarious! Your uncle beating your dog then making you watch him molest it? Kinda ehhhh drama lol
    +2
  • Xdqwerty @ Xdqwerty:
    @BigOnYa, why do people hate seasons 20 and 23 of south park?
  • BigOnYa @ BigOnYa:
    I don't know. People hate and down vote everything nowdays. I see it especially on gamestores, like every game has a negative rating, even though they are good games.
  • BigOnYa @ BigOnYa:
    With south park, they speak the truth, whether people like it or not, then peeps get they're panties in a bunch.
    +1
  • Xdqwerty @ Xdqwerty:
    See ya later fr
    +1
  • BigOnYa @ BigOnYa:
    Later gator
    +2
  • G @ GamerGatorDoesTech:
    @BigOnYa i thought that was like a specific comment towards me
    +1
  • BigOnYa @ BigOnYa:
    Lol
  • ModernSithLord @ ModernSithLord:
    lol later gator that was good one @BigOnYa
    +1
  • Shgofc @ Shgofc:
    if i think i exist, then, i dont exi...
  • K3Nv2 @ K3Nv2:
    They started hating later seasons because it turned into half seasons and specials
    +1
  • K3Nv2 @ K3Nv2:
    People in youtube comments are such dick riders "oh I can't believe he said that to you" clicks on other video "wow this is amazing."
    +1
  • BigOnYa @ BigOnYa:
    Everyone is triggered nowadays too easy, bunch of pansies.
  • BigOnYa @ BigOnYa:
    1st video- That's why I hate ordering stuff online, if I can just go pick it up myself nearby. Wal-Mart online did that to me years ago, sent wrong item, I went to Wal-Mart by me to return, but noo, I had to mail it back and wait.
  • Psionic Roshambo @ Psionic Roshambo:
    99% of the time ordering online I have had flawless experiences, only time something was messed up, I ordered a big TV from Amazon and it came smashed the box was literally like some one jumped up and down on it, didn't even open it, contacted Amazon sent them pictures, they made me open it and take more pictures, free label to return it and they sent another. So it was relatively painless. But still annoying.
    +1
  • K3Nv2 @ K3Nv2:
    I did it just because I don't like you
    K3Nv2 @ K3Nv2: I did it just because I don't like you