├── .flake8 ├── .gitignore ├── .isort.cfg ├── .mypy.ini ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── STYLEGUIDE.md ├── config.yaml ├── crowdin.yml ├── database.pgsql ├── gold.yaml ├── locales ├── af │ └── LC_MESSAGES │ │ └── main.po ├── ar │ └── LC_MESSAGES │ │ └── main.po ├── ca │ └── LC_MESSAGES │ │ └── main.po ├── cs │ └── LC_MESSAGES │ │ └── main.po ├── da │ └── LC_MESSAGES │ │ └── main.po ├── de │ └── LC_MESSAGES │ │ └── main.po ├── el │ └── LC_MESSAGES │ │ └── main.po ├── es │ └── LC_MESSAGES │ │ └── main.po ├── fi │ └── LC_MESSAGES │ │ └── main.po ├── fr │ └── LC_MESSAGES │ │ └── main.po ├── he │ └── LC_MESSAGES │ │ └── main.po ├── hu │ └── LC_MESSAGES │ │ └── main.po ├── it │ └── LC_MESSAGES │ │ └── main.po ├── ja │ └── LC_MESSAGES │ │ └── main.po ├── ko │ └── LC_MESSAGES │ │ └── main.po ├── main.pot ├── nl │ └── LC_MESSAGES │ │ └── main.po ├── no │ └── LC_MESSAGES │ │ └── main.po ├── pl │ └── LC_MESSAGES │ │ └── main.po ├── pt │ └── LC_MESSAGES │ │ └── main.po ├── ro │ └── LC_MESSAGES │ │ └── main.po ├── ru │ └── LC_MESSAGES │ │ └── main.po ├── sr │ └── LC_MESSAGES │ │ └── main.po ├── sv │ └── LC_MESSAGES │ │ └── main.po ├── tr │ └── LC_MESSAGES │ │ └── main.po ├── uk │ └── LC_MESSAGES │ │ └── main.po ├── vi │ └── LC_MESSAGES │ │ └── main.po └── zh │ └── LC_MESSAGES │ └── main.po ├── plugins ├── cache_handler.py ├── customisation.py ├── force_commands.py ├── information.py ├── marriage.py ├── misc.py ├── parents.py ├── proposal_handler.py ├── settings.py ├── simulation.py ├── subscriber_commands.py └── utils │ ├── __init__.py │ ├── autodelete.py │ ├── colour_names.py │ ├── custom_tree.py │ ├── family_member.py │ ├── perks.py │ ├── proposal_lock.py │ ├── relationship_string_simplifier.py │ └── utils.py └── requirements.txt /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/.mypy.ini -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/README.md -------------------------------------------------------------------------------- /STYLEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/STYLEGUIDE.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/config.yaml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/crowdin.yml -------------------------------------------------------------------------------- /database.pgsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/database.pgsql -------------------------------------------------------------------------------- /gold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/gold.yaml -------------------------------------------------------------------------------- /locales/af/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/af/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/ar/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/ar/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/ca/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/ca/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/cs/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/cs/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/da/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/da/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/de/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/de/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/el/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/el/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/es/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/fi/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/fi/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/fr/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/fr/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/he/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/he/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/hu/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/hu/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/it/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/it/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/ja/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/ja/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/ko/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/ko/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/main.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/main.pot -------------------------------------------------------------------------------- /locales/nl/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/nl/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/no/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/no/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/pl/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/pl/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/pt/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/ro/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/ro/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/ru/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/ru/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/sr/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/sr/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/sv/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/sv/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/tr/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/tr/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/uk/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/uk/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/vi/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/vi/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /locales/zh/LC_MESSAGES/main.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/locales/zh/LC_MESSAGES/main.po -------------------------------------------------------------------------------- /plugins/cache_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/cache_handler.py -------------------------------------------------------------------------------- /plugins/customisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/customisation.py -------------------------------------------------------------------------------- /plugins/force_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/force_commands.py -------------------------------------------------------------------------------- /plugins/information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/information.py -------------------------------------------------------------------------------- /plugins/marriage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/marriage.py -------------------------------------------------------------------------------- /plugins/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/misc.py -------------------------------------------------------------------------------- /plugins/parents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/parents.py -------------------------------------------------------------------------------- /plugins/proposal_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/proposal_handler.py -------------------------------------------------------------------------------- /plugins/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/settings.py -------------------------------------------------------------------------------- /plugins/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/simulation.py -------------------------------------------------------------------------------- /plugins/subscriber_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/subscriber_commands.py -------------------------------------------------------------------------------- /plugins/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/utils/__init__.py -------------------------------------------------------------------------------- /plugins/utils/autodelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/utils/autodelete.py -------------------------------------------------------------------------------- /plugins/utils/colour_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/utils/colour_names.py -------------------------------------------------------------------------------- /plugins/utils/custom_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/utils/custom_tree.py -------------------------------------------------------------------------------- /plugins/utils/family_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/utils/family_member.py -------------------------------------------------------------------------------- /plugins/utils/perks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/utils/perks.py -------------------------------------------------------------------------------- /plugins/utils/proposal_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/utils/proposal_lock.py -------------------------------------------------------------------------------- /plugins/utils/relationship_string_simplifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/utils/relationship_string_simplifier.py -------------------------------------------------------------------------------- /plugins/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Voxel-Fox-Ltd/MarriageBot/HEAD/plugins/utils/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | novus>=1.0.0 2 | asyncpg 3 | typing_extensions 4 | cachetools 5 | --------------------------------------------------------------------------------