├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md └── game ├── glitchs_api.rpy ├── gui.rpy ├── gui ├── bar │ ├── bottom.png │ ├── left.png │ ├── right.png │ └── top.png ├── button │ ├── check_foreground.png │ ├── check_selected_foreground.png │ ├── choice_hover_background.png │ ├── choice_idle_background.png │ ├── hover_background.png │ ├── idle_background.png │ ├── quick_hover_background.png │ ├── quick_idle_background.png │ ├── radio_foreground.png │ ├── radio_selected_foreground.png │ ├── slot_hover_background.png │ └── slot_idle_background.png ├── frame.png ├── game_menu.png ├── main_menu.png ├── namebox.png ├── notify.png ├── nvl.png ├── overlay │ ├── confirm.png │ ├── game_menu.png │ └── main_menu.png ├── phone │ ├── bar │ │ ├── bottom.png │ │ ├── left.png │ │ ├── right.png │ │ └── top.png │ ├── button │ │ ├── check_foreground.png │ │ ├── check_selected_foreground.png │ │ ├── choice_hover_background.png │ │ ├── choice_idle_background.png │ │ ├── hover_background.png │ │ ├── idle_background.png │ │ ├── radio_foreground.png │ │ ├── radio_selected_foreground.png │ │ ├── slot_hover_background.png │ │ └── slot_idle_background.png │ ├── nvl.png │ ├── overlay │ │ ├── game_menu.png │ │ └── main_menu.png │ ├── scrollbar │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ ├── slider │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ └── textbox.png ├── scrollbar │ ├── horizontal_hover_bar.png │ ├── horizontal_hover_thumb.png │ ├── horizontal_idle_bar.png │ ├── horizontal_idle_thumb.png │ ├── vertical_hover_bar.png │ ├── vertical_hover_thumb.png │ ├── vertical_idle_bar.png │ └── vertical_idle_thumb.png ├── skip.png ├── slider │ ├── horizontal_hover_bar.png │ ├── horizontal_hover_thumb.png │ ├── horizontal_idle_bar.png │ ├── horizontal_idle_thumb.png │ ├── vertical_hover_bar.png │ ├── vertical_hover_thumb.png │ ├── vertical_idle_bar.png │ └── vertical_idle_thumb.png ├── textbox.png └── window_icon.png ├── images ├── eileen happy.png ├── eileen vhappy.png └── lucy mad.png ├── options.rpy ├── screens.rpy ├── script.rpy └── tl ├── None └── common.rpym └── english ├── glitchs_api.rpy ├── options.rpy └── script.rpy /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: boosty.to/nyashniyvladya/donate 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/README.md -------------------------------------------------------------------------------- /game/glitchs_api.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/glitchs_api.rpy -------------------------------------------------------------------------------- /game/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui.rpy -------------------------------------------------------------------------------- /game/gui/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/bar/left.png -------------------------------------------------------------------------------- /game/gui/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/bar/right.png -------------------------------------------------------------------------------- /game/gui/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/bar/top.png -------------------------------------------------------------------------------- /game/gui/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/choice_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/choice_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/quick_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/quick_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/frame.png -------------------------------------------------------------------------------- /game/gui/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/game_menu.png -------------------------------------------------------------------------------- /game/gui/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/main_menu.png -------------------------------------------------------------------------------- /game/gui/namebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/namebox.png -------------------------------------------------------------------------------- /game/gui/notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/notify.png -------------------------------------------------------------------------------- /game/gui/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/nvl.png -------------------------------------------------------------------------------- /game/gui/overlay/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/overlay/confirm.png -------------------------------------------------------------------------------- /game/gui/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/phone/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/bar/left.png -------------------------------------------------------------------------------- /game/gui/phone/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/bar/right.png -------------------------------------------------------------------------------- /game/gui/phone/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/bar/top.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/choice_hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/choice_idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/nvl.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/phone/textbox.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/skip.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/textbox.png -------------------------------------------------------------------------------- /game/gui/window_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/gui/window_icon.png -------------------------------------------------------------------------------- /game/images/eileen happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/images/eileen happy.png -------------------------------------------------------------------------------- /game/images/eileen vhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/images/eileen vhappy.png -------------------------------------------------------------------------------- /game/images/lucy mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/images/lucy mad.png -------------------------------------------------------------------------------- /game/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/options.rpy -------------------------------------------------------------------------------- /game/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/screens.rpy -------------------------------------------------------------------------------- /game/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/script.rpy -------------------------------------------------------------------------------- /game/tl/None/common.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/tl/None/common.rpym -------------------------------------------------------------------------------- /game/tl/english/glitchs_api.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/tl/english/glitchs_api.rpy -------------------------------------------------------------------------------- /game/tl/english/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/tl/english/options.rpy -------------------------------------------------------------------------------- /game/tl/english/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyashniyVladya/RenPyGlitchs/HEAD/game/tl/english/script.rpy --------------------------------------------------------------------------------