TheLovers:
  db 10, "THE LOVERS"
  db 10, "          "
  db 9, "harmony  "
  db 9, "choices  "
  db 9, "desire   "
  dw .BackgroundCopyEnd - .BackgroundCopy
  dw .BackgroundCopy
  dw .KeyArtTilesEnd - .KeyArtTiles
  dw .KeyArtTiles
  dw .SpriteTilesEnd - .SpriteTiles
  dw .SpriteTiles
  dw .fInit
  dw .fUpdate
  dw .fDraw
  
.fInit: 
  ld hl, CVS
  ld a, 0 
  ld [hl+], a ; CVS timer for ripples
  ld [hl+], a 
  ld [hl+], a ; CVS+2 frame of ripple offsets
  ret
.fUpdate: 
  ld hl, CVS
  call IncrementTimer
  
  ld a, [CVS+1] ; checking the high byte of the timer
  cp a, $08 ; $10 = 1 second, $02 = 1/8 of a second
  jp c, :+ ; if the timer is less than $0600, skip 
  
  ; if the timer is greater or equal to $0700, reset it 
  ld a, 0 
  ld [CVS], a 
  ld [CVS+1], a 
  
  ; and increment frame number
  ld hl, .topOffsets
  ld a, [CVS+2]
  inc a 
  call ArrayClampLooping
  ld [CVS+2], a
  
:
  call .doRipples
  ret
.fDraw: ret

.doRipples:
  ld a, [CVS+2]
  ld hl, .topOffsets+1 ; +1 bc body of array
  ld b, 0
  ld c, a 
  add hl, bc
  add hl, bc ; add twice because it's a list of yx pairs
  ld b, [hl]
  inc hl 
  ld c, [hl]
  
  ld hl, .top 
  ld de, MY_OAM
  ; b and c already set
  ld a, $26
  call BuildMetaSprite
  
  ld a, [CVS+2]
  ld hl, .upperOffsets+1 ; +1 bc body of array
  ld b, 0
  ld c, a 
  add hl, bc
  add hl, bc ; add twice because it's a list of yx pairs
  ld b, [hl]
  inc hl 
  ld c, [hl]
  
  ld hl, .upper
  ld de, MY_OAM + (.topOffsets-.top)*4
  ; b and c already set
  ld a, $22
  call BuildMetaSprite
  
  ld a, [CVS+2]
  ld hl, .lowerOffsets+1 ; +1 bc body of array
  ld b, 0
  ld c, a 
  add hl, bc
  add hl, bc ; add twice because it's a list of yx pairs
  ld b, [hl]
  inc hl 
  ld c, [hl]
  
  ld hl, .lower
  ld de, MY_OAM + (.topOffsets-.top)*4 + (.upperOffsets - .upper)*4
  ; b and c already set
  ld a, $22
  call BuildMetaSprite
  
  ld a, [CVS+2]
  ld hl, .bottomOffsets+1 ; +1 bc body of array
  ld b, 0
  ld c, a 
  add hl, bc
  add hl, bc ; add twice because it's a list of yx pairs
  ld b, [hl]
  inc hl 
  ld c, [hl]
  
  ld hl, .bottom
  ld de, MY_OAM + (.topOffsets-.top)*4 + (.upperOffsets-.upper)*4 + (.lowerOffsets-.lower)*4
  ; b and c already set
  ld a, $27
  call BuildMetaSprite
  ret
  
  
  
  
  
.top ; y=2+1, x=1+1
  db $01, $02, $03, $12, $05, $06
	db $07, $00, $00, $00, $00, $00
.topOffsets
  db 9,22, 15, 22, 15, 22, 15, 23, 16, 23, 16, 24, 16, 24, 16, 24, 16, 23, 16
.upper ; y=2+1+3, x=1+1+2
  db $0e, $0f
	db $10, $15
.upperOffsets
  db 9, 48, 32, 48, 32, 48, 32, 48, 32, 48, 32, 49, 33, 49, 33, 49, 33, 49, 33, 

