(02-18-2020, 10:44 AM)doofenH Wrote: "ADC #$05" is x6 dmg (I think), but what about "LDS $BC" & "STA $BC"?
You'll need to replace this:
Code:
INC $BC
INC $BC
INC $BC ; (Add another 3 to damage incrementor)
by this:
Code:
LDA $BC ; load damage incrementor in accumulator
ADC #$05 ; add 5 to it
STA $BC ; save accumulator to $BC