diff --git a/games/peasant/graphics/Makefile b/games/peasant/graphics/Makefile index ba313924..8088444a 100644 --- a/games/peasant/graphics/Makefile +++ b/games/peasant/graphics/Makefile @@ -104,10 +104,11 @@ priority_intro.inc: \ priority_peasant1.inc: \ todo_priority.lzsa \ + gary_priority.lzsa top_prints_priority.lzsa \ leaning_tree_priority.lzsa \ waterfall_priority.lzsa - echo "gary_priority_lzsa: .incbin \"todo_priority.lzsa\"" > priority_peasant1.inc - echo "top_prints_priority_lzsa: .incbin \"todo_priority.lzsa\"" >> priority_peasant1.inc + echo "gary_priority_lzsa: .incbin \"gary_priority.lzsa\"" > priority_peasant1.inc + echo "top_prints_priority_lzsa: .incbin \"top_prints_priority.lzsa\"" >> priority_peasant1.inc echo "wishing_well_priority_lzsa: .incbin \"todo_priority.lzsa\"" >> priority_peasant1.inc echo "leaning_tree_priority_lzsa: .incbin \"leaning_tree_priority.lzsa\"" >> priority_peasant1.inc echo "waterfall_priority_lzsa: .incbin \"waterfall_priority.lzsa\"" >> priority_peasant1.inc @@ -116,9 +117,11 @@ priority_peasant1.inc: \ ### priority_peasant2.inc: \ - todo_priority.lzsa river_priority.lzsa knight_priority.lzsa - echo "haystack_priority_lzsa: .incbin \"todo_priority.lzsa\"" > priority_peasant2.inc - echo "puddle_priority_lzsa: .incbin \"todo_priority.lzsa\"" >> priority_peasant2.inc + todo_priority.lzsa \ + haystack_priority.lzsa puddle_priority.lzsa \ + river_priority.lzsa knight_priority.lzsa + echo "haystack_priority_lzsa: .incbin \"haystack_priority.lzsa\"" > priority_peasant2.inc + echo "puddle_priority_lzsa: .incbin \"puddle_priority.lzsa\"" >> priority_peasant2.inc echo "archery_priority_lzsa: .incbin \"todo_priority.lzsa\"" >> priority_peasant2.inc echo "river_priority_lzsa: .incbin \"river_priority.lzsa\"" >> priority_peasant2.inc echo "knight_priority_lzsa: .incbin \"knight_priority.lzsa\"" >> priority_peasant2.inc @@ -371,6 +374,22 @@ empty_hut_priority.hgr: empty_hut_priority.png ### +gary_priority.lzsa: gary_priority.hgr + $(LZSA) -r -f2 gary_priority.hgr gary_priority.lzsa + +gary_priority.hgr: gary_priority.png + $(PNG2GR) gary_priority.png gary_priority.hgr + +### + +haystack_priority.lzsa: haystack_priority.hgr + $(LZSA) -r -f2 haystack_priority.hgr haystack_priority.lzsa + +haystack_priority.hgr: haystack_priority.png + $(PNG2GR) haystack_priority.png haystack_priority.hgr + +### + inn_priority.lzsa: inn_priority.hgr $(LZSA) -r -f2 inn_priority.hgr inn_priority.lzsa @@ -411,6 +430,14 @@ ned_priority.hgr: ned_priority.png ### +puddle_priority.lzsa: puddle_priority.hgr + $(LZSA) -r -f2 puddle_priority.hgr puddle_priority.lzsa + +puddle_priority.hgr: puddle_priority.png + $(PNG2GR) puddle_priority.png puddle_priority.hgr + +### + river_priority.lzsa: river_priority.hgr $(LZSA) -r -f2 river_priority.hgr river_priority.lzsa @@ -450,6 +477,14 @@ todo_priority.lzsa: todo_priority.gr todo_priority.gr: todo_priority.png $(PNG2GR) todo_priority.png todo_priority.gr +### + +top_prints_priority.lzsa: top_prints_priority.hgr + $(LZSA) -r -f2 top_prints_priority.hgr top_prints_priority.lzsa + +top_prints_priority.hgr: top_prints_priority.png + $(PNG2GR) top_prints_priority.png top_prints_priority.hgr + #### waterfall_priority.lzsa: waterfall_priority.gr diff --git a/games/peasant/graphics/gary_priority.png b/games/peasant/graphics/gary_priority.png new file mode 100644 index 00000000..5f3b059f Binary files /dev/null and b/games/peasant/graphics/gary_priority.png differ diff --git a/games/peasant/graphics/haystack_priority.png b/games/peasant/graphics/haystack_priority.png new file mode 100644 index 00000000..72db3546 Binary files /dev/null and b/games/peasant/graphics/haystack_priority.png differ diff --git a/games/peasant/graphics/puddle_priority.png b/games/peasant/graphics/puddle_priority.png new file mode 100644 index 00000000..2ae83e8f Binary files /dev/null and b/games/peasant/graphics/puddle_priority.png differ diff --git a/games/peasant/graphics/top_prints_priority.png b/games/peasant/graphics/top_prints_priority.png new file mode 100644 index 00000000..0b33cf68 Binary files /dev/null and b/games/peasant/graphics/top_prints_priority.png differ