diff --git a/grafproc.asm b/grafproc.asm index b3eab39..e3d51df 100644 --- a/grafproc.asm +++ b/grafproc.asm @@ -792,6 +792,25 @@ ShieldVisible bne @- rts .endp +;-------------------------------------------------- +.proc DrawTankShieldHorns +; use only directly after DrawTankShield +; this proc draws a little "horns" on shield. +; Symbol of defensive but aggressive :) weapon +;-------------------------------------------------- + dew xdraw ; 1 pixel left + sbw ydraw #$0a ; 10 pixels up + jsr plot + dew ydraw + inw xdraw + jsr plot + sbw xdraw #$0d ; 13 pixels left + jsr plot + inw xdraw + inw ydraw + jsr plot + rts +.endp ;-------------------------------------------------- .proc drawmountains diff --git a/scorch.xex b/scorch.xex index 130977d..89c2d03 100644 Binary files a/scorch.xex and b/scorch.xex differ