Rangi42 / redstarbluestar

An upgrade to Pokémon Red/Blue. Ports graphics and features from the Space World 1997 Gold/Silver prototype.
https://hax.iimarckus.org/topic/7470/
108 stars 23 forks source link

Double-check IsMonShiny #15

Open Rangi42 opened 1 year ago

Rangi42 commented 1 year ago
IsMonShiny:
    ld h, d
    ld l, e
    ld a, [hli]
    or %1101_0000
    inc a
    jr nz, .notShiny
    ld a, [hl]
    cp %1010_1010
    jr nz, .notShiny
    or 1
    ret
.notShiny
    xor a
    ret