.lower ; y=2+1+8, x=1+1+5
  db $14, $16
	db $11, $00
.lowerOffsets
  db 9, 88, 56, 88, 56, 89, 57, 89, 57, 89, 57, 88, 56, 88, 56, 88, 56, 88, 56, 


.bottom ; y=2+1+12, x=1+1+1
  db $00, $00, $00, $00, $00, $08, $09
	db $0a, $0b, $04, $0c, $0d, $13, $00
.bottomOffsets
  db 9, 120, 24, 119, 24, 119, 24, 118, 24, 118, 24, 118, 24, 119, 24, 119, 24, 120, 24,

.SpriteTiles:
  db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$01,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$07,$00,$3f,$00,$fe,$00
	db $00,$00,$00,$00,$00,$00,$07,$00,$ff,$00,$ff,$00,$f0,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$ff,$00,$ff,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$f0,$00,$ff,$00,$ff,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$80,$00,$f0,$00,$7e,$00,$00,$00
	db $07,$00,$3c,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$03,$00,$1e,$00,$7c,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$40,$00,$80,$00,$00,$00,$00,$00
	db $00,$00,$1f,$00,$03,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$80,$00,$ff,$00,$7f,$00,$03,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$1f,$00,$ff,$00,$fe,$00,$00,$00,$00,$00,$00,$00
	db $03,$00,$0f,$00,$fe,$00,$e0,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$01,$00,$07,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$f0,$00,$e0,$00
	db $0c,$00,$18,$00,$21,$00,$03,$00,$02,$00,$00,$00,$00,$00,$00,$00
	db $0e,$00,$3c,$00,$70,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$ff,$00,$ff,$00,$ff,$00,$00,$00,$00,$00
	db $e0,$00,$80,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$0d,$00,$3b,$00,$27,$00
	db $00,$00,$00,$00,$e0,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$80,$00,$00,$00,$00,$00
.SpriteTilesEnd:
		; original export script by gabriel reis, modified by shoofle
 
 
