mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
commit
8c51de1aba
@ -44,3 +44,6 @@ PRINTNUM_LEADINGZEROS EQU 1 << PRINTNUM_LEADINGZEROS_F
|
|||||||
; character sets (see charmap.asm)
|
; character sets (see charmap.asm)
|
||||||
FIRST_REGULAR_TEXT_CHAR EQU $60
|
FIRST_REGULAR_TEXT_CHAR EQU $60
|
||||||
FIRST_HIRAGANA_DAKUTEN_CHAR EQU $20
|
FIRST_HIRAGANA_DAKUTEN_CHAR EQU $20
|
||||||
|
|
||||||
|
; gfx/font/unown_font.png
|
||||||
|
FIRST_UNOWN_CHAR EQU $40
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
HappinessData_OlderHaircutBrother:
|
HappinessData_OlderHaircutBrother:
|
||||||
db $4c, 2, HAPPINESS_OLDERCUT1 ; 30% chance
|
db $4c, 2, HAPPINESS_OLDERCUT1 ; 30% chance
|
||||||
db $80, 3, HAPPINESS_OLDERCUT2 ; 20% chance
|
db $80, 3, HAPPINESS_OLDERCUT2 ; 50% chance
|
||||||
db $ff, 4, HAPPINESS_OLDERCUT3 ; 50% chance
|
db $ff, 4, HAPPINESS_OLDERCUT3 ; 20% chance
|
||||||
|
|
||||||
HappinessData_YoungerHaircutBrother:
|
HappinessData_YoungerHaircutBrother:
|
||||||
db $9a, 2, HAPPINESS_YOUNGCUT1 ; 60% chance
|
db $9a, 2, HAPPINESS_YOUNGCUT1 ; 60% chance
|
||||||
db $4c, 3, HAPPINESS_YOUNGCUT2 ; 10% chance
|
db $4c, 3, HAPPINESS_YOUNGCUT2 ; 30% chance
|
||||||
db $ff, 4, HAPPINESS_YOUNGCUT3 ; 30% chance
|
db $ff, 4, HAPPINESS_YOUNGCUT3 ; 10% chance
|
||||||
|
|
||||||
HappinessData_DaisysGrooming:
|
HappinessData_DaisysGrooming:
|
||||||
db $ff, 2, HAPPINESS_GROOMING ; 99.6% chance
|
db $ff, 2, HAPPINESS_GROOMING ; 99.6% chance
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
unownword: MACRO
|
unownword: MACRO
|
||||||
x = 1
|
x = 1
|
||||||
rept STRLEN(\1)
|
rept STRLEN(\1)
|
||||||
db STRSUB(\1, x, 1) - $40
|
db STRSUB(\1, x, 1) - "A" + FIRST_UNOWN_CHAR
|
||||||
x = x + 1
|
x = x + 1
|
||||||
endr
|
endr
|
||||||
db -1
|
db -1
|
||||||
|
@ -887,7 +887,7 @@ Pokedex_UnownModeEraseCursor:
|
|||||||
|
|
||||||
Pokedex_UnownModePlaceCursor:
|
Pokedex_UnownModePlaceCursor:
|
||||||
ld a, [wDexCurUnownIndex]
|
ld a, [wDexCurUnownIndex]
|
||||||
ld c, $5a ; diamond cursor
|
ld c, FIRST_UNOWN_CHAR + NUM_UNOWN ; diamond cursor
|
||||||
|
|
||||||
Pokedex_UnownModeUpdateCursorGfx:
|
Pokedex_UnownModeUpdateCursorGfx:
|
||||||
ld e, a
|
ld e, a
|
||||||
@ -1333,7 +1333,7 @@ endr
|
|||||||
ld h, [hl]
|
ld h, [hl]
|
||||||
ld l, a
|
ld l, a
|
||||||
pop af
|
pop af
|
||||||
add $40 - 1 ; Unown A
|
add FIRST_UNOWN_CHAR - 1 ; Unown A
|
||||||
ld [hl], a
|
ld [hl], a
|
||||||
inc de
|
inc de
|
||||||
inc b
|
inc b
|
||||||
@ -2489,7 +2489,7 @@ Pokedex_LoadUnownFont:
|
|||||||
ld bc, (NUM_UNOWN + 1) tiles
|
ld bc, (NUM_UNOWN + 1) tiles
|
||||||
call Pokedex_InvertTiles
|
call Pokedex_InvertTiles
|
||||||
ld de, sScratch + $188
|
ld de, sScratch + $188
|
||||||
ld hl, vTiles2 tile $40
|
ld hl, vTiles2 tile FIRST_UNOWN_CHAR
|
||||||
lb bc, BANK(Pokedex_LoadUnownFont), NUM_UNOWN + 1
|
lb bc, BANK(Pokedex_LoadUnownFont), NUM_UNOWN + 1
|
||||||
call Request2bpp
|
call Request2bpp
|
||||||
call CloseSRAM
|
call CloseSRAM
|
||||||
|
@ -172,7 +172,8 @@ PlaceNextChar::
|
|||||||
ld c, l
|
ld c, l
|
||||||
pop hl
|
pop hl
|
||||||
ret
|
ret
|
||||||
pop de
|
|
||||||
|
pop de ; unused
|
||||||
|
|
||||||
NextChar::
|
NextChar::
|
||||||
inc de
|
inc de
|
||||||
|
@ -32,7 +32,7 @@ PlayersHouse2F_MapScripts:
|
|||||||
|
|
||||||
db 0, 0, 0 ; filler
|
db 0, 0, 0 ; filler
|
||||||
|
|
||||||
Doll1Script:
|
Doll1Script::
|
||||||
describedecoration DECODESC_LEFT_DOLL
|
describedecoration DECODESC_LEFT_DOLL
|
||||||
|
|
||||||
Doll2Script:
|
Doll2Script:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
; http://forums.glitchcity.info/index.php?topic=7509.msg206449#msg206449
|
; http://forums.glitchcity.info/index.php?topic=7509.msg206449#msg206449
|
||||||
|
|
||||||
db $cc, $6b, $1e ; unused
|
dab Doll1Script ; related to "My Room" in Stadium 2?
|
||||||
|
|
||||||
Unreferenced_Function1f4003:
|
Unreferenced_Function1f4003:
|
||||||
ld a, BANK(s6_a000)
|
ld a, BANK(s6_a000)
|
||||||
|
Loading…
Reference in New Issue
Block a user