FF6 Hacking
Charm Bangle + Moogle Charm - Printable Version

+- FF6 Hacking (https://www.ff6hacking.com/forums)
+-- Forum: Discussion Forums (https://www.ff6hacking.com/forums/forum-5.html)
+--- Forum: Magitek Research Facility (https://www.ff6hacking.com/forums/forum-9.html)
+--- Thread: Charm Bangle + Moogle Charm (/thread-3980.html)



Charm Bangle + Moogle Charm - PowerPanda - 04-02-2020

This is a change that I implemented today, and thought I would document here. In the C0 bank, you can define encounter rates for overworld and dungeon, using no relics, the charm bangle (50% less), the moogle charm (no encounters), or both together (which is the same as the moogle charm). I have reduced the number of encounters in the base game by 25% out of the gate, so the charm bangle ended up being too few encounters. I got the idea today to have the charm bangle INCREASE the encounter rate, for grinding purposes, and implemented the following encounter rate changes:

Normal: 100% (75% of vanilla)
Charm Bangle: 150% (1.125% of vanilla)
Moogle Charm: 0%
Charm Bangle + Moogle Charm together: 50% (0.375% of vanilla)

Here are the hex changes that I made for it. Happy hacking.

Code:
[Overworld Encounter Rate]
(Normal. Neither Moogle Charm/Lure) (Note: 75% of vanilla rom)
C0/C29F:    C0 00 > 90 00    (Normal)
C0/C2A1:    60 00 > 48 00    (Less)
C0/C2A3:    80 01 > 60 00    (More)
C0/C2A5:    00 00 > 00 00    (None)

(Moogle Lure - Increases Encounters by 50%)
C0/C2A7:    60 00 > D8 00    (Normal)
C0/C2A9:    30 00 > 6C 00    (Less)
C0/C2AB:    C0 00 > 90 00    (More)
C0/C2AD:    00 00 > 00 00    (None)

(Moogle Charm - Drops Encounters to 0%)
C0/C2AF:    00 00 > 00 00     (Normal)
C0/C2B1:    00 00 > 00 00     (Less)
C0/C2B3:    00 00 > 00 00     (More)
C0/C2B5:    00 00 > 00 00     (None)

(Moogle Charm + Moogle Ward. Decreases Encounter by 50%)
C0/C2B7:    0000 > 48 00     (Normal)
C0/C2B9:    0000 > 24 00     (Less)
C0/C2BB:    0000 > 30 00     (More)
C0/C2BD:    0000 > 00 00     (None)

[Dungeon Encounter Rate]
(Normal. Neither Moogle Charm/Lure) (Note: 75% of vanilla rom)
C0/C2BF:    70 00 > 54 00    (Normal)
C0/C2C1:    40 00 > 30 00    (Less)
C0/C2C3:    60 01 > 48 00    (More)
C0/C2C5:    00 02 > 00 00    (None)

(Moogle Lure - Increases Encounters by 50%)
C0/C2C7:    38 00 > 7E 00    (Normal)
C0/C2C9:    20 00 > 48 00    (Less)
C0/C2CB:    B0 00 > 6C 00    (More)
C0/C2CD:    00 01 > 00 00    (None)

(Moogle Charm - Drops Encounters to 0%)
C0/C2CF:    00 00 > 00 00     (Normal)
C0/C2D1:    00 00 > 00 00     (Less)
C0/C2D3:    00 00 > 00 00     (More)
C0/C2D5:    00 00 > 00 00     (None)

(Moogle Charm + Moogle Ward. Decreases Encounter by 50%)
C0/C2D7:    00 00 > 2A 00     (Normal)
C0/C2D9:    00 00 > 18 00     (Less)
C0/C2DB:    00 00 > 24 00     (More)
C0/C2DD:    00 00 > 00 00     (None)



RE: Charm Bangle + Moogle Charm - Lightning - 04-03-2020

That is actually a good idea! Kind of reminds me of the Harp in Dragon Warrior that actually brings monsters to you instead of avoiding them. I might implement this in my hack.


RE: Charm Bangle + Moogle Charm - PowerPanda - 04-03-2020

I actually got the idea from playing Bravely Default and Bravely Second, where the encounter rate can be set from the menu. I didn't want to go through the hassle of making the option available from the menu and removing the code that checks to see if you have either relic equipped, so this was a good streamlining for my hack.