Users browsing this thread: 1 Guest(s)
Character's Gender for Shop Price Modifiers

#1
Posts: 76
Threads: 20
Thanks Received: 2
Thanks Given: 4
Joined: Apr 2012
Reputation: 0
Status
None
Does anyone know how to change the character's gender? I would like to change Gogo's gender to female since I'm using all the unused shop price modifier.
  Find
Quote  

#2
Posts: 3,969
Threads: 279
Thanks Received: 236
Thanks Given: 57
Joined: Oct 2011
Reputation: 65
Status
Tissue-aware
The two modifiers check for Celes, Terra and Relm. You'll have to add an exception for Gogo too:

Code:
Halve price if female leads, raise by 50% otherwise (unused)
C3/BA5A:    48          PHA            ; Save price
C3/BA5B:    E220        SEP #$20       ; 8-bit A
C3/BA5D:    AD0202      LDA $0202      ; Leader sprite
C3/BA60:    C906        CMP #$06       ; Celes?
C3/BA62:    F00D        BEQ $BA71      ; Halve if so
C3/BA64:    C908        CMP #$08       ; Relm?
C3/BA66:    F009        BEQ $BA71      ; Halve if so
C3/BA68:    C900        CMP #$00       ; Terra?
C3/BA6A:    F005        BEQ $BA71      ; Halve if so
C3/BA6C:    C220        REP #$20       ; 16-bit A
C3/BA6E:    68          PLA            ; Base price
C3/BA6F:    80DE        BRA $BA4F      ; Add 50%
C3/BA71:    C220        REP #$20       ; 16-bit A
C3/BA73:    68          PLA            ; Base price
C3/BA74:    80E2        BRA $BA58      ; Halve it

Halve price if male leads, raise by 50% otherwise (unused)
C3/BA76:    48          PHA            ; Save price
C3/BA77:    E220        SEP #$20       ; 8-bit A
C3/BA79:    AD0202      LDA $0202      ; Leader sprite
C3/BA7C:    C906        CMP #$06       ; Celes?
C3/BA7E:    F00D        BEQ $BA8D      ; +50% if so
C3/BA80:    C908        CMP #$08       ; Relm?
C3/BA82:    F009        BEQ $BA8D      ; +50% if so
C3/BA84:    C900        CMP #$00       ; Terra?
C3/BA86:    F005        BEQ $BA8D      ; +50% if so
C3/BA88:    C220        REP #$20       ; 16-bit A
C3/BA8A:    68          PLA            ; Base price
C3/BA8B:    80CB        BRA $BA58      ; Halve it
C3/BA8D:    C220        REP #$20       ; 16-bit A
C3/BA8F:    68          PLA            ; Base price
C3/BA90:    80BD        BRA $BA4F      ; Add 50%
  Find
Quote  
[-] The following 1 user says Thank You to madsiur for this post:
  • Fenrir (04-13-2018)



Forum Jump:

Users browsing this thread: 1 Guest(s)


Theme by Madsiur2017Custom Graphics by JamesWhite