.KeyArtTiles:
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $e0,$c0,$c1,$81,$81,$01,$03,$07,$06,$07,$04,$0e,$04,$06,$86,$07
	db $82,$83,$c3,$83,$c1,$81,$c1,$81,$e0,$80,$e0,$c0,$f0,$c0,$f0,$40
	db $f0,$e0,$f8,$e0,$78,$e0,$38,$70,$3c,$30,$1c,$18,$08,$0c,$08,$0c
	db $10,$38,$10,$18,$0a,$1e,$0f,$0f,$05,$0f,$07,$06,$03,$02,$03,$02
	db $03,$02,$06,$06,$06,$06,$06,$04,$0e,$0c,$0a,$0c,$0e,$08,$16,$18
	db $16,$18,$34,$38,$24,$39,$64,$79,$4c,$71,$5c,$61,$59,$61,$d9,$e1
	db $b1,$a1,$b1,$a1,$b1,$a1,$b1,$c1,$e1,$c1,$e1,$c1,$c0,$e1,$d0,$e1
	db $0c,$86,$1c,$0c,$18,$08,$30,$18,$30,$10,$20,$20,$60,$e0,$40,$c0
	db $6e,$70,$ce,$f0,$ce,$f0,$ce,$f0,$ce,$f0,$c6,$f8,$c6,$f8,$c6,$f8
	db $99,$e1,$99,$e1,$38,$c0,$30,$c0,$f8,$f8,$00,$1c,$00,$00,$00,$00
	db $d0,$e1,$d8,$21,$d8,$a0,$ec,$f0,$66,$78,$3b,$7c,$1d,$3e,$1e,$1f
	db $80,$80,$80,$80,$c0,$c0,$40,$40,$20,$20,$10,$10,$08,$08,$84,$04
	db $cf,$f0,$e7,$f8,$67,$78,$63,$7c,$73,$7c,$39,$3e,$1c,$1f,$0e,$0f
	db $c2,$02,$c2,$02,$c1,$01,$e1,$01,$60,$00,$00,$01,$00,$01,$00,$03
	db $00,$00,$00,$00,$00,$00,$00,$00,$80,$80,$c0,$c0,$c0,$c0,$c1,$d1
	db $03,$03,$00,$00,$00,$00,$1f,$1f,$1c,$1e,$30,$3e,$20,$30,$60,$70
	db $8f,$f0,$e7,$f8,$1d,$1e,$e3,$fe,$00,$7f,$00,$01,$00,$00,$00,$00
	db $00,$00,$80,$01,$c0,$00,$f0,$00,$38,$c0,$1c,$e2,$00,$00,$00,$00
	db $0d,$03,$0f,$07,$1e,$06,$02,$02,$07,$07,$44,$07,$4e,$0f,$ce,$0f
	db $60,$70,$60,$70,$60,$70,$60,$70,$40,$71,$41,$71,$41,$71,$41,$71
	db $00,$00,$7e,$00,$ff,$00,$ff,$c0,$fc,$ff,$9f,$9f,$80,$80,$80,$80
	db $00,$00,$00,$00,$c0,$00,$ff,$00,$1f,$e0,$e0,$ff,$3f,$3f,$01,$01
	db $00,$00,$00,$00,$07,$00,$d8,$07,$e1,$1f,$0e,$fe,$18,$f8,$f0,$f0
	db $1c,$1c,$1e,$1f,$ec,$5f,$ff,$fc,$df,$df,$7c,$62,$79,$7e,$38,$3e
	db $1f,$7f,$06,$ff,$32,$f5,$fe,$01,$08,$01,$30,$01,$ef,$0f,$18,$3f
	db $f0,$f0,$b0,$f0,$30,$f0,$30,$f0,$70,$f0,$70,$f0,$60,$e0,$e0,$e0
	db $20,$30,$20,$31,$21,$31,$31,$21,$31,$21,$31,$21,$31,$23,$31,$21
	db $61,$e7,$e7,$1f,$bf,$ff,$e0,$e0,$00,$00,$00,$00,$00,$00,$00,$00
	db $33,$23,$33,$23,$31,$23,$53,$60,$a0,$c0,$a4,$c4,$1f,$9f,$aa,$bf
	db $1c,$1b,$0f,$08,$0d,$0d,$07,$07,$00,$00,$00,$00,$00,$00,$00,$00
	db $e3,$fc,$ff,$ff,$cb,$87,$85,$43,$03,$81,$01,$01,$21,$21,$63,$43
	db $38,$78,$5d,$7f,$57,$67,$57,$64,$56,$64,$56,$64,$57,$64,$57,$67
	db $51,$63,$50,$63,$50,$61,$50,$61,$58,$60,$58,$60,$4c,$70,$63,$7f
	db $00,$00,$01,$01,$01,$01,$02,$03,$03,$03,$03,$03,$02,$03,$04,$04
	db $01,$07,$05,$05,$05,$07,$05,$07,$85,$87,$c4,$c4,$44,$44,$44,$44
	db $4c,$4c,$48,$48,$4c,$48,$cc,$c8,$9c,$90,$98,$90,$98,$91,$b9,$a1
	db $63,$63,$21,$23,$61,$63,$c2,$c1,$c6,$c1,$87,$c3,$87,$8b,$8e,$86
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$30,$40
	db $06,$0e,$03,$07,$7b,$7f,$0b,$7f,$0f,$1f,$7f,$ff,$bf,$fe,$18,$3f
	db $56,$df,$ff,$ff,$99,$ff,$f7,$e8,$59,$af,$8f,$ff,$77,$98,$ff,$df
	db $00,$00,$00,$00,$80,$f0,$e0,$f0,$80,$c0,$80,$f0,$e0,$e0,$83,$f3
	db $00,$00,$00,$03,$0c,$0c,$10,$10,$20,$20,$40,$40,$c0,$c0,$80,$c0
	db $78,$88,$18,$08,$1c,$04,$0a,$02,$0e,$02,$07,$01,$03,$01,$03,$60
	db $7f,$7f,$f6,$f6,$f9,$f9,$7d,$7d,$0e,$0e,$ee,$fe,$32,$32,$72,$72
	db $c6,$47,$e6,$e4,$fe,$f8,$9c,$e0,$00,$f0,$b0,$40,$f8,$00,$88,$00
	db $00,$87,$00,$07,$01,$0f,$03,$0f,$02,$1e,$00,$3e,$1e,$66,$3f,$43
	db $41,$f0,$c1,$d0,$81,$90,$00,$0c,$00,$04,$00,$04,$00,$06,$00,$03
	db $80,$80,$80,$80,$c0,$40,$c0,$40,$c0,$60,$c0,$20,$60,$20,$78,$38
	db $c3,$e3,$05,$1f,$01,$0d,$01,$01,$02,$02,$06,$06,$04,$04,$04,$04
	db $1c,$63,$0e,$31,$0b,$10,$00,$00,$00,$00,$00,$00,$06,$00,$06,$00
	db $80,$81,$60,$e1,$b0,$71,$d8,$39,$7c,$0c,$3f,$07,$19,$07,$1e,$01
	db $7f,$1f,$31,$0b,$12,$8d,$09,$d6,$ed,$f3,$25,$3b,$da,$de,$7e,$fe
	db $04,$04,$04,$04,$06,$06,$06,$06,$06,$06,$06,$06,$03,$03,$03,$03
	db $03,$43,$61,$61,$60,$60,$30,$30,$70,$10,$39,$18,$1b,$2c,$1c,$2f
	db $07,$00,$03,$00,$01,$00,$00,$00,$20,$20,$61,$60,$c1,$40,$c1,$c0
	db $9c,$7c,$ce,$3e,$e6,$1e,$e3,$1f,$73,$0f,$f3,$0f,$f7,$0f,$f7,$0f
	db $1f,$07,$0e,$06,$8a,$86,$8e,$82,$86,$c2,$05,$c3,$01,$f7,$71,$73
	db $cf,$cd,$07,$07,$02,$02,$0c,$0c,$18,$18,$f0,$f0,$e0,$f0,$e0,$c0
	db $81,$80,$01,$00,$03,$00,$03,$00,$06,$01,$0c,$03,$1d,$03,$39,$07
	db $e6,$1e,$e6,$1e,$8c,$7c,$18,$f8,$70,$f0,$e0,$e0,$c0,$c0,$80,$80
	db $e0,$c0,$e0,$c0,$f0,$c0,$f8,$e0,$f8,$e0,$7f,$70,$3f,$38,$3f,$3e
	db $76,$0e,$1a,$fe,$7a,$7e,$1a,$3e,$2e,$1e,$16,$0e,$0b,$07,$83,$01
	db $0f,$0f,$03,$03,$03,$03,$03,$03,$03,$03,$01,$01,$01,$01,$00,$00
	db $e1,$00,$e0,$e0,$38,$38,$9c,$9c,$83,$87,$8b,$87,$88,$86,$c5,$c3
	db $e0,$e0,$fc,$3c,$7e,$06,$0a,$06,$1e,$06,$1e,$06,$b6,$8e,$a6,$9e
	db $c4,$c3,$62,$61,$62,$61,$33,$30,$33,$30,$38,$38,$18,$18,$18,$18
	db $a4,$9c,$ac,$9c,$ac,$9c,$ac,$9c,$a8,$98,$a8,$98,$88,$b8,$98,$f8
	db $08,$08,$08,$08,$0c,$0c,$0c,$0c,$0c,$0c,$0d,$0c,$0d,$0c,$0d,$0c
	db $f0,$f0,$a0,$60,$a0,$60,$a0,$60,$00,$c0,$00,$c0,$40,$c0,$40,$c0
	db $85,$84,$86,$85,$c3,$e3,$60,$60,$20,$70,$30,$70,$f0,$f0,$f0,$f0
	db $06,$02,$8a,$86,$b6,$8e,$4c,$7c,$f8,$38,$c0,$70,$40,$e0,$71,$f0
	db $00,$00,$00,$00,$00,$00,$00,$00,$06,$0e,$1f,$1f,$3c,$30,$70,$60
	db $40,$c0,$40,$c0,$c0,$c0,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $18,$1c,$18,$14,$38,$30,$58,$60,$10,$60,$30,$c0,$60,$80,$e0,$00
	db $04,$07,$09,$0e,$03,$0c,$17,$18,$37,$38,$27,$38,$6f,$70,$6e,$70
	db $3f,$3f,$3b,$3b,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $04,$04,$04,$04,$88,$08,$c0,$00,$e0,$00,$f0,$00,$fc,$00,$5c,$a0
	db $00,$80,$00,$80,$80,$80,$e0,$60,$f0,$10,$70,$70,$40,$40,$c0,$c0
	db $00,$00,$00,$80,$00,$80,$80,$c0,$c0,$e0,$40,$60,$60,$70,$30,$30
	db $80,$80,$80,$80,$80,$80,$80,$80,$80,$80,$00,$80,$00,$80,$00,$80
	db $a8,$bf,$e0,$ff,$3f,$3f,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $e0,$e0,$60,$e0,$c0,$c0,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $0f,$07,$07,$01,$03,$00,$01,$00,$00,$04,$00,$00,$00,$00,$00,$00
	db $e1,$f1,$c0,$f0,$80,$e0,$00,$80,$00,$00,$00,$00,$00,$00,$00,$00
	db $f9,$f9,$4f,$5f,$41,$43,$01,$13,$82,$80,$80,$c4,$c4,$cc,$60,$e0
	db $c0,$c0,$40,$c0,$80,$80,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$80,$80
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$01,$02,$03
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$d9,$df
	db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$01
	db $c0,$00,$c0,$00,$80,$00,$80,$00,$00,$00,$00,$00,$00,$00,$00,$00
	db $18,$00,$10,$00,$00,$00,$40,$00,$80,$00,$00,$00,$00,$00,$00,$00
	db $00,$00,$ff,$ff,$60,$60,$20,$60,$30,$30,$10,$30,$10,$30,$19,$19
	db $00,$00,$ff,$ff,$64,$6c,$44,$6c,$c4,$cc,$84,$cc,$84,$cc,$84,$8c
	db $09,$19,$09,$19,$0f,$0f,$06,$0f,$06,$0f,$06,$06,$3f,$3f,$00,$00
	db $04,$8c,$04,$8c,$04,$0c,$04,$0c,$04,$0c,$04,$0c,$ff,$ff,$00,$00
