├── .all-contributorsrc ├── .dockerignore ├── .env.sample ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── chore.md │ ├── config.yml │ ├── docs.md │ ├── feature_request.md │ ├── idea_suggesion.md │ └── other.md ├── dependabot.yml ├── labeler.yml ├── pull_request_template.md ├── resources │ ├── cri.png │ ├── crying.gif │ └── title.svg └── workflows │ ├── changelog.yml │ ├── label.yml │ ├── stale.yml │ └── testing.yml ├── .gitignore ├── .pylintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── bot ├── cogs │ ├── coffee.py │ ├── comic.py │ ├── dictionary.py │ ├── economy.py │ ├── error.py │ ├── events.py │ ├── fun.py │ ├── game.py │ ├── help.py │ ├── meme.py │ ├── name.py │ ├── ping.py │ ├── users.py │ ├── utilities.py │ └── utils │ │ ├── colo.py │ │ ├── embeds.py │ │ ├── joeUsername.py │ │ ├── phrases.py │ │ └── username.py ├── main.py ├── requirements.txt └── utils.py ├── docker-compose.yml ├── legal └── PRIVACY.md ├── poetry.lock ├── pyproject.toml └── runtime.txt /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/ISSUE_TEMPLATE/chore.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/ISSUE_TEMPLATE/docs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/idea_suggesion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/ISSUE_TEMPLATE/idea_suggesion.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/resources/cri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/resources/cri.png -------------------------------------------------------------------------------- /.github/resources/crying.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/resources/crying.gif -------------------------------------------------------------------------------- /.github/resources/title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/resources/title.svg -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/.pylintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python bot/main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/README.md -------------------------------------------------------------------------------- /bot/cogs/coffee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/coffee.py -------------------------------------------------------------------------------- /bot/cogs/comic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/comic.py -------------------------------------------------------------------------------- /bot/cogs/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/dictionary.py -------------------------------------------------------------------------------- /bot/cogs/economy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/economy.py -------------------------------------------------------------------------------- /bot/cogs/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/error.py -------------------------------------------------------------------------------- /bot/cogs/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/events.py -------------------------------------------------------------------------------- /bot/cogs/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/fun.py -------------------------------------------------------------------------------- /bot/cogs/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/game.py -------------------------------------------------------------------------------- /bot/cogs/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/help.py -------------------------------------------------------------------------------- /bot/cogs/meme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/meme.py -------------------------------------------------------------------------------- /bot/cogs/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/name.py -------------------------------------------------------------------------------- /bot/cogs/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/ping.py -------------------------------------------------------------------------------- /bot/cogs/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/users.py -------------------------------------------------------------------------------- /bot/cogs/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/utilities.py -------------------------------------------------------------------------------- /bot/cogs/utils/colo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/utils/colo.py -------------------------------------------------------------------------------- /bot/cogs/utils/embeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/utils/embeds.py -------------------------------------------------------------------------------- /bot/cogs/utils/joeUsername.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/utils/joeUsername.py -------------------------------------------------------------------------------- /bot/cogs/utils/phrases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/utils/phrases.py -------------------------------------------------------------------------------- /bot/cogs/utils/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/cogs/utils/username.py -------------------------------------------------------------------------------- /bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/main.py -------------------------------------------------------------------------------- /bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/requirements.txt -------------------------------------------------------------------------------- /bot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/bot/utils.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /legal/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/legal/PRIVACY.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vyvy-vi/TearDrops/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 2 | --------------------------------------------------------------------------------