Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/engine/battle/display_effectiveness.asm
1271 views
1
DisplayEffectiveness:
2
ld a, [wDamageMultipliers]
3
and $7F
4
cp EFFECTIVE
5
ret z
6
ld hl, SuperEffectiveText
7
jr nc, .done
8
ld hl, NotVeryEffectiveText
9
.done
10
jp PrintText
11
12
SuperEffectiveText:
13
text_far _SuperEffectiveText
14
text_end
15
16
NotVeryEffectiveText:
17
text_far _NotVeryEffectiveText
18
text_end
19
20