├── .github ├── FUNDING.yml └── workflows │ └── devskim.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── DS-CharacterInfo.code-snippets ├── DS-Statistic.code-snippets ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── bin └── renpy.ps1 ├── console └── debug.rpy ├── game ├── core.rpy ├── ds_screens │ ├── screens_ds.rpy │ └── screens_ds_component.rpy ├── ds_tool │ ├── character_info.rpy │ └── character_value_fix.rpy ├── ds_values │ ├── character_screens.rpy │ ├── character_statistics_sentimental.rpy │ ├── character_value.rpy │ └── characters.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 │ ├── friend.webp │ ├── girl-homesuit.webp │ ├── girl.webp │ └── unknown.webp ├── images_tool │ └── icon │ │ ├── characteristics-addiction.webp │ │ ├── characteristics-energy.webp │ │ ├── characteristics-inhibition.webp │ │ ├── characteristics-lust.webp │ │ ├── characteristics-willpower.webp │ │ ├── emblems-against.webp │ │ ├── emblems-bisexual.webp │ │ ├── emblems-celebrolesis.webp │ │ ├── emblems-free_use.webp │ │ ├── emblems-healthy.webp │ │ ├── emblems-nymphomaniac.webp │ │ ├── emblems-polyamorous.webp │ │ ├── emblems-slut.webp │ │ ├── emblems-submissive.webp │ │ ├── emblems-virgin.webp │ │ ├── notification │ │ ├── characteristics-addiction.webp │ │ ├── characteristics-energy.webp │ │ ├── characteristics-inhibition.webp │ │ ├── characteristics-lust.webp │ │ ├── characteristics-willpower.webp │ │ ├── emblems-against.webp │ │ ├── relations-anger.webp │ │ ├── relations-corruption.webp │ │ ├── relations-favour.webp │ │ ├── relations-fear.webp │ │ ├── relations-friendship.webp │ │ └── relations-love.webp │ │ ├── relations-anger.webp │ │ ├── relations-corruption.webp │ │ ├── relations-favour.webp │ │ ├── relations-fear.webp │ │ ├── relations-friendship.webp │ │ └── relations-love.webp ├── options.rpy ├── screens.rpy ├── script.rpy └── tl │ ├── None │ └── common.rpym │ ├── french │ └── common.rpy │ ├── german │ └── common.rpy │ ├── italian │ └── common.rpy │ └── spanish │ └── common.rpy └── pythonpackages ├── __init__.py └── ds ├── __init__.py ├── character_info.py ├── character_screens.py ├── character_statistics.py └── character_type.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/devskim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/.github/workflows/devskim.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/DS-CharacterInfo.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/.vscode/DS-CharacterInfo.code-snippets -------------------------------------------------------------------------------- /.vscode/DS-Statistic.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/.vscode/DS-Statistic.code-snippets -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/renpy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/bin/renpy.ps1 -------------------------------------------------------------------------------- /console/debug.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/console/debug.rpy -------------------------------------------------------------------------------- /game/core.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/core.rpy -------------------------------------------------------------------------------- /game/ds_screens/screens_ds.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/ds_screens/screens_ds.rpy -------------------------------------------------------------------------------- /game/ds_screens/screens_ds_component.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/ds_screens/screens_ds_component.rpy -------------------------------------------------------------------------------- /game/ds_tool/character_info.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/ds_tool/character_info.rpy -------------------------------------------------------------------------------- /game/ds_tool/character_value_fix.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/ds_tool/character_value_fix.rpy -------------------------------------------------------------------------------- /game/ds_values/character_screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/ds_values/character_screens.rpy -------------------------------------------------------------------------------- /game/ds_values/character_statistics_sentimental.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/ds_values/character_statistics_sentimental.rpy -------------------------------------------------------------------------------- /game/ds_values/character_value.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/ds_values/character_value.rpy -------------------------------------------------------------------------------- /game/ds_values/characters.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/ds_values/characters.rpy -------------------------------------------------------------------------------- /game/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui.rpy -------------------------------------------------------------------------------- /game/gui/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/bar/left.png -------------------------------------------------------------------------------- /game/gui/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/bar/right.png -------------------------------------------------------------------------------- /game/gui/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/bar/top.png -------------------------------------------------------------------------------- /game/gui/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/choice_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/choice_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/quick_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/quick_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/quick_idle_background.png -------------------------------------------------------------------------------- /game/gui/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/frame.png -------------------------------------------------------------------------------- /game/gui/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/game_menu.png -------------------------------------------------------------------------------- /game/gui/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/main_menu.png -------------------------------------------------------------------------------- /game/gui/namebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/namebox.png -------------------------------------------------------------------------------- /game/gui/notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/notify.png -------------------------------------------------------------------------------- /game/gui/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/nvl.png -------------------------------------------------------------------------------- /game/gui/overlay/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/overlay/confirm.png -------------------------------------------------------------------------------- /game/gui/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/bar/bottom.png -------------------------------------------------------------------------------- /game/gui/phone/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/bar/left.png -------------------------------------------------------------------------------- /game/gui/phone/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/bar/right.png -------------------------------------------------------------------------------- /game/gui/phone/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/bar/top.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/check_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/check_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/choice_hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/choice_idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/radio_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/slot_hover_background.png -------------------------------------------------------------------------------- /game/gui/phone/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/button/slot_idle_background.png -------------------------------------------------------------------------------- /game/gui/phone/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/nvl.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/overlay/game_menu.png -------------------------------------------------------------------------------- /game/gui/phone/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/overlay/main_menu.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/phone/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/phone/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/phone/textbox.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/skip.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /game/gui/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /game/gui/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/textbox.png -------------------------------------------------------------------------------- /game/gui/window_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/gui/window_icon.png -------------------------------------------------------------------------------- /game/images/friend.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images/friend.webp -------------------------------------------------------------------------------- /game/images/girl-homesuit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images/girl-homesuit.webp -------------------------------------------------------------------------------- /game/images/girl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images/girl.webp -------------------------------------------------------------------------------- /game/images/unknown.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images/unknown.webp -------------------------------------------------------------------------------- /game/images_tool/icon/characteristics-addiction.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/characteristics-addiction.webp -------------------------------------------------------------------------------- /game/images_tool/icon/characteristics-energy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/characteristics-energy.webp -------------------------------------------------------------------------------- /game/images_tool/icon/characteristics-inhibition.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/characteristics-inhibition.webp -------------------------------------------------------------------------------- /game/images_tool/icon/characteristics-lust.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/characteristics-lust.webp -------------------------------------------------------------------------------- /game/images_tool/icon/characteristics-willpower.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/characteristics-willpower.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-against.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-against.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-bisexual.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-bisexual.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-celebrolesis.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-celebrolesis.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-free_use.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-free_use.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-healthy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-healthy.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-nymphomaniac.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-nymphomaniac.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-polyamorous.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-polyamorous.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-slut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-slut.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-submissive.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-submissive.webp -------------------------------------------------------------------------------- /game/images_tool/icon/emblems-virgin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/emblems-virgin.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/characteristics-addiction.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/characteristics-addiction.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/characteristics-energy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/characteristics-energy.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/characteristics-inhibition.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/characteristics-inhibition.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/characteristics-lust.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/characteristics-lust.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/characteristics-willpower.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/characteristics-willpower.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/emblems-against.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/emblems-against.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/relations-anger.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/relations-anger.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/relations-corruption.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/relations-corruption.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/relations-favour.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/relations-favour.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/relations-fear.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/relations-fear.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/relations-friendship.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/relations-friendship.webp -------------------------------------------------------------------------------- /game/images_tool/icon/notification/relations-love.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/notification/relations-love.webp -------------------------------------------------------------------------------- /game/images_tool/icon/relations-anger.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/relations-anger.webp -------------------------------------------------------------------------------- /game/images_tool/icon/relations-corruption.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/relations-corruption.webp -------------------------------------------------------------------------------- /game/images_tool/icon/relations-favour.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/relations-favour.webp -------------------------------------------------------------------------------- /game/images_tool/icon/relations-fear.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/relations-fear.webp -------------------------------------------------------------------------------- /game/images_tool/icon/relations-friendship.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/relations-friendship.webp -------------------------------------------------------------------------------- /game/images_tool/icon/relations-love.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/images_tool/icon/relations-love.webp -------------------------------------------------------------------------------- /game/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/options.rpy -------------------------------------------------------------------------------- /game/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/screens.rpy -------------------------------------------------------------------------------- /game/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/script.rpy -------------------------------------------------------------------------------- /game/tl/None/common.rpym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/tl/None/common.rpym -------------------------------------------------------------------------------- /game/tl/french/common.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/tl/french/common.rpy -------------------------------------------------------------------------------- /game/tl/german/common.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/tl/german/common.rpy -------------------------------------------------------------------------------- /game/tl/italian/common.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/tl/italian/common.rpy -------------------------------------------------------------------------------- /game/tl/spanish/common.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/game/tl/spanish/common.rpy -------------------------------------------------------------------------------- /pythonpackages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pythonpackages/ds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pythonpackages/ds/character_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/pythonpackages/ds/character_info.py -------------------------------------------------------------------------------- /pythonpackages/ds/character_screens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/pythonpackages/ds/character_screens.py -------------------------------------------------------------------------------- /pythonpackages/ds/character_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/pythonpackages/ds/character_statistics.py -------------------------------------------------------------------------------- /pythonpackages/ds/character_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRincs-Productions/DS-toolkit/HEAD/pythonpackages/ds/character_type.py --------------------------------------------------------------------------------