diff --git a/game/character_dict.rpy b/game/character_dict.rpy deleted file mode 100644 index b7464f7..0000000 --- a/game/character_dict.rpy +++ /dev/null @@ -1,8 +0,0 @@ -init -1 python: - from pythonpackages.renpy_utility.character_custom import DRCharacter - -init 9: - # Wiki: https://github.com/DRincs-Productions/renpy-utility-lib/wiki/Character-Disct - define character_dict = { - # "id": DRCharacter(character = mc, icon = icon) - } diff --git a/game/renpy_utility_tool/character_dict_fix.rpy b/game/renpy_utility_tool/character_dict_fix.rpy deleted file mode 100644 index d7df8e9..0000000 --- a/game/renpy_utility_tool/character_dict_fix.rpy +++ /dev/null @@ -1,3 +0,0 @@ -init -1 python: - if not "character_dict" in locals() | globals(): - character_dict = {} diff --git a/pythonpackages/renpy_utility/character_custom.py b/pythonpackages/renpy_utility/character_custom.py deleted file mode 100644 index 2af72a8..0000000 --- a/pythonpackages/renpy_utility/character_custom.py +++ /dev/null @@ -1,48 +0,0 @@ -from typing import Optional -import renpy as renpy - -__all__ = [ - "DRCharacter", -] - - -class DRCharacter: - """DR Character class.""" - - def __init__( - self, - character: renpy.character.ADVCharacter, - icon: str, - info_screen: Optional[str] = None, - ): - """Initialize the DRCharacter class.""" - self.character = character - self.icon = icon - self.info_screen = info_screen - - @property - def character(self) -> renpy.character.ADVCharacter: - """Character.""" - return self._character - - @character.setter - def character(self, value: renpy.character.ADVCharacter): - self._character = value - - @property - def icon(self) -> str: - """Icon.""" - return self._icon - - @icon.setter - def icon(self, value: str): - self._icon = value - - @property - def info_screen(self) -> Optional[str]: - """Info screen. For https://github.com/DRincs-Productions/DS-toolkit""" - return self._info_screen - - @info_screen.setter - def info_screen(self, value: Optional[str]): - self._info_screen = value