├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── style.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .utils ├── .gitignore ├── locales │ ├── fr-FR.po │ └── sv-SE.po └── utils.py ├── LICENSE.txt ├── Makefile ├── README.md ├── addimage ├── __init__.py ├── addimage.py ├── info.json └── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po ├── adventurealert ├── __init__.py ├── abc.py ├── adventurealert.py ├── info.json ├── listeners.py └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── alignment ├── __init__.py ├── alignment.py ├── converter.py ├── data │ └── SourceSansPro-SemiBold.ttf └── info.json ├── apngfilter ├── __init__.py ├── apngfilter.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── automod ├── __init__.py ├── automod.py ├── converters.py ├── info.json └── menus.py ├── badges ├── __init__.py ├── badge_entry.py ├── badges.py ├── barcode.py ├── data │ └── arial.ttf ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po └── templates.py ├── bingo ├── __init__.py ├── bingo.py ├── converter.py ├── data │ └── SourceSansPro-SemiBold.ttf └── info.json ├── cah ├── LICENSE ├── __init__.py ├── core.py ├── game.py └── info.json ├── citation ├── __init__.py ├── citation.py ├── citations │ ├── LICENSE │ ├── Readme.md │ ├── __init__.py │ ├── data │ │ ├── BMmini.ttf │ │ ├── Megan_Serif.ttf │ │ ├── crescent.png │ │ ├── moa.png │ │ └── stamp_bg.png │ ├── defaults.py │ ├── enums.py │ ├── factory.py │ └── themes.py └── info.json ├── cleverbot ├── __init__.py ├── api.py ├── cleverbot.py ├── errors.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── compliment ├── __init__.py ├── compliment.py ├── info.json └── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po ├── conversions ├── __init__.py ├── coin.py ├── conversions.py ├── errors.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── crabrave ├── __init__.py ├── crabrave.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── crowdin.yml ├── destiny ├── .gitignore ├── __init__.py ├── api.py ├── converter.py ├── destiny.py ├── errors.py ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po └── menus.py ├── elements ├── __init__.py ├── core.py ├── data.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── encoding ├── __init__.py ├── braille.py ├── encoding.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── eventposter ├── __init__.py ├── event_obj.py ├── eventposter.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── extendedmodlog ├── __init__.py ├── eventmixin.py ├── extendedmodlog.py ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po └── settings.py ├── fenrir ├── __init__.py ├── fenrir.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── fun ├── __init__.py ├── constants.py ├── fun.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── hockey ├── __init__.py ├── abc.py ├── api.py ├── components.py ├── constants.py ├── dev.py ├── emoji.yaml ├── errors.py ├── game.py ├── gamedaychannels.py ├── gamedaythreads.py ├── goal.py ├── helper.py ├── hockey.py ├── hockey_commands.py ├── hockeypickems.py ├── hockeyset.py ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ ├── messages.txt │ └── sv-SE.po ├── menu.py ├── notifications.py ├── pickems.py ├── player.py ├── schedule.py ├── standings.py ├── stats.py └── teamentry.py ├── hue ├── __init__.py ├── api.py ├── hue.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── imagemaker ├── __init__.py ├── converter.py ├── data │ ├── impact.ttf │ └── trump_template │ │ ├── Trump_00.png │ │ ├── Trump_02.png │ │ ├── Trump_03.png │ │ ├── Trump_05.png │ │ ├── Trump_06.png │ │ ├── Trump_07.png │ │ ├── Trump_08.png │ │ ├── Trump_09.png │ │ ├── Trump_11.png │ │ ├── Trump_12.png │ │ ├── Trump_14.png │ │ ├── Trump_15.png │ │ ├── Trump_16.png │ │ ├── Trump_17.png │ │ ├── Trump_18.png │ │ ├── Trump_21.png │ │ ├── Trump_22.png │ │ ├── Trump_24.png │ │ ├── Trump_25.png │ │ ├── Trump_26.png │ │ ├── Trump_28.png │ │ ├── Trump_29.png │ │ ├── Trump_30.png │ │ ├── Trump_32.png │ │ ├── Trump_33.png │ │ ├── Trump_35.png │ │ ├── Trump_37.png │ │ ├── Trump_38.png │ │ ├── Trump_39.png │ │ ├── Trump_41.png │ │ ├── Trump_42.png │ │ ├── Trump_43.png │ │ ├── Trump_44.png │ │ ├── Trump_45.png │ │ ├── Trump_46.png │ │ ├── Trump_47.png │ │ ├── Trump_48.png │ │ ├── Trump_49.png │ │ ├── Trump_50.png │ │ ├── Trump_51.png │ │ ├── Trump_52.png │ │ ├── Trump_54.png │ │ ├── Trump_55.png │ │ ├── Trump_57.png │ │ ├── Trump_59.png │ │ ├── Trump_60.png │ │ ├── Trump_62.png │ │ └── frames.json ├── imagemaker.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── imgflip ├── __init__.py ├── imgflip.py ├── info.json └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── info.json ├── insult ├── __init__.py ├── info.json ├── insult.py └── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po ├── inviteblocklist ├── __init__.py ├── info.json ├── inviteblocklist.py └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── loaddev ├── __init__.py ├── info.json ├── loaddev.py └── locales │ ├── fr-FR.po │ └── sv-SE.po ├── mentionprefix ├── __init__.py ├── info.json ├── locales │ ├── fr-FR.po │ └── sv-SE.po └── mentionprefix.py ├── mock ├── __init__.py ├── info.json ├── locales │ ├── fr-FR.po │ └── sv-SE.po └── mock.py ├── nasa ├── __init__.py ├── core.py ├── info.json ├── menus.py └── models.py ├── notsobot ├── README.md ├── __init__.py ├── converter.py ├── data │ ├── Minecraftia.ttf │ └── arial.ttf ├── info.json ├── locales │ ├── fr-FR.po │ └── sv-SE.po ├── notsobot.py ├── pixelsort │ ├── constants.py │ ├── interval.py │ ├── sorter.py │ ├── sorting.py │ └── util.py └── vw │ ├── img │ └── png │ │ ├── background │ │ └── geometric.jpg │ │ ├── bubbles │ │ ├── JavaUpdateAvailable.png │ │ ├── Windows Connection with Little connectivity.png │ │ ├── a screaming comes across the sky.png │ │ ├── faster.png │ │ ├── out of a fantasy.png │ │ ├── pluggeddeviceintoaudiojack.png │ │ ├── project a world.png │ │ └── stupid_bubble_by_Baka_Sora_Club.png │ │ ├── greek │ │ ├── greek1.png │ │ ├── greek2.png │ │ ├── greek3.png │ │ ├── greek4.png │ │ └── siddhartha.png │ │ ├── pics │ │ ├── ak47.png │ │ ├── blindblake.png │ │ ├── dolphin.png │ │ ├── drip.png │ │ ├── fiji.png │ │ ├── gun.png │ │ ├── knife.png │ │ └── knuckle.png │ │ └── windows │ │ ├── 98-problem.jpg │ │ ├── 9x-wu4.png │ │ ├── C2FAT32.gif │ │ ├── IPC_MPI_CP5611_1.gif │ │ ├── Windows_98_-_Critical_Update_Notification.png │ │ ├── au_15.gif │ │ ├── au_16.gif │ │ ├── au_20.gif │ │ ├── create_disk_image.gif │ │ ├── ht1338-alert-001-en.png │ │ ├── regedit.gif │ │ ├── screenshot.png │ │ ├── sysinfo.gif │ │ ├── update.gif │ │ ├── win98.png │ │ └── winnt31.png │ ├── macintoshplus.py │ └── resources │ └── arial.ttf ├── pyproject.toml ├── reddit ├── __init__.py ├── helpers.py ├── info.json ├── locales │ ├── fr-FR.po │ └── sv-SE.po ├── menus.py └── reddit.py ├── rekt ├── __init__.py ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po └── rekt.py ├── requirements.txt ├── retrigger ├── README.md ├── __init__.py ├── abc.py ├── converters.py ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po ├── menus.py ├── message.py ├── retrigger.py ├── slash.py └── triggerhandler.py ├── roletools ├── __init__.py ├── abc.py ├── buttons.py ├── components.py ├── converter.py ├── events.py ├── exclusive.py ├── inclusive.py ├── info.json ├── locales │ ├── fr-FR.po │ └── sv-SE.po ├── menus.py ├── messages.py ├── reactions.py ├── requires.py ├── roletools.py ├── select.py └── settings.py ├── runescape ├── __init__.py ├── helpers.py ├── info.json ├── locales │ ├── fr-FR.po │ └── sv-SE.po ├── menus.py ├── profile.py ├── rsrandom.py ├── runescape.py ├── tms.py ├── viswax.py ├── wikiapi.py ├── wilderness.py └── xp.py ├── serverstats ├── __init__.py ├── converters.py ├── info.json ├── locales │ ├── fr-fr.po │ ├── messages.pot │ └── sv-SE.po ├── menus.py └── serverstats.py ├── spotify ├── __init__.py ├── abc.py ├── components.py ├── helpers.py ├── info.json ├── locales │ ├── fr-FR.po │ └── sv-SE.po ├── menus.py ├── rpc.py ├── spotify.py └── spotify_commands.py ├── starboard ├── __init__.py ├── converters.py ├── events.py ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po ├── starboard.py └── starboard_entry.py ├── tarot ├── __init__.py ├── info.json ├── locales │ ├── fr-FR.po │ └── sv-SE.po ├── tarot_cards.py └── tarotreading.py ├── timestamp ├── __init__.py ├── info.json └── timestamp.py ├── tox.ini ├── translate ├── __init__.py ├── api.py ├── converters.py ├── errors.py ├── flags.py ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po └── translate.py ├── trusty-cogs.sublime-project ├── tweets ├── __init__.py ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po ├── menus.py ├── tweet_entry.py ├── tweets.py └── tweets_api.py ├── twitch ├── __init__.py ├── errors.py ├── info.json ├── locales │ ├── fr-FR.po │ └── sv-SE.po ├── menus.py ├── twitch.py ├── twitch_api.py └── twitch_models.py ├── weather ├── __init__.py ├── api.py ├── info.json ├── locales │ ├── fr-FR.po │ ├── messages.pot │ └── sv-SE.po ├── menus.py └── weather.py └── welcome ├── __init__.py ├── events.py ├── info.json ├── locales ├── fr-FR.po ├── messages.pot └── sv-SE.po ├── menus.py └── welcome.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.github/workflows/style.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.utils/.gitignore -------------------------------------------------------------------------------- /.utils/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.utils/locales/fr-FR.po -------------------------------------------------------------------------------- /.utils/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.utils/locales/sv-SE.po -------------------------------------------------------------------------------- /.utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/.utils/utils.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/README.md -------------------------------------------------------------------------------- /addimage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/addimage/__init__.py -------------------------------------------------------------------------------- /addimage/addimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/addimage/addimage.py -------------------------------------------------------------------------------- /addimage/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/addimage/info.json -------------------------------------------------------------------------------- /addimage/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/addimage/locales/fr-FR.po -------------------------------------------------------------------------------- /addimage/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/addimage/locales/messages.pot -------------------------------------------------------------------------------- /addimage/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/addimage/locales/sv-SE.po -------------------------------------------------------------------------------- /adventurealert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/adventurealert/__init__.py -------------------------------------------------------------------------------- /adventurealert/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/adventurealert/abc.py -------------------------------------------------------------------------------- /adventurealert/adventurealert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/adventurealert/adventurealert.py -------------------------------------------------------------------------------- /adventurealert/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/adventurealert/info.json -------------------------------------------------------------------------------- /adventurealert/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/adventurealert/listeners.py -------------------------------------------------------------------------------- /adventurealert/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/adventurealert/locales/fr-FR.po -------------------------------------------------------------------------------- /adventurealert/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/adventurealert/locales/sv-SE.po -------------------------------------------------------------------------------- /alignment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/alignment/__init__.py -------------------------------------------------------------------------------- /alignment/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/alignment/alignment.py -------------------------------------------------------------------------------- /alignment/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/alignment/converter.py -------------------------------------------------------------------------------- /alignment/data/SourceSansPro-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/alignment/data/SourceSansPro-SemiBold.ttf -------------------------------------------------------------------------------- /alignment/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/alignment/info.json -------------------------------------------------------------------------------- /apngfilter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/apngfilter/__init__.py -------------------------------------------------------------------------------- /apngfilter/apngfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/apngfilter/apngfilter.py -------------------------------------------------------------------------------- /apngfilter/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/apngfilter/info.json -------------------------------------------------------------------------------- /apngfilter/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/apngfilter/locales/fr-FR.po -------------------------------------------------------------------------------- /apngfilter/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/apngfilter/locales/sv-SE.po -------------------------------------------------------------------------------- /automod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/automod/__init__.py -------------------------------------------------------------------------------- /automod/automod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/automod/automod.py -------------------------------------------------------------------------------- /automod/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/automod/converters.py -------------------------------------------------------------------------------- /automod/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/automod/info.json -------------------------------------------------------------------------------- /automod/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/automod/menus.py -------------------------------------------------------------------------------- /badges/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/__init__.py -------------------------------------------------------------------------------- /badges/badge_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/badge_entry.py -------------------------------------------------------------------------------- /badges/badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/badges.py -------------------------------------------------------------------------------- /badges/barcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/barcode.py -------------------------------------------------------------------------------- /badges/data/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/data/arial.ttf -------------------------------------------------------------------------------- /badges/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/info.json -------------------------------------------------------------------------------- /badges/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/locales/fr-FR.po -------------------------------------------------------------------------------- /badges/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/locales/messages.pot -------------------------------------------------------------------------------- /badges/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/locales/sv-SE.po -------------------------------------------------------------------------------- /badges/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/badges/templates.py -------------------------------------------------------------------------------- /bingo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/bingo/__init__.py -------------------------------------------------------------------------------- /bingo/bingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/bingo/bingo.py -------------------------------------------------------------------------------- /bingo/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/bingo/converter.py -------------------------------------------------------------------------------- /bingo/data/SourceSansPro-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/bingo/data/SourceSansPro-SemiBold.ttf -------------------------------------------------------------------------------- /bingo/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/bingo/info.json -------------------------------------------------------------------------------- /cah/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cah/LICENSE -------------------------------------------------------------------------------- /cah/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cah/__init__.py -------------------------------------------------------------------------------- /cah/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cah/core.py -------------------------------------------------------------------------------- /cah/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cah/game.py -------------------------------------------------------------------------------- /cah/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cah/info.json -------------------------------------------------------------------------------- /citation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/__init__.py -------------------------------------------------------------------------------- /citation/citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citation.py -------------------------------------------------------------------------------- /citation/citations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/LICENSE -------------------------------------------------------------------------------- /citation/citations/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/Readme.md -------------------------------------------------------------------------------- /citation/citations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/__init__.py -------------------------------------------------------------------------------- /citation/citations/data/BMmini.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/data/BMmini.ttf -------------------------------------------------------------------------------- /citation/citations/data/Megan_Serif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/data/Megan_Serif.ttf -------------------------------------------------------------------------------- /citation/citations/data/crescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/data/crescent.png -------------------------------------------------------------------------------- /citation/citations/data/moa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/data/moa.png -------------------------------------------------------------------------------- /citation/citations/data/stamp_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/data/stamp_bg.png -------------------------------------------------------------------------------- /citation/citations/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/defaults.py -------------------------------------------------------------------------------- /citation/citations/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/enums.py -------------------------------------------------------------------------------- /citation/citations/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/factory.py -------------------------------------------------------------------------------- /citation/citations/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/citations/themes.py -------------------------------------------------------------------------------- /citation/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/citation/info.json -------------------------------------------------------------------------------- /cleverbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cleverbot/__init__.py -------------------------------------------------------------------------------- /cleverbot/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cleverbot/api.py -------------------------------------------------------------------------------- /cleverbot/cleverbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cleverbot/cleverbot.py -------------------------------------------------------------------------------- /cleverbot/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cleverbot/errors.py -------------------------------------------------------------------------------- /cleverbot/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cleverbot/info.json -------------------------------------------------------------------------------- /cleverbot/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cleverbot/locales/fr-FR.po -------------------------------------------------------------------------------- /cleverbot/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/cleverbot/locales/sv-SE.po -------------------------------------------------------------------------------- /compliment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/compliment/__init__.py -------------------------------------------------------------------------------- /compliment/compliment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/compliment/compliment.py -------------------------------------------------------------------------------- /compliment/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/compliment/info.json -------------------------------------------------------------------------------- /compliment/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/compliment/locales/fr-FR.po -------------------------------------------------------------------------------- /compliment/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/compliment/locales/messages.pot -------------------------------------------------------------------------------- /compliment/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/compliment/locales/sv-SE.po -------------------------------------------------------------------------------- /conversions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/conversions/__init__.py -------------------------------------------------------------------------------- /conversions/coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/conversions/coin.py -------------------------------------------------------------------------------- /conversions/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/conversions/conversions.py -------------------------------------------------------------------------------- /conversions/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/conversions/errors.py -------------------------------------------------------------------------------- /conversions/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/conversions/info.json -------------------------------------------------------------------------------- /conversions/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/conversions/locales/fr-FR.po -------------------------------------------------------------------------------- /conversions/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/conversions/locales/sv-SE.po -------------------------------------------------------------------------------- /crabrave/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/crabrave/__init__.py -------------------------------------------------------------------------------- /crabrave/crabrave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/crabrave/crabrave.py -------------------------------------------------------------------------------- /crabrave/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/crabrave/info.json -------------------------------------------------------------------------------- /crabrave/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/crabrave/locales/fr-FR.po -------------------------------------------------------------------------------- /crabrave/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/crabrave/locales/sv-SE.po -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/crowdin.yml -------------------------------------------------------------------------------- /destiny/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/.gitignore -------------------------------------------------------------------------------- /destiny/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/__init__.py -------------------------------------------------------------------------------- /destiny/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/api.py -------------------------------------------------------------------------------- /destiny/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/converter.py -------------------------------------------------------------------------------- /destiny/destiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/destiny.py -------------------------------------------------------------------------------- /destiny/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/errors.py -------------------------------------------------------------------------------- /destiny/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/info.json -------------------------------------------------------------------------------- /destiny/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/locales/fr-FR.po -------------------------------------------------------------------------------- /destiny/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/locales/messages.pot -------------------------------------------------------------------------------- /destiny/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/locales/sv-SE.po -------------------------------------------------------------------------------- /destiny/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/destiny/menus.py -------------------------------------------------------------------------------- /elements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/elements/__init__.py -------------------------------------------------------------------------------- /elements/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/elements/core.py -------------------------------------------------------------------------------- /elements/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/elements/data.py -------------------------------------------------------------------------------- /elements/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/elements/info.json -------------------------------------------------------------------------------- /elements/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/elements/locales/fr-FR.po -------------------------------------------------------------------------------- /elements/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/elements/locales/sv-SE.po -------------------------------------------------------------------------------- /encoding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/encoding/__init__.py -------------------------------------------------------------------------------- /encoding/braille.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/encoding/braille.py -------------------------------------------------------------------------------- /encoding/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/encoding/encoding.py -------------------------------------------------------------------------------- /encoding/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/encoding/info.json -------------------------------------------------------------------------------- /encoding/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/encoding/locales/fr-FR.po -------------------------------------------------------------------------------- /encoding/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/encoding/locales/sv-SE.po -------------------------------------------------------------------------------- /eventposter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/eventposter/__init__.py -------------------------------------------------------------------------------- /eventposter/event_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/eventposter/event_obj.py -------------------------------------------------------------------------------- /eventposter/eventposter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/eventposter/eventposter.py -------------------------------------------------------------------------------- /eventposter/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/eventposter/info.json -------------------------------------------------------------------------------- /eventposter/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/eventposter/locales/fr-FR.po -------------------------------------------------------------------------------- /eventposter/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/eventposter/locales/sv-SE.po -------------------------------------------------------------------------------- /extendedmodlog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/extendedmodlog/__init__.py -------------------------------------------------------------------------------- /extendedmodlog/eventmixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/extendedmodlog/eventmixin.py -------------------------------------------------------------------------------- /extendedmodlog/extendedmodlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/extendedmodlog/extendedmodlog.py -------------------------------------------------------------------------------- /extendedmodlog/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/extendedmodlog/info.json -------------------------------------------------------------------------------- /extendedmodlog/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/extendedmodlog/locales/fr-FR.po -------------------------------------------------------------------------------- /extendedmodlog/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/extendedmodlog/locales/messages.pot -------------------------------------------------------------------------------- /extendedmodlog/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/extendedmodlog/locales/sv-SE.po -------------------------------------------------------------------------------- /extendedmodlog/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/extendedmodlog/settings.py -------------------------------------------------------------------------------- /fenrir/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fenrir/__init__.py -------------------------------------------------------------------------------- /fenrir/fenrir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fenrir/fenrir.py -------------------------------------------------------------------------------- /fenrir/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fenrir/info.json -------------------------------------------------------------------------------- /fenrir/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fenrir/locales/fr-FR.po -------------------------------------------------------------------------------- /fenrir/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fenrir/locales/sv-SE.po -------------------------------------------------------------------------------- /fun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fun/__init__.py -------------------------------------------------------------------------------- /fun/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fun/constants.py -------------------------------------------------------------------------------- /fun/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fun/fun.py -------------------------------------------------------------------------------- /fun/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fun/info.json -------------------------------------------------------------------------------- /fun/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fun/locales/fr-FR.po -------------------------------------------------------------------------------- /fun/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/fun/locales/sv-SE.po -------------------------------------------------------------------------------- /hockey/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/__init__.py -------------------------------------------------------------------------------- /hockey/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/abc.py -------------------------------------------------------------------------------- /hockey/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/api.py -------------------------------------------------------------------------------- /hockey/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/components.py -------------------------------------------------------------------------------- /hockey/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/constants.py -------------------------------------------------------------------------------- /hockey/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/dev.py -------------------------------------------------------------------------------- /hockey/emoji.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/emoji.yaml -------------------------------------------------------------------------------- /hockey/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/errors.py -------------------------------------------------------------------------------- /hockey/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/game.py -------------------------------------------------------------------------------- /hockey/gamedaychannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/gamedaychannels.py -------------------------------------------------------------------------------- /hockey/gamedaythreads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/gamedaythreads.py -------------------------------------------------------------------------------- /hockey/goal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/goal.py -------------------------------------------------------------------------------- /hockey/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/helper.py -------------------------------------------------------------------------------- /hockey/hockey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/hockey.py -------------------------------------------------------------------------------- /hockey/hockey_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/hockey_commands.py -------------------------------------------------------------------------------- /hockey/hockeypickems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/hockeypickems.py -------------------------------------------------------------------------------- /hockey/hockeyset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/hockeyset.py -------------------------------------------------------------------------------- /hockey/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/info.json -------------------------------------------------------------------------------- /hockey/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/locales/fr-FR.po -------------------------------------------------------------------------------- /hockey/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/locales/messages.pot -------------------------------------------------------------------------------- /hockey/locales/messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/locales/messages.txt -------------------------------------------------------------------------------- /hockey/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/locales/sv-SE.po -------------------------------------------------------------------------------- /hockey/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/menu.py -------------------------------------------------------------------------------- /hockey/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/notifications.py -------------------------------------------------------------------------------- /hockey/pickems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/pickems.py -------------------------------------------------------------------------------- /hockey/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/player.py -------------------------------------------------------------------------------- /hockey/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/schedule.py -------------------------------------------------------------------------------- /hockey/standings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/standings.py -------------------------------------------------------------------------------- /hockey/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/stats.py -------------------------------------------------------------------------------- /hockey/teamentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hockey/teamentry.py -------------------------------------------------------------------------------- /hue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hue/__init__.py -------------------------------------------------------------------------------- /hue/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hue/api.py -------------------------------------------------------------------------------- /hue/hue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hue/hue.py -------------------------------------------------------------------------------- /hue/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hue/info.json -------------------------------------------------------------------------------- /hue/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hue/locales/fr-FR.po -------------------------------------------------------------------------------- /hue/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/hue/locales/sv-SE.po -------------------------------------------------------------------------------- /imagemaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/__init__.py -------------------------------------------------------------------------------- /imagemaker/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/converter.py -------------------------------------------------------------------------------- /imagemaker/data/impact.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/impact.ttf -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_00.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_02.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_03.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_05.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_06.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_07.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_08.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_09.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_11.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_12.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_14.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_15.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_16.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_17.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_18.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_21.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_22.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_24.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_25.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_26.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_28.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_29.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_30.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_32.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_33.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_35.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_37.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_38.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_39.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_41.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_42.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_43.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_44.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_45.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_46.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_47.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_48.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_49.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_50.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_51.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_52.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_54.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_55.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_57.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_59.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_60.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/Trump_62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/Trump_62.png -------------------------------------------------------------------------------- /imagemaker/data/trump_template/frames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/data/trump_template/frames.json -------------------------------------------------------------------------------- /imagemaker/imagemaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/imagemaker.py -------------------------------------------------------------------------------- /imagemaker/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/info.json -------------------------------------------------------------------------------- /imagemaker/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/locales/fr-FR.po -------------------------------------------------------------------------------- /imagemaker/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imagemaker/locales/sv-SE.po -------------------------------------------------------------------------------- /imgflip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imgflip/__init__.py -------------------------------------------------------------------------------- /imgflip/imgflip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imgflip/imgflip.py -------------------------------------------------------------------------------- /imgflip/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imgflip/info.json -------------------------------------------------------------------------------- /imgflip/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imgflip/locales/fr-FR.po -------------------------------------------------------------------------------- /imgflip/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/imgflip/locales/sv-SE.po -------------------------------------------------------------------------------- /info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/info.json -------------------------------------------------------------------------------- /insult/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/insult/__init__.py -------------------------------------------------------------------------------- /insult/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/insult/info.json -------------------------------------------------------------------------------- /insult/insult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/insult/insult.py -------------------------------------------------------------------------------- /insult/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/insult/locales/fr-FR.po -------------------------------------------------------------------------------- /insult/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/insult/locales/messages.pot -------------------------------------------------------------------------------- /insult/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/insult/locales/sv-SE.po -------------------------------------------------------------------------------- /inviteblocklist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/inviteblocklist/__init__.py -------------------------------------------------------------------------------- /inviteblocklist/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/inviteblocklist/info.json -------------------------------------------------------------------------------- /inviteblocklist/inviteblocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/inviteblocklist/inviteblocklist.py -------------------------------------------------------------------------------- /inviteblocklist/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/inviteblocklist/locales/fr-FR.po -------------------------------------------------------------------------------- /inviteblocklist/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/inviteblocklist/locales/sv-SE.po -------------------------------------------------------------------------------- /loaddev/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/loaddev/__init__.py -------------------------------------------------------------------------------- /loaddev/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/loaddev/info.json -------------------------------------------------------------------------------- /loaddev/loaddev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/loaddev/loaddev.py -------------------------------------------------------------------------------- /loaddev/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/loaddev/locales/fr-FR.po -------------------------------------------------------------------------------- /loaddev/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/loaddev/locales/sv-SE.po -------------------------------------------------------------------------------- /mentionprefix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mentionprefix/__init__.py -------------------------------------------------------------------------------- /mentionprefix/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mentionprefix/info.json -------------------------------------------------------------------------------- /mentionprefix/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mentionprefix/locales/fr-FR.po -------------------------------------------------------------------------------- /mentionprefix/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mentionprefix/locales/sv-SE.po -------------------------------------------------------------------------------- /mentionprefix/mentionprefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mentionprefix/mentionprefix.py -------------------------------------------------------------------------------- /mock/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mock/__init__.py -------------------------------------------------------------------------------- /mock/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mock/info.json -------------------------------------------------------------------------------- /mock/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mock/locales/fr-FR.po -------------------------------------------------------------------------------- /mock/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mock/locales/sv-SE.po -------------------------------------------------------------------------------- /mock/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/mock/mock.py -------------------------------------------------------------------------------- /nasa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/nasa/__init__.py -------------------------------------------------------------------------------- /nasa/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/nasa/core.py -------------------------------------------------------------------------------- /nasa/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/nasa/info.json -------------------------------------------------------------------------------- /nasa/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/nasa/menus.py -------------------------------------------------------------------------------- /nasa/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/nasa/models.py -------------------------------------------------------------------------------- /notsobot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/README.md -------------------------------------------------------------------------------- /notsobot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/__init__.py -------------------------------------------------------------------------------- /notsobot/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/converter.py -------------------------------------------------------------------------------- /notsobot/data/Minecraftia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/data/Minecraftia.ttf -------------------------------------------------------------------------------- /notsobot/data/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/data/arial.ttf -------------------------------------------------------------------------------- /notsobot/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/info.json -------------------------------------------------------------------------------- /notsobot/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/locales/fr-FR.po -------------------------------------------------------------------------------- /notsobot/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/locales/sv-SE.po -------------------------------------------------------------------------------- /notsobot/notsobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/notsobot.py -------------------------------------------------------------------------------- /notsobot/pixelsort/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/pixelsort/constants.py -------------------------------------------------------------------------------- /notsobot/pixelsort/interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/pixelsort/interval.py -------------------------------------------------------------------------------- /notsobot/pixelsort/sorter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/pixelsort/sorter.py -------------------------------------------------------------------------------- /notsobot/pixelsort/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/pixelsort/sorting.py -------------------------------------------------------------------------------- /notsobot/pixelsort/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/pixelsort/util.py -------------------------------------------------------------------------------- /notsobot/vw/img/png/background/geometric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/background/geometric.jpg -------------------------------------------------------------------------------- /notsobot/vw/img/png/bubbles/JavaUpdateAvailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/bubbles/JavaUpdateAvailable.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/bubbles/Windows Connection with Little connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/bubbles/Windows Connection with Little connectivity.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/bubbles/a screaming comes across the sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/bubbles/a screaming comes across the sky.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/bubbles/faster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/bubbles/faster.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/bubbles/out of a fantasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/bubbles/out of a fantasy.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/bubbles/pluggeddeviceintoaudiojack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/bubbles/pluggeddeviceintoaudiojack.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/bubbles/project a world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/bubbles/project a world.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/bubbles/stupid_bubble_by_Baka_Sora_Club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/bubbles/stupid_bubble_by_Baka_Sora_Club.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/greek/greek1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/greek/greek1.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/greek/greek2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/greek/greek2.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/greek/greek3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/greek/greek3.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/greek/greek4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/greek/greek4.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/greek/siddhartha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/greek/siddhartha.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/pics/ak47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/pics/ak47.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/pics/blindblake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/pics/blindblake.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/pics/dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/pics/dolphin.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/pics/drip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/pics/drip.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/pics/fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/pics/fiji.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/pics/gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/pics/gun.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/pics/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/pics/knife.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/pics/knuckle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/pics/knuckle.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/98-problem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/98-problem.jpg -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/9x-wu4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/9x-wu4.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/C2FAT32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/C2FAT32.gif -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/IPC_MPI_CP5611_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/IPC_MPI_CP5611_1.gif -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/Windows_98_-_Critical_Update_Notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/Windows_98_-_Critical_Update_Notification.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/au_15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/au_15.gif -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/au_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/au_16.gif -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/au_20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/au_20.gif -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/create_disk_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/create_disk_image.gif -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/ht1338-alert-001-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/ht1338-alert-001-en.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/regedit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/regedit.gif -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/screenshot.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/sysinfo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/sysinfo.gif -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/update.gif -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/win98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/win98.png -------------------------------------------------------------------------------- /notsobot/vw/img/png/windows/winnt31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/img/png/windows/winnt31.png -------------------------------------------------------------------------------- /notsobot/vw/macintoshplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/macintoshplus.py -------------------------------------------------------------------------------- /notsobot/vw/resources/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/notsobot/vw/resources/arial.ttf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reddit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/reddit/__init__.py -------------------------------------------------------------------------------- /reddit/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/reddit/helpers.py -------------------------------------------------------------------------------- /reddit/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/reddit/info.json -------------------------------------------------------------------------------- /reddit/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/reddit/locales/fr-FR.po -------------------------------------------------------------------------------- /reddit/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/reddit/locales/sv-SE.po -------------------------------------------------------------------------------- /reddit/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/reddit/menus.py -------------------------------------------------------------------------------- /reddit/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/reddit/reddit.py -------------------------------------------------------------------------------- /rekt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/rekt/__init__.py -------------------------------------------------------------------------------- /rekt/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/rekt/info.json -------------------------------------------------------------------------------- /rekt/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/rekt/locales/fr-FR.po -------------------------------------------------------------------------------- /rekt/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/rekt/locales/messages.pot -------------------------------------------------------------------------------- /rekt/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/rekt/locales/sv-SE.po -------------------------------------------------------------------------------- /rekt/rekt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/rekt/rekt.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/requirements.txt -------------------------------------------------------------------------------- /retrigger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/README.md -------------------------------------------------------------------------------- /retrigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/__init__.py -------------------------------------------------------------------------------- /retrigger/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/abc.py -------------------------------------------------------------------------------- /retrigger/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/converters.py -------------------------------------------------------------------------------- /retrigger/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/info.json -------------------------------------------------------------------------------- /retrigger/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/locales/fr-FR.po -------------------------------------------------------------------------------- /retrigger/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/locales/messages.pot -------------------------------------------------------------------------------- /retrigger/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/locales/sv-SE.po -------------------------------------------------------------------------------- /retrigger/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/menus.py -------------------------------------------------------------------------------- /retrigger/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/message.py -------------------------------------------------------------------------------- /retrigger/retrigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/retrigger.py -------------------------------------------------------------------------------- /retrigger/slash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/slash.py -------------------------------------------------------------------------------- /retrigger/triggerhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/retrigger/triggerhandler.py -------------------------------------------------------------------------------- /roletools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/__init__.py -------------------------------------------------------------------------------- /roletools/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/abc.py -------------------------------------------------------------------------------- /roletools/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/buttons.py -------------------------------------------------------------------------------- /roletools/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/components.py -------------------------------------------------------------------------------- /roletools/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/converter.py -------------------------------------------------------------------------------- /roletools/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/events.py -------------------------------------------------------------------------------- /roletools/exclusive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/exclusive.py -------------------------------------------------------------------------------- /roletools/inclusive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/inclusive.py -------------------------------------------------------------------------------- /roletools/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/info.json -------------------------------------------------------------------------------- /roletools/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/locales/fr-FR.po -------------------------------------------------------------------------------- /roletools/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/locales/sv-SE.po -------------------------------------------------------------------------------- /roletools/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/menus.py -------------------------------------------------------------------------------- /roletools/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/messages.py -------------------------------------------------------------------------------- /roletools/reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/reactions.py -------------------------------------------------------------------------------- /roletools/requires.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/requires.py -------------------------------------------------------------------------------- /roletools/roletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/roletools.py -------------------------------------------------------------------------------- /roletools/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/select.py -------------------------------------------------------------------------------- /roletools/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/roletools/settings.py -------------------------------------------------------------------------------- /runescape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/__init__.py -------------------------------------------------------------------------------- /runescape/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/helpers.py -------------------------------------------------------------------------------- /runescape/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/info.json -------------------------------------------------------------------------------- /runescape/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/locales/fr-FR.po -------------------------------------------------------------------------------- /runescape/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/locales/sv-SE.po -------------------------------------------------------------------------------- /runescape/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/menus.py -------------------------------------------------------------------------------- /runescape/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/profile.py -------------------------------------------------------------------------------- /runescape/rsrandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/rsrandom.py -------------------------------------------------------------------------------- /runescape/runescape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/runescape.py -------------------------------------------------------------------------------- /runescape/tms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/tms.py -------------------------------------------------------------------------------- /runescape/viswax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/viswax.py -------------------------------------------------------------------------------- /runescape/wikiapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/wikiapi.py -------------------------------------------------------------------------------- /runescape/wilderness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/wilderness.py -------------------------------------------------------------------------------- /runescape/xp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/runescape/xp.py -------------------------------------------------------------------------------- /serverstats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/serverstats/__init__.py -------------------------------------------------------------------------------- /serverstats/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/serverstats/converters.py -------------------------------------------------------------------------------- /serverstats/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/serverstats/info.json -------------------------------------------------------------------------------- /serverstats/locales/fr-fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/serverstats/locales/fr-fr.po -------------------------------------------------------------------------------- /serverstats/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/serverstats/locales/messages.pot -------------------------------------------------------------------------------- /serverstats/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/serverstats/locales/sv-SE.po -------------------------------------------------------------------------------- /serverstats/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/serverstats/menus.py -------------------------------------------------------------------------------- /serverstats/serverstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/serverstats/serverstats.py -------------------------------------------------------------------------------- /spotify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/__init__.py -------------------------------------------------------------------------------- /spotify/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/abc.py -------------------------------------------------------------------------------- /spotify/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/components.py -------------------------------------------------------------------------------- /spotify/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/helpers.py -------------------------------------------------------------------------------- /spotify/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/info.json -------------------------------------------------------------------------------- /spotify/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/locales/fr-FR.po -------------------------------------------------------------------------------- /spotify/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/locales/sv-SE.po -------------------------------------------------------------------------------- /spotify/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/menus.py -------------------------------------------------------------------------------- /spotify/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/rpc.py -------------------------------------------------------------------------------- /spotify/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/spotify.py -------------------------------------------------------------------------------- /spotify/spotify_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/spotify/spotify_commands.py -------------------------------------------------------------------------------- /starboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/starboard/__init__.py -------------------------------------------------------------------------------- /starboard/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/starboard/converters.py -------------------------------------------------------------------------------- /starboard/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/starboard/events.py -------------------------------------------------------------------------------- /starboard/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/starboard/info.json -------------------------------------------------------------------------------- /starboard/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/starboard/locales/fr-FR.po -------------------------------------------------------------------------------- /starboard/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/starboard/locales/messages.pot -------------------------------------------------------------------------------- /starboard/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/starboard/locales/sv-SE.po -------------------------------------------------------------------------------- /starboard/starboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/starboard/starboard.py -------------------------------------------------------------------------------- /starboard/starboard_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/starboard/starboard_entry.py -------------------------------------------------------------------------------- /tarot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tarot/__init__.py -------------------------------------------------------------------------------- /tarot/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tarot/info.json -------------------------------------------------------------------------------- /tarot/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tarot/locales/fr-FR.po -------------------------------------------------------------------------------- /tarot/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tarot/locales/sv-SE.po -------------------------------------------------------------------------------- /tarot/tarot_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tarot/tarot_cards.py -------------------------------------------------------------------------------- /tarot/tarotreading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tarot/tarotreading.py -------------------------------------------------------------------------------- /timestamp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/timestamp/__init__.py -------------------------------------------------------------------------------- /timestamp/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/timestamp/info.json -------------------------------------------------------------------------------- /timestamp/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/timestamp/timestamp.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tox.ini -------------------------------------------------------------------------------- /translate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/__init__.py -------------------------------------------------------------------------------- /translate/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/api.py -------------------------------------------------------------------------------- /translate/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/converters.py -------------------------------------------------------------------------------- /translate/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/errors.py -------------------------------------------------------------------------------- /translate/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/flags.py -------------------------------------------------------------------------------- /translate/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/info.json -------------------------------------------------------------------------------- /translate/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/locales/fr-FR.po -------------------------------------------------------------------------------- /translate/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/locales/messages.pot -------------------------------------------------------------------------------- /translate/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/locales/sv-SE.po -------------------------------------------------------------------------------- /translate/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/translate/translate.py -------------------------------------------------------------------------------- /trusty-cogs.sublime-project: -------------------------------------------------------------------------------- 1 | {"folders": [{"path": "."}]} 2 | -------------------------------------------------------------------------------- /tweets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tweets/__init__.py -------------------------------------------------------------------------------- /tweets/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tweets/info.json -------------------------------------------------------------------------------- /tweets/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tweets/locales/fr-FR.po -------------------------------------------------------------------------------- /tweets/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tweets/locales/messages.pot -------------------------------------------------------------------------------- /tweets/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tweets/locales/sv-SE.po -------------------------------------------------------------------------------- /tweets/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tweets/menus.py -------------------------------------------------------------------------------- /tweets/tweet_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tweets/tweet_entry.py -------------------------------------------------------------------------------- /tweets/tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tweets/tweets.py -------------------------------------------------------------------------------- /tweets/tweets_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/tweets/tweets_api.py -------------------------------------------------------------------------------- /twitch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/twitch/__init__.py -------------------------------------------------------------------------------- /twitch/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/twitch/errors.py -------------------------------------------------------------------------------- /twitch/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/twitch/info.json -------------------------------------------------------------------------------- /twitch/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/twitch/locales/fr-FR.po -------------------------------------------------------------------------------- /twitch/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/twitch/locales/sv-SE.po -------------------------------------------------------------------------------- /twitch/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/twitch/menus.py -------------------------------------------------------------------------------- /twitch/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/twitch/twitch.py -------------------------------------------------------------------------------- /twitch/twitch_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/twitch/twitch_api.py -------------------------------------------------------------------------------- /twitch/twitch_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/twitch/twitch_models.py -------------------------------------------------------------------------------- /weather/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/weather/__init__.py -------------------------------------------------------------------------------- /weather/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/weather/api.py -------------------------------------------------------------------------------- /weather/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/weather/info.json -------------------------------------------------------------------------------- /weather/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/weather/locales/fr-FR.po -------------------------------------------------------------------------------- /weather/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/weather/locales/messages.pot -------------------------------------------------------------------------------- /weather/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/weather/locales/sv-SE.po -------------------------------------------------------------------------------- /weather/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/weather/menus.py -------------------------------------------------------------------------------- /weather/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/weather/weather.py -------------------------------------------------------------------------------- /welcome/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/welcome/__init__.py -------------------------------------------------------------------------------- /welcome/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/welcome/events.py -------------------------------------------------------------------------------- /welcome/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/welcome/info.json -------------------------------------------------------------------------------- /welcome/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/welcome/locales/fr-FR.po -------------------------------------------------------------------------------- /welcome/locales/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/welcome/locales/messages.pot -------------------------------------------------------------------------------- /welcome/locales/sv-SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/welcome/locales/sv-SE.po -------------------------------------------------------------------------------- /welcome/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/welcome/menus.py -------------------------------------------------------------------------------- /welcome/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrustyJAID/Trusty-cogs/HEAD/welcome/welcome.py --------------------------------------------------------------------------------