diff --git a/cromulant/config.py b/cromulant/config.py index 61e0531..31cb64c 100644 --- a/cromulant/config.py +++ b/cromulant/config.py @@ -90,8 +90,8 @@ class Config: Config.countries_json = Config.here / "data" / "countries.json" Config.icon_path = Config.here / "img" / "icon_1.jpg" Config.status_image_path = Config.here / "img" / "icon_2.jpg" - Config.terminated_image_path = Config.here / "img" / "icon_3_red.jpg" - Config.hatched_image_path = Config.here / "img" / "icon_4_green.jpg" + Config.hatched_image_path = Config.here / "img" / "hatched.jpg" + Config.terminated_image_path = Config.here / "img" / "terminated.jpg" Config.font_path = Config.here / "fonts" / "NotoSans-Regular.ttf" Config.emoji_font_path = Config.here / "fonts" / "NotoEmoji-Regular.ttf" Config.song_path = Config.here / "audio" / "March of the Cyber Ants.mp3" diff --git a/cromulant/img/hatched.jpg b/cromulant/img/hatched.jpg new file mode 100644 index 0000000..f2f13c0 Binary files /dev/null and b/cromulant/img/hatched.jpg differ diff --git a/cromulant/img/icon_3_red.jpg b/cromulant/img/icon_3_red.jpg deleted file mode 100644 index 6b5b56a..0000000 Binary files a/cromulant/img/icon_3_red.jpg and /dev/null differ diff --git a/cromulant/img/icon_4_green.jpg b/cromulant/img/icon_4_green.jpg deleted file mode 100644 index 55d7510..0000000 Binary files a/cromulant/img/icon_4_green.jpg and /dev/null differ diff --git a/cromulant/img/terminated.jpg b/cromulant/img/terminated.jpg new file mode 100644 index 0000000..e196ef1 Binary files /dev/null and b/cromulant/img/terminated.jpg differ