diff --git a/games/peasant/ending.s b/games/peasant/ending.s index 8389198d..d7ae8764 100644 --- a/games/peasant/ending.s +++ b/games/peasant/ending.s @@ -42,6 +42,20 @@ trogdor_cave: jsr wait_until_keypress +boat: + + lda #lake_e_boat_lzsa + sta getsrc_smc+2 + + lda #$40 + + jsr decompress_lzsa2_fast + + jsr wait_until_keypress + + waterfall: lda # ending_graphics.inc + echo "lake_e_boat_lzsa: .incbin \"lake_e_boat.lzsa\"" >> ending_graphics.inc echo "waterfall_lzsa: .incbin \"waterfall.lzsa\"" >> ending_graphics.inc echo "jhonka_lzsa: .incbin \"jhonka.lzsa\"" >> ending_graphics.inc echo "cottage_lzsa: .incbin \"cottage.lzsa\"" >> ending_graphics.inc @@ -31,6 +33,14 @@ trogdor_cave.hgr: trogdor_cave.png ### +lake_e_boat.lzsa: lake_e_boat.hgr + $(LZSA) -r -f2 lake_e_boat.hgr lake_e_boat.lzsa + +lake_e_boat.hgr: lake_e_boat.png + $(PNG2HGR) lake_e_boat.png > lake_e_boat.hgr + +### + waterfall.lzsa: waterfall.hgr $(LZSA) -r -f2 waterfall.hgr waterfall.lzsa diff --git a/games/peasant/graphics_end/lake_e_boat.png b/games/peasant/graphics_end/lake_e_boat.png new file mode 100644 index 00000000..81f4df02 Binary files /dev/null and b/games/peasant/graphics_end/lake_e_boat.png differ diff --git a/games/peasant/graphics_end/trogdor_cave.png b/games/peasant/graphics_end/trogdor_cave.png index e157f3ab..89474393 100644 Binary files a/games/peasant/graphics_end/trogdor_cave.png and b/games/peasant/graphics_end/trogdor_cave.png differ