diff --git a/games/sb/fish/fish.s b/games/sb/fish/fish.s index 44ce5555..0e34abc0 100644 --- a/games/sb/fish/fish.s +++ b/games/sb/fish/fish.s @@ -9,6 +9,13 @@ .include "zp.inc" .include "hardware.inc" +; NOTES FROM WIKI +; green fish 50 or 100 +; grey fish 100 points +; red fish 400 or 500 +; bubbles easier to catch? +; grey = lures, red green = jigs + ; NOTES ; page1= $2000-$5fff @@ -362,7 +369,8 @@ done_flip: bg_data: - .incbin "graphics/fish_bg.hgr.zx02" +; .incbin "graphics/fish_bg.hgr.zx02" + .incbin "graphics/boat2_sb.hgr.zx02" .include "hgr_tables.s" .include "zx02_optim.s" diff --git a/games/sb/fish/graphics/Makefile b/games/sb/fish/graphics/Makefile index e65f9cb1..d6333b44 100644 --- a/games/sb/fish/graphics/Makefile +++ b/games/sb/fish/graphics/Makefile @@ -4,7 +4,7 @@ ZX02 = ~/research/6502_compression/zx02.git/build/zx02 -f PNG_TO_HGR = ../../../../utils/hgr-utils/png2hgr HGR_SPRITE = ../../../utils/hgr-utils/hgr_make_sprite -all: fish_title.hgr.zx02 fish_bg.hgr.zx02 +all: fish_title.hgr.zx02 fish_bg.hgr.zx02 boat2_sb.hgr.zx02 # sb_sprites.inc @@ -25,6 +25,14 @@ fish_bg.hgr.zx02: fish_bg.hgr fish_bg.hgr: fish_bg.png $(PNG_TO_HGR) fish_bg.png > fish_bg.hgr +#### + +boat2_sb.hgr.zx02: boat2_sb.hgr + $(ZX02) boat2_sb.hgr boat2_sb.hgr.zx02 + +boat2_sb.hgr: boat2_sb.png + $(PNG_TO_HGR) boat2_sb.png > boat2_sb.hgr + #### diff --git a/games/sb/fish/graphics/boat1.png b/games/sb/fish/graphics/boat1.png new file mode 100644 index 00000000..a8854bc2 Binary files /dev/null and b/games/sb/fish/graphics/boat1.png differ diff --git a/games/sb/fish/graphics/boat2.png b/games/sb/fish/graphics/boat2.png new file mode 100644 index 00000000..a6592d94 Binary files /dev/null and b/games/sb/fish/graphics/boat2.png differ diff --git a/games/sb/fish/graphics/boat2_sb.png b/games/sb/fish/graphics/boat2_sb.png new file mode 100644 index 00000000..afecd018 Binary files /dev/null and b/games/sb/fish/graphics/boat2_sb.png differ diff --git a/games/sb/fish/graphics/boat3.png b/games/sb/fish/graphics/boat3.png new file mode 100644 index 00000000..193b87f5 Binary files /dev/null and b/games/sb/fish/graphics/boat3.png differ