.KeyArtTilesEnd:

.BackgroundCopy: ; tiles start at 26
	db $1a, $1a, $74, $73, $1a, $1a, $40, $1a
	db $1a, $1a, $41, $42, $43, $44, $45, $71
	db $1a, $62, $46, $39, $47, $48, $49, $4a
	db $3a, $1b, $6e, $4b, $76, $4c, $4d, $4e
	db $3b, $1c, $69, $4f, $50, $61, $51, $52
	db $66, $1d, $1e, $3d, $53, $54, $55, $56
	db $72, $64, $1f, $3e, $3f, $57, $58, $71
	db $65, $75, $20, $21, $22, $59, $5a, $5b
	db $23, $3c, $24, $25, $26, $1a, $5c, $5d
	db $27, $67, $1a, $6d, $28, $29, $5e, $5f
	db $2a, $2b, $2c, $1a, $2d, $6f, $60, $63
	db $2e, $2f, $30, $31, $32, $33, $34, $1a
	db $35, $6a, $1a, $1a, $38, $36, $70, $1a
	db $37, $68, $1a, $1a, $1a, $1a, $1a, $1a
	db $6b, $6c, $1a, $77, $78, $1a, $1a, $1a
	db $1a, $1a, $1a, $79, $7a, $1a, $1a, $1a
.BackgroundCopyEnd: