In addition to below compendium information: Here's the offset for the Flowers in Mementos. Still trying to find a way to do stamps, but I think that might be flag based.
Also, regarding bullets, they seem to kind of work: If you set them to freeze you'll always have more on your next turn, but I can't seem to get it to just let you fire wildly until whatever it is is dead which is kind of what I want. I have a feeling that's going to be CONSIDERABLY harder though.
Bullet addresses for Joker, Mona, Ryuji, and Ann respectively. The others are pretty easy to see, but I want to actually test them first.
Code: Select all
P5R.exe+297B6A4
P5R.exe+297BBE4
P5R.exe+297B944
P5R.exe+297BE84
I was going to do some data legwork on getting some kind of "unlock everything in the compendium" button, but I ran into an interesting issue: The treasure demons can have up to three random traits according to the wiki, so I'm not sure HOW that's supposed to work.
Also, the trait list is missing Skillful Technique trait, used by Makami, Leanan Sidhe, Scathach, Thoth, Parvati, and Mithras.
Here are the trait lists I found for each demon:
Code: Select all
Stone of Scone💎
Gluttonmouth\Intense Focus\Relentless
Koh-i-Noor💎
Rare Antibody\Bloodstained Eyes\Crisis Control
Orlov💎
Heated Bloodline\Electric Bloodline\Atomic Bloodline
Emperor's Amulet💎
Frigid Bloodline\Wind Bloodline\Psychic Bloodline
Hope Diamond💎
Retaliating Body\Striking Weight\Internal Hypnosis
Orichalcum💎
Gluttonmouth\Blessed Bloodline\Immunity
And here's the parsed out info I have: Example being Metatron.
Note that I include stuff that isn't really needed: Like the data I parsed right from the megamitensei.fandom.com wiki. i means it's unlocked from the base level, aka include this skill when unlocking. I'd also not include party personas in any unlock script: The ones with all 0 stats, essentially.
Code: Select all
{
"ID": "1",
"Name": "Metatron",
"Raw Stat Content": [
"{{Stats|p5r",
"|quote= \"I am Metatron. The power of the chancellor of heaven shall\u003cbr\u003ebecome thy mask and striketh down the army of darkness...\"",
"|Level= 89",
"|arcana= Justice ",
"|persona= 1",
"|St= 54",
"|Ma= 61",
"|En= 60",
"|Ag= 57",
"|Lu= 42",
"|Inherit= Bless",
"|Reflect= Wind",
"|Absorb= Psy, Nuclear",
"|Block= ",
"|Resist= ",
"|Weak= Electricity, Curse",
"|ptrait= Martyr\u0027s Gift",
"|elecchair= [[Nataraja]] (normal); [[Nataraja EX]] ([[Fusion alarm|fusion alarm]])",
"|skills=",
"Mahamaon\\i",
"Sword Dance\\i",
"Makougaon\\i",
"Megidolaon\\91",
"Hama Boost\\92",
"Concentrate\\93",
"Bless Amp\\94",
"Divine Judgement\\95",
"}}"
],
"Arcana": "Justice",
"Base Level": 89,
"Strength": 54,
"Magic": 61,
"Endurance": 60,
"Agility": 57,
"Luck": 42,
"Skills": [
{
"ID": 53,
"Name": "Mahamaon",
"Level": "i"
},
{
"ID": 213,
"Name": "Sword Dance",
"Level": "i"
},
{
"ID": 59,
"Name": "Makougaon",
"Level": "i"
},
{
"ID": 29,
"Name": "Megidolaon",
"Level": "91"
},
{
"ID": 906,
"Name": "Hama Boost",
"Level": "92"
},
{
"ID": 361,
"Name": "Concentrate",
"Level": "93"
},
{
"ID": 979,
"Name": "Bless Amp",
"Level": "94"
},
{
"ID": 160,
"Name": "Divine Judgement",
"Level": "95"
}
],
"Trait": "Martyr\u0027s Gift"
}
I've got all the json encoded info (if you want to do some parsing or look over yourself, as this WAS mostly automated through a series of hacked together powershell commands of all things which I didn't bother saving) attached so the last mile as it were can be finished up after traits are figured out.