├── .dockerignore ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── issue_templates │ ├── Bug.md │ ├── Feature_Request.md │ └── Question.md └── merge_request_templates │ └── Merge_Request.md ├── Dockerfile ├── NadekoBot.Core ├── Common │ ├── AsyncLazy.cs │ ├── Attributes │ │ ├── Aliases.cs │ │ ├── BotPerm.cs │ │ ├── Description.cs │ │ ├── LeftoverAttribute.cs │ │ ├── NadekoCommand.cs │ │ ├── NadekoModuleAttribute.cs │ │ ├── NadekoOptions.cs │ │ ├── OwnerOnlyAttribute.cs │ │ ├── Ratelimit.cs │ │ ├── Usage.cs │ │ └── UserPerm.cs │ ├── BotConfigEditType.cs │ ├── CREmbed.cs │ ├── Collections │ │ ├── ConcurrentHashSet.cs │ │ ├── DisposableImutableList.cs │ │ ├── IndexedCollection.cs │ │ └── PoopyRingBuffer.cs │ ├── CommandData.cs │ ├── DownloadTracker.cs │ ├── GuildPerm.cs │ ├── INadekoCommandOptions.cs │ ├── ImageUrls.cs │ ├── LbOpts.cs │ ├── LogPlz.cs │ ├── ModuleBehaviors │ │ ├── IEarlyBlocker.cs │ │ ├── IINputTransformer.cs │ │ ├── ILateBlocker.cs │ │ ├── ILateExecutor.cs │ │ └── IModuleBehavior.cs │ ├── NadekoModule.cs │ ├── NadekoModuleExtensions.cs │ ├── NadekoRandom.cs │ ├── NoPublicBotPrecondition.cs │ ├── OptionsParser.cs │ ├── OsuMapData.cs │ ├── OsuUserBets.cs │ ├── PlatformHelper.cs │ ├── Pokemon │ │ ├── PokemonNameId.cs │ │ ├── SearchPokemon.cs │ │ └── SearchPokemonAbility.cs │ ├── Replacements │ │ ├── ReplacementBuilder.cs │ │ └── Replacer.cs │ ├── RequireObjectPropertiesContractResolver.cs │ ├── ShardCom │ │ ├── ShardComMessage.cs │ │ └── ShardComServer.cs │ ├── ShmartNumber.cs │ ├── SocketMessageEventWrapper.cs │ └── TypeReaders │ │ ├── AddRemove.cs │ │ ├── BotCommandTypeReader.cs │ │ ├── GuildDateTimeTypeReader.cs │ │ ├── GuildTypeReader.cs │ │ ├── Models │ │ ├── PermissionAction.cs │ │ └── StoopidTime.cs │ │ ├── ModuleTypeReader.cs │ │ ├── NadekoTypeReader.cs │ │ ├── PermissionActionTypeReader.cs │ │ ├── Rgba32TypeReader.cs │ │ ├── ShmartNumberTypeReader.cs │ │ └── StoopidTimeTypeReader.cs ├── Migrations │ ├── 20180923191508_init.Designer.cs │ ├── 20180923191508_init.cs │ ├── 20181102094215_unban-timer-reset.Designer.cs │ ├── 20181102094215_unban-timer-reset.cs │ ├── 20181210215935_remove-patreonrewards.Designer.cs │ ├── 20181210215935_remove-patreonrewards.cs │ ├── 20181210235022_readd-patreonrewards.Designer.cs │ ├── 20181210235022_readd-patreonrewards.cs │ ├── 20200623195238_cr-reactions.Designer.cs │ ├── 20200623195238_cr-reactions.cs │ ├── 20200624001725_link-filtering.Designer.cs │ ├── 20200624001725_link-filtering.cs │ ├── 20200624034917_addrole-punishment.Designer.cs │ ├── 20200624034917_addrole-punishment.cs │ ├── 20200625194534_warn-expiry.Designer.cs │ ├── 20200625194534_warn-expiry.cs │ ├── 20200712193950_voicexp.Designer.cs │ ├── 20200712193950_voicexp.cs │ └── NadekoContextModelSnapshot.cs ├── Modules │ ├── Administration │ │ ├── Administration.cs │ │ ├── AutoAssignRoleCommands.cs │ │ ├── Common │ │ │ ├── ProtectionStats.cs │ │ │ └── UserSpamStats.cs │ │ ├── DangerousCommands.cs │ │ ├── GameChannelCommands.cs │ │ ├── LocalizationCommands.cs │ │ ├── LogCommands.cs │ │ ├── ModuleCommands.cs │ │ ├── MuteCommands.cs │ │ ├── PlayingRotateCommands.cs │ │ ├── PrefixCommands.cs │ │ ├── ProtectionCommands.cs │ │ ├── PruneCommands.cs │ │ ├── RoleCommands.cs │ │ ├── SelfAssignedRolesCommands.cs │ │ ├── SelfCommands.cs │ │ ├── ServerGreetCommands.cs │ │ ├── Services │ │ │ ├── AdministrationService.cs │ │ │ ├── AutoAssignRoleService.cs │ │ │ ├── DangerousCommandsService.cs │ │ │ ├── GameVoiceChannelService.cs │ │ │ ├── GuildTimezoneService.cs │ │ │ ├── LogCommandService.cs │ │ │ ├── MuteService.cs │ │ │ ├── PackagesService.cs │ │ │ ├── PlayingRotateService.cs │ │ │ ├── ProtectionService.cs │ │ │ ├── PruneService.cs │ │ │ ├── RoleCommandsService.cs │ │ │ ├── SelfAssignedRolesService.cs │ │ │ ├── SelfService.cs │ │ │ ├── UserPunishService.cs │ │ │ └── VcRoleService.cs │ │ ├── TimeZoneCommands.cs │ │ ├── UserPunishCommands.cs │ │ └── VcRoleCommands.cs │ ├── CustomReactions │ │ ├── CustomReactions.cs │ │ ├── Extensions │ │ │ └── Extensions.cs │ │ └── Services │ │ │ └── CustomReactionsService.cs │ ├── Gambling │ │ ├── AnimalRacingCommands.cs │ │ ├── BlackJackCommands.cs │ │ ├── Common │ │ │ ├── AnimalRacing │ │ │ │ ├── AnimalRace.cs │ │ │ │ ├── AnimalRacingUser.cs │ │ │ │ ├── Exceptions │ │ │ │ │ ├── AlreadyJoinedException.cs │ │ │ │ │ ├── AlreadyStartedException.cs │ │ │ │ │ ├── AnimalRaceFullException.cs │ │ │ │ │ └── NotEnoughFundsException.cs │ │ │ │ └── RaceOptions.cs │ │ │ ├── Blackjack │ │ │ │ ├── Blackjack.cs │ │ │ │ └── Player.cs │ │ │ ├── CurrencyRaffleGame.cs │ │ │ ├── Deck.cs │ │ │ ├── Events │ │ │ │ ├── EventOptions.cs │ │ │ │ ├── GameStatusEvent.cs │ │ │ │ ├── ICurrencyEvent.cs │ │ │ │ └── ReactionEvent.cs │ │ │ ├── GamblingTopLevelModule.cs │ │ │ ├── Payout.cs │ │ │ ├── RollDuelGame.cs │ │ │ ├── Waifu │ │ │ │ ├── AffinityTitle.cs │ │ │ │ ├── ClaimTitle.cs │ │ │ │ ├── DivorceResult.cs │ │ │ │ ├── WaifuClaimResult.cs │ │ │ │ └── WaifuProfileTitle.cs │ │ │ └── WheelOfFortune │ │ │ │ └── WheelOfFortune.cs │ │ ├── Connect4 │ │ │ └── Connect4.cs │ │ ├── Connect4Commands.cs │ │ ├── CurrencyEventsCommands.cs │ │ ├── CurrencyRaffleCommands.cs │ │ ├── DiceRollCommands.cs │ │ ├── DrawCommands.cs │ │ ├── FlipCoinCommands.cs │ │ ├── FlowerShopCommands.cs │ │ ├── Gambling.cs │ │ ├── Services │ │ │ ├── AnimalRaceService.cs │ │ │ ├── BlackJackService.cs │ │ │ ├── CurrencyEventsService.cs │ │ │ ├── CurrencyRaffleService.cs │ │ │ ├── GamblingService.cs │ │ │ ├── PlantPickService.cs │ │ │ └── WaifuService.cs │ │ ├── SlotCommands.cs │ │ ├── WaifuClaimCommands.cs │ │ └── WheelOfFortuneCommands.cs │ ├── Games │ │ ├── AcropobiaCommands.cs │ │ ├── CleverBotCommands.cs │ │ ├── Common │ │ │ ├── Acrophobia │ │ │ │ ├── Acrophobia.cs │ │ │ │ └── AcrophobiaUser.cs │ │ │ ├── ChatterBot │ │ │ │ ├── ChatterBotResponse.cs │ │ │ │ ├── ChatterBotSession.cs │ │ │ │ ├── CleverbotResponse.cs │ │ │ │ ├── IChatterBotSession.cs │ │ │ │ └── OfficialCleverbotSession.cs │ │ │ ├── GirlRating.cs │ │ │ ├── Hangman │ │ │ │ ├── Exceptions │ │ │ │ │ └── TermNotFoundException.cs │ │ │ │ ├── Hangman.cs │ │ │ │ ├── HangmanObject.cs │ │ │ │ ├── Phase.cs │ │ │ │ ├── TermPool.cs │ │ │ │ └── TermType.cs │ │ │ ├── Nunchi │ │ │ │ └── Nunchi.cs │ │ │ ├── PollRunner.cs │ │ │ ├── TicTacToe.cs │ │ │ ├── Trivia │ │ │ │ ├── TriviaGame.cs │ │ │ │ ├── TriviaOptions.cs │ │ │ │ ├── TriviaQuestion.cs │ │ │ │ └── TriviaQuestionPool.cs │ │ │ ├── TypingArticle.cs │ │ │ └── TypingGame.cs │ │ ├── Connect4Commands.cs │ │ ├── Games.cs │ │ ├── HangmanCommands.cs │ │ ├── NunchiCommands.cs │ │ ├── PlantAndPickCommands.cs │ │ ├── PollCommands.cs │ │ ├── Services │ │ │ ├── ChatterbotService.cs │ │ │ ├── GamesService.cs │ │ │ └── PollService.cs │ │ ├── SpeedTypingCommands.cs │ │ ├── TicTacToeCommands.cs │ │ └── TriviaCommands.cs │ ├── Help │ │ ├── Common │ │ │ └── CommandsOptions.cs │ │ ├── Help.cs │ │ └── Services │ │ │ └── HelpService.cs │ ├── Music │ │ ├── Common │ │ │ ├── Exceptions │ │ │ │ ├── NotInVoiceChannelException.cs │ │ │ │ ├── QueueFullException.cs │ │ │ │ └── SongNotFoundException.cs │ │ │ ├── MusicPlayer.cs │ │ │ ├── MusicQueue.cs │ │ │ ├── PoopyBufferReborn.cs │ │ │ ├── SongBuffer.cs │ │ │ ├── SongInfo.cs │ │ │ └── SongResolver │ │ │ │ ├── ISongResolverFactory.cs │ │ │ │ ├── SongResolverFactory.cs │ │ │ │ └── Strategies │ │ │ │ ├── IResolverStrategy.cs │ │ │ │ ├── LocalSongResolveStrategy.cs │ │ │ │ ├── RadioResolveStrategy.cs │ │ │ │ ├── SoundCloudResolveStrategy.cs │ │ │ │ └── YoutubeResolveStrategy.cs │ │ ├── Extensions │ │ │ └── Extensions.cs │ │ ├── Music.cs │ │ └── Services │ │ │ └── MusicService.cs │ ├── Nsfw │ │ ├── Exceptions │ │ │ └── TagBlacklistedException.cs │ │ └── Nsfw.cs │ ├── Permissions │ │ ├── BlacklistCommands.cs │ │ ├── CmdCdsCommands.cs │ │ ├── Common │ │ │ ├── PermissionCache.cs │ │ │ ├── PermissionExtensions.cs │ │ │ └── PermissionsCollection.cs │ │ ├── FilterCommands.cs │ │ ├── GlobalPermissionCommands.cs │ │ ├── Permissions.cs │ │ ├── ResetPermissionsCommands.cs │ │ └── Services │ │ │ ├── BlacklistService.cs │ │ │ ├── CmdCdService.cs │ │ │ ├── FilterService.cs │ │ │ ├── GlobalPermissionService.cs │ │ │ ├── PermissionsService.cs │ │ │ └── ResetPermissionsService.cs │ ├── Searches │ │ ├── AnimeSearchCommands.cs │ │ ├── Common │ │ │ ├── AnimeResult.cs │ │ │ ├── BibleVerses.cs │ │ │ ├── CryptoData.cs │ │ │ ├── DefineModel.cs │ │ │ ├── E621Object.cs │ │ │ ├── Exceptions │ │ │ │ └── StreamNotFoundException.cs │ │ │ ├── GatariUserResponse.cs │ │ │ ├── GatariUserStatsResponse.cs │ │ │ ├── GoogleSearchResult.cs │ │ │ ├── HearthstoneCardData.cs │ │ │ ├── ImageCacherObject.cs │ │ │ ├── MagicItem.cs │ │ │ ├── MangaResult.cs │ │ │ ├── MtgData.cs │ │ │ ├── NovelData.cs │ │ │ ├── OmdbMovie.cs │ │ │ ├── OsuUserData.cs │ │ │ ├── PathOfExileModels.cs │ │ │ ├── SearchImageCacher.cs │ │ │ ├── StreamNotifications │ │ │ │ ├── Models │ │ │ │ │ ├── PicartoChannelResponse.cs │ │ │ │ │ ├── StreamData.cs │ │ │ │ │ ├── StreamDataKey.cs │ │ │ │ │ ├── TwitchResponseHelix.cs │ │ │ │ │ ├── TwitchResponseV5.cs │ │ │ │ │ └── TwitchUsersResponseV5.cs │ │ │ │ ├── NotifChecker.cs │ │ │ │ └── Providers │ │ │ │ │ ├── PicartoProvider.cs │ │ │ │ │ ├── Provider.cs │ │ │ │ │ ├── TwitchHelixProvider.cs │ │ │ │ │ └── TwitchProvider.cs │ │ │ ├── TimeData.cs │ │ │ ├── TimeModels.cs │ │ │ ├── UrbanDef.cs │ │ │ ├── WeatherModels.cs │ │ │ ├── WikipediaApiModel.cs │ │ │ ├── WoWJoke.cs │ │ │ └── YtVideoData.cs │ │ ├── CryptoCommands.cs │ │ ├── FeedCommands.cs │ │ ├── JokeCommands.cs │ │ ├── LoLCommands.cs │ │ ├── MemegenCommands.cs │ │ ├── OsuCommands.cs │ │ ├── PathOfExileCommands.cs │ │ ├── PlaceCommands.cs │ │ ├── PokemonSearchCommands.cs │ │ ├── Searches.cs │ │ ├── Services │ │ │ ├── AnimeSearchService.cs │ │ │ ├── CryptoService.cs │ │ │ ├── FeedsService.cs │ │ │ ├── SearchesService.cs │ │ │ ├── StreamNotificationService.cs │ │ │ └── YtTrackService.cs │ │ ├── StreamNotificationCommands.cs │ │ ├── TranslatorCommands.cs │ │ ├── XkcdCommands.cs │ │ └── YtUploadCommands.cs │ ├── Utility │ │ ├── BotConfigCommands.cs │ │ ├── CalcCommands.cs │ │ ├── CommandMapCommands.cs │ │ ├── Common │ │ │ ├── ConvertUnit.cs │ │ │ ├── Exceptions │ │ │ │ ├── StreamRoleNotFoundException.cs │ │ │ │ └── StreamRolePermissionException.cs │ │ │ ├── Patreon │ │ │ │ ├── PatreonData.cs │ │ │ │ ├── PatreonPledge.cs │ │ │ │ └── PatreonUser.cs │ │ │ ├── RepeatRunner.cs │ │ │ └── StreamRoleListType.cs │ │ ├── Extensions │ │ │ └── StreamRoleExtensions.cs │ │ ├── InfoCommands.cs │ │ ├── InviteCommands.cs │ │ ├── PatreonCommands.cs │ │ ├── QuoteCommands.cs │ │ ├── RemindCommands.cs │ │ ├── RepeatCommands.cs │ │ ├── Services │ │ │ ├── CommandMapService.cs │ │ │ ├── ConverterService.cs │ │ │ ├── InviteService.cs │ │ │ ├── MessageRepeaterService.cs │ │ │ ├── PatreonRewardsService.cs │ │ │ ├── RemindService.cs │ │ │ ├── StreamRoleService.cs │ │ │ └── VerboseErrorsService.cs │ │ ├── StreamRoleCommands.cs │ │ ├── UnitConversionCommands.cs │ │ ├── Utility.cs │ │ └── VerboseErrorCommands.cs │ └── Xp │ │ ├── Club.cs │ │ ├── Common │ │ ├── FullUserStats.cs │ │ ├── LevelStats.cs │ │ └── XpTemplate.cs │ │ ├── Extensions │ │ └── Extensions.cs │ │ ├── ResetCommands.cs │ │ ├── Services │ │ ├── ClubService.cs │ │ ├── UserCacheItem.cs │ │ └── XpService.cs │ │ └── Xp.cs ├── NadekoBot.Core.csproj ├── Services │ ├── CommandHandler.cs │ ├── Common │ │ ├── ImageLoader.cs │ │ └── RedisImageArray.cs │ ├── Database │ │ ├── IUnitOfWork.cs │ │ ├── Models │ │ │ ├── AntiProtection.cs │ │ │ ├── BotConfig.cs │ │ │ ├── ClubInfo.cs │ │ │ ├── CommandAlias.cs │ │ │ ├── CommandCooldown.cs │ │ │ ├── CurrencyTransaction.cs │ │ │ ├── CustomReaction.cs │ │ │ ├── DbEntity.cs │ │ │ ├── DelMsgOnCmdChannel.cs │ │ │ ├── DiscordUser.cs │ │ │ ├── Event.cs │ │ │ ├── FeedSub.cs │ │ │ ├── FilterChannelId.cs │ │ │ ├── FilterLinksChannelId.cs │ │ │ ├── FilteredWord.cs │ │ │ ├── FollowedStream.cs │ │ │ ├── GCChannelId.cs │ │ │ ├── GroupName.cs │ │ │ ├── GuildConfig.cs │ │ │ ├── IgnoredLogChannel.cs │ │ │ ├── IgnoredVoicePresenceChannel.cs │ │ │ ├── LogSetting.cs │ │ │ ├── MusicPlaylist.cs │ │ │ ├── MusicSettings.cs │ │ │ ├── MutedUserId.cs │ │ │ ├── NsfwBlacklitedTag.cs │ │ │ ├── Permission.cs │ │ │ ├── PlantedCurrency.cs │ │ │ ├── PlaylistSong.cs │ │ │ ├── Poll.cs │ │ │ ├── PollVote.cs │ │ │ ├── Quote.cs │ │ │ ├── ReactionRole.cs │ │ │ ├── Reminder.cs │ │ │ ├── Repeater.cs │ │ │ ├── RewardedUser.cs │ │ │ ├── SelfAssignableRole.cs │ │ │ ├── ShopEntry.cs │ │ │ ├── SlowmodeIgnoredRole.cs │ │ │ ├── SlowmodeIgnoredUser.cs │ │ │ ├── Stake.cs │ │ │ ├── StreamRoleSettings.cs │ │ │ ├── UnbanTimer.cs │ │ │ ├── UnmuteTimer.cs │ │ │ ├── UnroleTimer.cs │ │ │ ├── UserXpStats.cs │ │ │ ├── VcRoleInfo.cs │ │ │ ├── Waifu.cs │ │ │ ├── WaifuItem.cs │ │ │ ├── WaifuUpdate.cs │ │ │ ├── WarnExpireAction.cs │ │ │ ├── Warning.cs │ │ │ ├── WarningPunishment.cs │ │ │ ├── XpSettings.cs │ │ │ └── YtFollowedChannel.cs │ │ ├── NadekoContext.cs │ │ ├── Repositories │ │ │ ├── IBotConfigRepository.cs │ │ │ ├── IClubRepository.cs │ │ │ ├── ICurrencyTransactionsRepository.cs │ │ │ ├── ICustomReactionRepository.cs │ │ │ ├── IDiscordUserRepository.cs │ │ │ ├── IGuildConfigRepository.cs │ │ │ ├── IMusicPlaylistRepository.cs │ │ │ ├── IPlantedCurrencyRepository.cs │ │ │ ├── IPollsRepository.cs │ │ │ ├── IQuoteRepository.cs │ │ │ ├── IReminderRepository.cs │ │ │ ├── IRepository.cs │ │ │ ├── ISelfAssignedRolesRepository.cs │ │ │ ├── IWaifuRepository.cs │ │ │ ├── IWarningsRepository.cs │ │ │ ├── IXpRepository.cs │ │ │ └── Impl │ │ │ │ ├── BotConfigRepository.cs │ │ │ │ ├── ClubRepository.cs │ │ │ │ ├── CurrencyTransactionsRepository.cs │ │ │ │ ├── CustomReactionRepository.cs │ │ │ │ ├── DiscordUserRepository.cs │ │ │ │ ├── GuildConfigRepository.cs │ │ │ │ ├── MusicPlaylistRepository.cs │ │ │ │ ├── PlantedCurrencyRepository.cs │ │ │ │ ├── PollsRepository.cs │ │ │ │ ├── QuoteRepository.cs │ │ │ │ ├── ReminderRepository.cs │ │ │ │ ├── Repository.cs │ │ │ │ ├── SelfAssignedRolesRepository.cs │ │ │ │ ├── WaifuRepository.cs │ │ │ │ ├── WarningsRepository.cs │ │ │ │ └── XpRepository.cs │ │ └── UnitOfWork.cs │ ├── DbService.cs │ ├── GreetSettingsService.cs │ ├── IBotConfigProvider.cs │ ├── IBotCredentials.cs │ ├── ICurrencyService.cs │ ├── IDataCache.cs │ ├── IGoogleApiService.cs │ ├── IImageCache.cs │ ├── ILocalDataCache.cs │ ├── ILocalization.cs │ ├── INService.cs │ ├── IStatsService.cs │ ├── Impl │ │ ├── BotConfigProvider.cs │ │ ├── BotCredentials.cs │ │ ├── CurrencyService.cs │ │ ├── FontProvider.cs │ │ ├── GoogleApiService.cs │ │ ├── ImagesService.cs │ │ ├── Localization.cs │ │ ├── NadekoStrings.cs │ │ ├── RedisCache.cs │ │ ├── RedisLocalDataCache.cs │ │ ├── SoundCloudApiService.cs │ │ ├── StartingGuildsListService.cs │ │ ├── StatsService.cs │ │ ├── SyncPreconditionService.cs │ │ └── Ytdl.cs │ ├── LogSetup.cs │ ├── NadekoBot.cs │ ├── ShardsCoordinator.cs │ └── StandardConversions.cs ├── _Extensions │ ├── Extensions.cs │ ├── IEnumerableExtensions.cs │ ├── IMessageChannelExtensions.cs │ ├── IUserExtensions.cs │ ├── MusicExtensions.cs │ ├── NumberExtensions.cs │ ├── ProcessExtensions.cs │ └── StringExtensions.cs ├── _libs │ ├── 32 │ │ ├── libsodium.dll │ │ └── opus.dll │ └── 64 │ │ ├── libsodium.dll │ │ └── opus.dll ├── credentials_example.json └── nadeko_icon.ico ├── NadekoBot.iss ├── NadekoBot.sln ├── NuGet.Config ├── README.md ├── docs ├── bce-guide.md ├── cmds.json ├── cmds_new.json ├── commands-readme.md ├── contribution-guide.md ├── create-invite.md ├── custom-reactions.md ├── donate.md ├── guides │ ├── docker-guide.md │ ├── from-source.md │ ├── linux-guide.md │ ├── osx-guide.md │ └── windows-guide.md ├── index.md ├── jsons-explained.md ├── license.md ├── permissions-system.md └── placeholders.md ├── exe_builder.iss ├── license.md ├── mkdocs-requirements.txt ├── mkdocs.yml ├── rcedit-x64.exe ├── release.ps1 └── src └── NadekoBot ├── NadekoBot.csproj ├── Program.cs ├── _strings ├── ResponseStrings.ar.json ├── ResponseStrings.cs-CZ.json ├── ResponseStrings.da-DK.json ├── ResponseStrings.de-DE.json ├── ResponseStrings.en-US.json ├── ResponseStrings.es-ES.json ├── ResponseStrings.fr-FR.json ├── ResponseStrings.he-IL.json ├── ResponseStrings.hu-HU.json ├── ResponseStrings.id-ID.json ├── ResponseStrings.it-IT.json ├── ResponseStrings.ja-JP.json ├── ResponseStrings.ko-KR.json ├── ResponseStrings.nb-NO.json ├── ResponseStrings.nl-NL.json ├── ResponseStrings.pl-PL.json ├── ResponseStrings.pt-BR.json ├── ResponseStrings.ro-RO.json ├── ResponseStrings.ru-RU.json ├── ResponseStrings.sr-cyrl-rs.json ├── ResponseStrings.sv-SE.json ├── ResponseStrings.tr-TR.json ├── ResponseStrings.ts-TS.json ├── ResponseStrings.uk-UA.json ├── ResponseStrings.zh-CN.json ├── ResponseStrings.zh-TW.json └── cmd │ └── command_strings.json ├── credentials.json ├── credentials_example.json ├── data ├── fonts │ ├── NotoSans-Bold.ttf │ ├── Symbola-10.24.ttf │ └── Uni Sans.ttf ├── hangman.json ├── images.json ├── images │ └── cards │ │ ├── ace_of_clubs.jpg │ │ ├── ace_of_diamonds.jpg │ │ ├── ace_of_hearts.jpg │ │ ├── ace_of_spades.jpg │ │ ├── black_joker.jpg │ │ ├── eight_of_clubs.jpg │ │ ├── eight_of_diamonds.jpg │ │ ├── eight_of_hearts.jpg │ │ ├── eight_of_spades.jpg │ │ ├── five_of_clubs.jpg │ │ ├── five_of_diamonds.jpg │ │ ├── five_of_hearts.jpg │ │ ├── five_of_spades.jpg │ │ ├── four_of_clubs.jpg │ │ ├── four_of_diamonds.jpg │ │ ├── four_of_hearts.jpg │ │ ├── four_of_spades.jpg │ │ ├── jack_of_clubs.jpg │ │ ├── jack_of_diamonds.jpg │ │ ├── jack_of_hearts.jpg │ │ ├── jack_of_spades.jpg │ │ ├── king_of_clubs.jpg │ │ ├── king_of_diamonds.jpg │ │ ├── king_of_hearts.jpg │ │ ├── king_of_spades.jpg │ │ ├── nine_of_clubs.jpg │ │ ├── nine_of_diamonds.jpg │ │ ├── nine_of_hearts.jpg │ │ ├── nine_of_spades.jpg │ │ ├── queen_of_clubs.jpg │ │ ├── queen_of_diamonds.jpg │ │ ├── queen_of_hearts.jpg │ │ ├── queen_of_spades.jpg │ │ ├── red_joker.jpg │ │ ├── seven_of_clubs.jpg │ │ ├── seven_of_diamonds.jpg │ │ ├── seven_of_hearts.jpg │ │ ├── seven_of_spades.jpg │ │ ├── six_of_clubs.jpg │ │ ├── six_of_diamonds.jpg │ │ ├── six_of_hearts.jpg │ │ ├── six_of_spades.jpg │ │ ├── ten_of_clubs.jpg │ │ ├── ten_of_diamonds.jpg │ │ ├── ten_of_hearts.jpg │ │ ├── ten_of_spades.jpg │ │ ├── three_of_clubs.jpg │ │ ├── three_of_diamonds.jpg │ │ ├── three_of_hearts.jpg │ │ ├── three_of_spades.jpg │ │ ├── two_of_clubs.jpg │ │ ├── two_of_diamonds.jpg │ │ ├── two_of_hearts.jpg │ │ └── two_of_spades.jpg ├── images_backup.json ├── lolchamps.json ├── magicitems.json ├── pokemon │ ├── LICENSE │ ├── name-id_map.json │ ├── pokemon_abilities.json │ └── pokemon_list.json ├── trivia_questions.json ├── typing_articles3.json ├── units.json ├── wowjokes.json ├── xp_template.json ├── xp_template_backup.json └── yomama.txt ├── libopus.so ├── libsodium.dll ├── libsodium.so ├── nadeko_icon.ico └── opus.dll /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/.gitlab/issue_templates/Bug.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Feature_Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/.gitlab/issue_templates/Feature_Request.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/.gitlab/issue_templates/Question.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/Merge_Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/.gitlab/merge_request_templates/Merge_Request.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /NadekoBot.Core/Common/AsyncLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/AsyncLazy.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/Aliases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/Aliases.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/BotPerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/BotPerm.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/Description.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/LeftoverAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/LeftoverAttribute.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/NadekoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/NadekoCommand.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/NadekoModuleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/NadekoModuleAttribute.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/NadekoOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/NadekoOptions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/OwnerOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/OwnerOnlyAttribute.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/Ratelimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/Ratelimit.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/Usage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/Usage.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Attributes/UserPerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Attributes/UserPerm.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/BotConfigEditType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/BotConfigEditType.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/CREmbed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/CREmbed.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Collections/ConcurrentHashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Collections/ConcurrentHashSet.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Collections/DisposableImutableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Collections/DisposableImutableList.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Collections/IndexedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Collections/IndexedCollection.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Collections/PoopyRingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Collections/PoopyRingBuffer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/CommandData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/CommandData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/DownloadTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/DownloadTracker.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/GuildPerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/GuildPerm.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/INadekoCommandOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/INadekoCommandOptions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/ImageUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/ImageUrls.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/LbOpts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/LbOpts.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/LogPlz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/LogPlz.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/ModuleBehaviors/IEarlyBlocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/ModuleBehaviors/IEarlyBlocker.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/ModuleBehaviors/IINputTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/ModuleBehaviors/IINputTransformer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/ModuleBehaviors/ILateBlocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/ModuleBehaviors/ILateBlocker.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/ModuleBehaviors/ILateExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/ModuleBehaviors/ILateExecutor.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/ModuleBehaviors/IModuleBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/ModuleBehaviors/IModuleBehavior.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/NadekoModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/NadekoModule.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/NadekoModuleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/NadekoModuleExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/NadekoRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/NadekoRandom.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/NoPublicBotPrecondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/NoPublicBotPrecondition.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/OptionsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/OptionsParser.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/OsuMapData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/OsuMapData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/OsuUserBets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/OsuUserBets.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/PlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/PlatformHelper.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Pokemon/PokemonNameId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Pokemon/PokemonNameId.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Pokemon/SearchPokemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Pokemon/SearchPokemon.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Pokemon/SearchPokemonAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Pokemon/SearchPokemonAbility.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Replacements/ReplacementBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Replacements/ReplacementBuilder.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/Replacements/Replacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/Replacements/Replacer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/RequireObjectPropertiesContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/RequireObjectPropertiesContractResolver.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/ShardCom/ShardComMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/ShardCom/ShardComMessage.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/ShardCom/ShardComServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/ShardCom/ShardComServer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/ShmartNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/ShmartNumber.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/SocketMessageEventWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/SocketMessageEventWrapper.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/AddRemove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/AddRemove.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/BotCommandTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/BotCommandTypeReader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/GuildDateTimeTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/GuildDateTimeTypeReader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/GuildTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/GuildTypeReader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/Models/PermissionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/Models/PermissionAction.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/Models/StoopidTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/Models/StoopidTime.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/ModuleTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/ModuleTypeReader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/NadekoTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/NadekoTypeReader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/PermissionActionTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/PermissionActionTypeReader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/Rgba32TypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/Rgba32TypeReader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/ShmartNumberTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/ShmartNumberTypeReader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Common/TypeReaders/StoopidTimeTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Common/TypeReaders/StoopidTimeTypeReader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20180923191508_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20180923191508_init.Designer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20180923191508_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20180923191508_init.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20181102094215_unban-timer-reset.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20181102094215_unban-timer-reset.Designer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20181102094215_unban-timer-reset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20181102094215_unban-timer-reset.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20181210215935_remove-patreonrewards.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20181210215935_remove-patreonrewards.Designer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20181210215935_remove-patreonrewards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20181210215935_remove-patreonrewards.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20181210235022_readd-patreonrewards.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20181210235022_readd-patreonrewards.Designer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20181210235022_readd-patreonrewards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20181210235022_readd-patreonrewards.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200623195238_cr-reactions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200623195238_cr-reactions.Designer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200623195238_cr-reactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200623195238_cr-reactions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200624001725_link-filtering.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200624001725_link-filtering.Designer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200624001725_link-filtering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200624001725_link-filtering.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200624034917_addrole-punishment.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200624034917_addrole-punishment.Designer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200624034917_addrole-punishment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200624034917_addrole-punishment.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200625194534_warn-expiry.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200625194534_warn-expiry.Designer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200625194534_warn-expiry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200625194534_warn-expiry.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200712193950_voicexp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200712193950_voicexp.Designer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/20200712193950_voicexp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/20200712193950_voicexp.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Migrations/NadekoContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Migrations/NadekoContextModelSnapshot.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Administration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Administration.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/AutoAssignRoleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/AutoAssignRoleCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Common/ProtectionStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Common/ProtectionStats.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Common/UserSpamStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Common/UserSpamStats.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/DangerousCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/DangerousCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/GameChannelCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/GameChannelCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/LocalizationCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/LocalizationCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/LogCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/LogCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/ModuleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/ModuleCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/MuteCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/MuteCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/PlayingRotateCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/PlayingRotateCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/PrefixCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/PrefixCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/ProtectionCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/ProtectionCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/PruneCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/PruneCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/RoleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/RoleCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/SelfAssignedRolesCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/SelfAssignedRolesCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/SelfCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/SelfCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/ServerGreetCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/ServerGreetCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/AdministrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/AdministrationService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/AutoAssignRoleService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/DangerousCommandsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/DangerousCommandsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/GameVoiceChannelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/GameVoiceChannelService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/GuildTimezoneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/GuildTimezoneService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/LogCommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/LogCommandService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/MuteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/MuteService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/PackagesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/PackagesService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/PlayingRotateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/PlayingRotateService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/ProtectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/ProtectionService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/PruneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/PruneService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/RoleCommandsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/RoleCommandsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/SelfAssignedRolesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/SelfAssignedRolesService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/SelfService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/SelfService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/UserPunishService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/UserPunishService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/Services/VcRoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/Services/VcRoleService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/TimeZoneCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/TimeZoneCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/UserPunishCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/UserPunishCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Administration/VcRoleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Administration/VcRoleCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/CustomReactions/CustomReactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/CustomReactions/CustomReactions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/CustomReactions/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/CustomReactions/Extensions/Extensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/CustomReactions/Services/CustomReactionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/CustomReactions/Services/CustomReactionsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/AnimalRacingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/AnimalRacingCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/BlackJackCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/BlackJackCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/AnimalRace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/AnimalRace.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/AnimalRacingUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/AnimalRacingUser.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/Exceptions/AlreadyJoinedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/Exceptions/AlreadyJoinedException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/Exceptions/AlreadyStartedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/Exceptions/AlreadyStartedException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/Exceptions/AnimalRaceFullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/Exceptions/AnimalRaceFullException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/Exceptions/NotEnoughFundsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/Exceptions/NotEnoughFundsException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/RaceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/RaceOptions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Blackjack/Blackjack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Blackjack/Blackjack.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Blackjack/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Blackjack/Player.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/CurrencyRaffleGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/CurrencyRaffleGame.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Deck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Deck.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Events/EventOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Events/EventOptions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Events/GameStatusEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Events/GameStatusEvent.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Events/ICurrencyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Events/ICurrencyEvent.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Events/ReactionEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Events/ReactionEvent.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/GamblingTopLevelModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/GamblingTopLevelModule.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Payout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Payout.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/RollDuelGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/RollDuelGame.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Waifu/AffinityTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Waifu/AffinityTitle.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Waifu/ClaimTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Waifu/ClaimTitle.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Waifu/DivorceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Waifu/DivorceResult.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Waifu/WaifuClaimResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Waifu/WaifuClaimResult.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/Waifu/WaifuProfileTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/Waifu/WaifuProfileTitle.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Common/WheelOfFortune/WheelOfFortune.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Common/WheelOfFortune/WheelOfFortune.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Connect4/Connect4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Connect4/Connect4.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Connect4Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Connect4Commands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/CurrencyEventsCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/CurrencyEventsCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/CurrencyRaffleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/CurrencyRaffleCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/DiceRollCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/DiceRollCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/DrawCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/DrawCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/FlipCoinCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/FlipCoinCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/FlowerShopCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/FlowerShopCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Gambling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Gambling.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Services/AnimalRaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Services/AnimalRaceService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Services/BlackJackService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Services/BlackJackService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Services/CurrencyEventsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Services/CurrencyEventsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Services/CurrencyRaffleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Services/CurrencyRaffleService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Services/GamblingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Services/GamblingService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Services/PlantPickService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Services/PlantPickService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/Services/WaifuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/Services/WaifuService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/SlotCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/SlotCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/WaifuClaimCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/WaifuClaimCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Gambling/WheelOfFortuneCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Gambling/WheelOfFortuneCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/AcropobiaCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/AcropobiaCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/CleverBotCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/CleverBotCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Acrophobia/Acrophobia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Acrophobia/Acrophobia.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Acrophobia/AcrophobiaUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Acrophobia/AcrophobiaUser.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/ChatterBot/ChatterBotResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/ChatterBot/ChatterBotResponse.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/ChatterBot/ChatterBotSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/ChatterBot/ChatterBotSession.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/ChatterBot/CleverbotResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/ChatterBot/CleverbotResponse.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/ChatterBot/IChatterBotSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/ChatterBot/IChatterBotSession.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/ChatterBot/OfficialCleverbotSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/ChatterBot/OfficialCleverbotSession.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/GirlRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/GirlRating.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Hangman/Exceptions/TermNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Hangman/Exceptions/TermNotFoundException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Hangman/Hangman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Hangman/Hangman.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Hangman/HangmanObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Hangman/HangmanObject.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Hangman/Phase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Hangman/Phase.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Hangman/TermPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Hangman/TermPool.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Hangman/TermType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Hangman/TermType.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Nunchi/Nunchi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Nunchi/Nunchi.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/PollRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/PollRunner.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/TicTacToe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/TicTacToe.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Trivia/TriviaGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Trivia/TriviaGame.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Trivia/TriviaOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Trivia/TriviaOptions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Trivia/TriviaQuestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Trivia/TriviaQuestion.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/Trivia/TriviaQuestionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/Trivia/TriviaQuestionPool.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/TypingArticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/TypingArticle.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Common/TypingGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Common/TypingGame.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Connect4Commands.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Games.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Games.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/HangmanCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/HangmanCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/NunchiCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/NunchiCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/PlantAndPickCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/PlantAndPickCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/PollCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/PollCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Services/ChatterbotService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Services/ChatterbotService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Services/GamesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Services/GamesService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/Services/PollService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/Services/PollService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/SpeedTypingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/SpeedTypingCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/TicTacToeCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/TicTacToeCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Games/TriviaCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Games/TriviaCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Help/Common/CommandsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Help/Common/CommandsOptions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Help/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Help/Help.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Help/Services/HelpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Help/Services/HelpService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/Exceptions/NotInVoiceChannelException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/Exceptions/NotInVoiceChannelException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/Exceptions/QueueFullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/Exceptions/QueueFullException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/Exceptions/SongNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/Exceptions/SongNotFoundException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/MusicPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/MusicPlayer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/MusicQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/MusicQueue.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/PoopyBufferReborn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/PoopyBufferReborn.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/SongBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/SongBuffer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/SongInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/SongInfo.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/SongResolver/ISongResolverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/SongResolver/ISongResolverFactory.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/SongResolver/SongResolverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/SongResolver/SongResolverFactory.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/IResolverStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/IResolverStrategy.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/LocalSongResolveStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/LocalSongResolveStrategy.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/RadioResolveStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/RadioResolveStrategy.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/SoundCloudResolveStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/SoundCloudResolveStrategy.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/YoutubeResolveStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Common/SongResolver/Strategies/YoutubeResolveStrategy.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Extensions/Extensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Music.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Music.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Music/Services/MusicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Music/Services/MusicService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Nsfw/Exceptions/TagBlacklistedException.cs: -------------------------------------------------------------------------------- 1 | namespace NadekoBot.Modules.NSFW.Exceptions 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Nsfw/Nsfw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Nsfw/Nsfw.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/BlacklistCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/BlacklistCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/CmdCdsCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/CmdCdsCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Common/PermissionCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Common/PermissionCache.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Common/PermissionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Common/PermissionExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Common/PermissionsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Common/PermissionsCollection.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/FilterCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/FilterCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/GlobalPermissionCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/GlobalPermissionCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Permissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Permissions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/ResetPermissionsCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/ResetPermissionsCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Services/BlacklistService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Services/BlacklistService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Services/CmdCdService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Services/CmdCdService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Services/FilterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Services/FilterService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Services/GlobalPermissionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Services/GlobalPermissionService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Services/PermissionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Services/PermissionsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Permissions/Services/ResetPermissionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Permissions/Services/ResetPermissionsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/AnimeSearchCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/AnimeSearchCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/AnimeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/AnimeResult.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/BibleVerses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/BibleVerses.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/CryptoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/CryptoData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/DefineModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/DefineModel.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/E621Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/E621Object.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/Exceptions/StreamNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/Exceptions/StreamNotFoundException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/GatariUserResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/GatariUserResponse.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/GatariUserStatsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/GatariUserStatsResponse.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/GoogleSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/GoogleSearchResult.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/HearthstoneCardData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/HearthstoneCardData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/ImageCacherObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/ImageCacherObject.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/MagicItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/MagicItem.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/MangaResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/MangaResult.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/MtgData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/MtgData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/NovelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/NovelData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/OmdbMovie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/OmdbMovie.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/OsuUserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/OsuUserData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/PathOfExileModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/PathOfExileModels.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/SearchImageCacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/SearchImageCacher.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/PicartoChannelResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/PicartoChannelResponse.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/StreamData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/StreamData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/StreamDataKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/StreamDataKey.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/TwitchResponseHelix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/TwitchResponseHelix.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/TwitchResponseV5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/TwitchResponseV5.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/TwitchUsersResponseV5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Models/TwitchUsersResponseV5.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/NotifChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/NotifChecker.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Providers/PicartoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Providers/PicartoProvider.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Providers/Provider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Providers/Provider.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Providers/TwitchHelixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Providers/TwitchHelixProvider.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Providers/TwitchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/StreamNotifications/Providers/TwitchProvider.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/TimeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/TimeData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/TimeModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/TimeModels.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/UrbanDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/UrbanDef.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/WeatherModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/WeatherModels.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/WikipediaApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/WikipediaApiModel.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/WoWJoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/WoWJoke.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Common/YtVideoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Common/YtVideoData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/CryptoCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/CryptoCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/FeedCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/FeedCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/JokeCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/JokeCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/LoLCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/LoLCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/MemegenCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/MemegenCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/OsuCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/OsuCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/PathOfExileCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/PathOfExileCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/PlaceCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/PlaceCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/PokemonSearchCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/PokemonSearchCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Searches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Searches.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Services/AnimeSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Services/AnimeSearchService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Services/CryptoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Services/CryptoService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Services/FeedsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Services/FeedsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Services/SearchesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Services/SearchesService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Services/StreamNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Services/StreamNotificationService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/Services/YtTrackService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/Services/YtTrackService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/StreamNotificationCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/StreamNotificationCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/TranslatorCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/TranslatorCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/XkcdCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/XkcdCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Searches/YtUploadCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Searches/YtUploadCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/BotConfigCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/BotConfigCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/CalcCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/CalcCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/CommandMapCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/CommandMapCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Common/ConvertUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Common/ConvertUnit.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Common/Exceptions/StreamRoleNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Common/Exceptions/StreamRoleNotFoundException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Common/Exceptions/StreamRolePermissionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Common/Exceptions/StreamRolePermissionException.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Common/Patreon/PatreonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Common/Patreon/PatreonData.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Common/Patreon/PatreonPledge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Common/Patreon/PatreonPledge.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Common/Patreon/PatreonUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Common/Patreon/PatreonUser.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Common/RepeatRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Common/RepeatRunner.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Common/StreamRoleListType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Common/StreamRoleListType.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Extensions/StreamRoleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Extensions/StreamRoleExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/InfoCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/InfoCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/InviteCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/InviteCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/PatreonCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/PatreonCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/QuoteCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/QuoteCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/RemindCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/RemindCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/RepeatCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/RepeatCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Services/CommandMapService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Services/CommandMapService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Services/ConverterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Services/ConverterService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Services/InviteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Services/InviteService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Services/MessageRepeaterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Services/MessageRepeaterService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Services/PatreonRewardsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Services/PatreonRewardsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Services/RemindService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Services/RemindService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Services/StreamRoleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Services/StreamRoleService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Services/VerboseErrorsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Services/VerboseErrorsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/StreamRoleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/StreamRoleCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/UnitConversionCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/UnitConversionCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/Utility.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Utility/VerboseErrorCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Utility/VerboseErrorCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/Club.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/Club.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/Common/FullUserStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/Common/FullUserStats.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/Common/LevelStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/Common/LevelStats.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/Common/XpTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/Common/XpTemplate.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/Extensions/Extensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/ResetCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/ResetCommands.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/Services/ClubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/Services/ClubService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/Services/UserCacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/Services/UserCacheItem.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/Services/XpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/Services/XpService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Modules/Xp/Xp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Modules/Xp/Xp.cs -------------------------------------------------------------------------------- /NadekoBot.Core/NadekoBot.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/NadekoBot.Core.csproj -------------------------------------------------------------------------------- /NadekoBot.Core/Services/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/CommandHandler.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Common/ImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Common/ImageLoader.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Common/RedisImageArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Common/RedisImageArray.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/IUnitOfWork.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/AntiProtection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/AntiProtection.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/BotConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/BotConfig.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/ClubInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/ClubInfo.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/CommandAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/CommandAlias.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/CommandCooldown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/CommandCooldown.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/CurrencyTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/CurrencyTransaction.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/CustomReaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/CustomReaction.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/DbEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/DbEntity.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/DelMsgOnCmdChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/DelMsgOnCmdChannel.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/DiscordUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/DiscordUser.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/Event.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/FeedSub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/FeedSub.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/FilterChannelId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/FilterChannelId.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/FilterLinksChannelId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/FilterLinksChannelId.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/FilteredWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/FilteredWord.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/FollowedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/FollowedStream.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/GCChannelId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/GCChannelId.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/GroupName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/GroupName.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/GuildConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/GuildConfig.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/IgnoredLogChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/IgnoredLogChannel.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/IgnoredVoicePresenceChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/IgnoredVoicePresenceChannel.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/LogSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/LogSetting.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/MusicPlaylist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/MusicPlaylist.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/MusicSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/MusicSettings.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/MutedUserId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/MutedUserId.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/NsfwBlacklitedTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/NsfwBlacklitedTag.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/Permission.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/PlantedCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/PlantedCurrency.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/PlaylistSong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/PlaylistSong.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/Poll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/Poll.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/PollVote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/PollVote.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/Quote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/Quote.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/ReactionRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/ReactionRole.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/Reminder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/Reminder.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/Repeater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/Repeater.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/RewardedUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/RewardedUser.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/SelfAssignableRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/SelfAssignableRole.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/ShopEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/ShopEntry.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/SlowmodeIgnoredRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/SlowmodeIgnoredRole.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/SlowmodeIgnoredUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/SlowmodeIgnoredUser.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/Stake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/Stake.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/StreamRoleSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/StreamRoleSettings.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/UnbanTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/UnbanTimer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/UnmuteTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/UnmuteTimer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/UnroleTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/UnroleTimer.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/UserXpStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/UserXpStats.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/VcRoleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/VcRoleInfo.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/Waifu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/Waifu.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/WaifuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/WaifuItem.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/WaifuUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/WaifuUpdate.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/WarnExpireAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/WarnExpireAction.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/Warning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/Warning.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/WarningPunishment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/WarningPunishment.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/XpSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/XpSettings.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Models/YtFollowedChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Models/YtFollowedChannel.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/NadekoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/NadekoContext.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IBotConfigRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IBotConfigRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IClubRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IClubRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/ICurrencyTransactionsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/ICurrencyTransactionsRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/ICustomReactionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/ICustomReactionRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IDiscordUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IDiscordUserRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IGuildConfigRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IGuildConfigRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IMusicPlaylistRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IMusicPlaylistRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IPlantedCurrencyRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IPlantedCurrencyRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IPollsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IPollsRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IQuoteRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IQuoteRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IReminderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IReminderRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/ISelfAssignedRolesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/ISelfAssignedRolesRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IWaifuRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IWaifuRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IWarningsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IWarningsRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/IXpRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/IXpRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/BotConfigRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/BotConfigRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/ClubRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/ClubRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/CurrencyTransactionsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/CurrencyTransactionsRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/CustomReactionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/CustomReactionRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/DiscordUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/DiscordUserRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/GuildConfigRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/GuildConfigRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/MusicPlaylistRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/MusicPlaylistRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/PlantedCurrencyRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/PlantedCurrencyRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/PollsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/PollsRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/QuoteRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/QuoteRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/ReminderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/ReminderRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/Repository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/SelfAssignedRolesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/SelfAssignedRolesRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/WaifuRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/WaifuRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/WarningsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/WarningsRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/Repositories/Impl/XpRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/Repositories/Impl/XpRepository.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Database/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Database/UnitOfWork.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/DbService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/DbService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/GreetSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/GreetSettingsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/IBotConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/IBotConfigProvider.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/IBotCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/IBotCredentials.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/ICurrencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/ICurrencyService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/IDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/IDataCache.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/IGoogleApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/IGoogleApiService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/IImageCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/IImageCache.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/ILocalDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/ILocalDataCache.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/ILocalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/ILocalization.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/INService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/INService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/IStatsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/IStatsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/BotConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/BotConfigProvider.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/BotCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/BotCredentials.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/CurrencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/CurrencyService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/FontProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/FontProvider.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/GoogleApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/GoogleApiService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/ImagesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/ImagesService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/Localization.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/NadekoStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/NadekoStrings.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/RedisCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/RedisCache.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/RedisLocalDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/RedisLocalDataCache.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/SoundCloudApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/SoundCloudApiService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/StartingGuildsListService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/StartingGuildsListService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/StatsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/StatsService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/SyncPreconditionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/SyncPreconditionService.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/Impl/Ytdl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/Impl/Ytdl.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/LogSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/LogSetup.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/NadekoBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/NadekoBot.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/ShardsCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/ShardsCoordinator.cs -------------------------------------------------------------------------------- /NadekoBot.Core/Services/StandardConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/Services/StandardConversions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/_Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_Extensions/Extensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/_Extensions/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_Extensions/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/_Extensions/IMessageChannelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_Extensions/IMessageChannelExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/_Extensions/IUserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_Extensions/IUserExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/_Extensions/MusicExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_Extensions/MusicExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/_Extensions/NumberExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_Extensions/NumberExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/_Extensions/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_Extensions/ProcessExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/_Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /NadekoBot.Core/_libs/32/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_libs/32/libsodium.dll -------------------------------------------------------------------------------- /NadekoBot.Core/_libs/32/opus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_libs/32/opus.dll -------------------------------------------------------------------------------- /NadekoBot.Core/_libs/64/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_libs/64/libsodium.dll -------------------------------------------------------------------------------- /NadekoBot.Core/_libs/64/opus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/_libs/64/opus.dll -------------------------------------------------------------------------------- /NadekoBot.Core/credentials_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/credentials_example.json -------------------------------------------------------------------------------- /NadekoBot.Core/nadeko_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.Core/nadeko_icon.ico -------------------------------------------------------------------------------- /NadekoBot.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.iss -------------------------------------------------------------------------------- /NadekoBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NadekoBot.sln -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/README.md -------------------------------------------------------------------------------- /docs/bce-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/bce-guide.md -------------------------------------------------------------------------------- /docs/cmds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/cmds.json -------------------------------------------------------------------------------- /docs/cmds_new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/cmds_new.json -------------------------------------------------------------------------------- /docs/commands-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/commands-readme.md -------------------------------------------------------------------------------- /docs/contribution-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/contribution-guide.md -------------------------------------------------------------------------------- /docs/create-invite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/create-invite.md -------------------------------------------------------------------------------- /docs/custom-reactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/custom-reactions.md -------------------------------------------------------------------------------- /docs/donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/donate.md -------------------------------------------------------------------------------- /docs/guides/docker-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/guides/docker-guide.md -------------------------------------------------------------------------------- /docs/guides/from-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/guides/from-source.md -------------------------------------------------------------------------------- /docs/guides/linux-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/guides/linux-guide.md -------------------------------------------------------------------------------- /docs/guides/osx-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/guides/osx-guide.md -------------------------------------------------------------------------------- /docs/guides/windows-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/guides/windows-guide.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/jsons-explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/jsons-explained.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/permissions-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/permissions-system.md -------------------------------------------------------------------------------- /docs/placeholders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/docs/placeholders.md -------------------------------------------------------------------------------- /exe_builder.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/exe_builder.iss -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/license.md -------------------------------------------------------------------------------- /mkdocs-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/mkdocs-requirements.txt -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /rcedit-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/rcedit-x64.exe -------------------------------------------------------------------------------- /release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/release.ps1 -------------------------------------------------------------------------------- /src/NadekoBot/NadekoBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/NadekoBot.csproj -------------------------------------------------------------------------------- /src/NadekoBot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/Program.cs -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.ar.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.cs-CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.cs-CZ.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.da-DK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.da-DK.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.de-DE.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.en-US.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.es-ES.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.fr-FR.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.he-IL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.he-IL.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.hu-HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.hu-HU.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.id-ID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.id-ID.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.it-IT.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.ja-JP.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.ko-KR.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.nb-NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.nb-NO.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.nl-NL.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.pl-PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.pl-PL.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.pt-BR.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.ro-RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.ro-RO.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.ru-RU.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.sr-cyrl-rs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.sr-cyrl-rs.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.sv-SE.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.tr-TR.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.ts-TS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.ts-TS.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.uk-UA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.uk-UA.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.zh-CN.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/ResponseStrings.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/ResponseStrings.zh-TW.json -------------------------------------------------------------------------------- /src/NadekoBot/_strings/cmd/command_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/_strings/cmd/command_strings.json -------------------------------------------------------------------------------- /src/NadekoBot/credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/credentials.json -------------------------------------------------------------------------------- /src/NadekoBot/credentials_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/credentials_example.json -------------------------------------------------------------------------------- /src/NadekoBot/data/fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /src/NadekoBot/data/fonts/Symbola-10.24.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/fonts/Symbola-10.24.ttf -------------------------------------------------------------------------------- /src/NadekoBot/data/fonts/Uni Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/fonts/Uni Sans.ttf -------------------------------------------------------------------------------- /src/NadekoBot/data/hangman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/hangman.json -------------------------------------------------------------------------------- /src/NadekoBot/data/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images.json -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/ace_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/ace_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/ace_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/ace_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/ace_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/ace_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/ace_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/ace_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/black_joker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/black_joker.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/eight_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/eight_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/eight_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/eight_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/eight_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/eight_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/eight_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/eight_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/five_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/five_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/five_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/five_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/five_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/five_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/five_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/five_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/four_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/four_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/four_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/four_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/four_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/four_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/four_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/four_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/jack_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/jack_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/jack_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/jack_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/jack_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/jack_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/jack_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/jack_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/king_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/king_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/king_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/king_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/king_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/king_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/king_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/king_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/nine_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/nine_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/nine_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/nine_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/nine_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/nine_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/nine_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/nine_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/queen_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/queen_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/queen_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/queen_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/queen_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/queen_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/queen_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/queen_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/red_joker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/red_joker.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/seven_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/seven_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/seven_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/seven_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/seven_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/seven_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/seven_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/seven_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/six_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/six_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/six_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/six_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/six_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/six_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/six_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/six_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/ten_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/ten_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/ten_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/ten_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/ten_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/ten_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/ten_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/ten_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/three_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/three_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/three_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/three_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/three_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/three_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/three_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/three_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/two_of_clubs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/two_of_clubs.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/two_of_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/two_of_diamonds.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/two_of_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/two_of_hearts.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images/cards/two_of_spades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images/cards/two_of_spades.jpg -------------------------------------------------------------------------------- /src/NadekoBot/data/images_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/images_backup.json -------------------------------------------------------------------------------- /src/NadekoBot/data/lolchamps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/lolchamps.json -------------------------------------------------------------------------------- /src/NadekoBot/data/magicitems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/magicitems.json -------------------------------------------------------------------------------- /src/NadekoBot/data/pokemon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/pokemon/LICENSE -------------------------------------------------------------------------------- /src/NadekoBot/data/pokemon/name-id_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/pokemon/name-id_map.json -------------------------------------------------------------------------------- /src/NadekoBot/data/pokemon/pokemon_abilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/pokemon/pokemon_abilities.json -------------------------------------------------------------------------------- /src/NadekoBot/data/pokemon/pokemon_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/pokemon/pokemon_list.json -------------------------------------------------------------------------------- /src/NadekoBot/data/trivia_questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/trivia_questions.json -------------------------------------------------------------------------------- /src/NadekoBot/data/typing_articles3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/typing_articles3.json -------------------------------------------------------------------------------- /src/NadekoBot/data/units.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/units.json -------------------------------------------------------------------------------- /src/NadekoBot/data/wowjokes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/wowjokes.json -------------------------------------------------------------------------------- /src/NadekoBot/data/xp_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/xp_template.json -------------------------------------------------------------------------------- /src/NadekoBot/data/xp_template_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/xp_template_backup.json -------------------------------------------------------------------------------- /src/NadekoBot/data/yomama.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/data/yomama.txt -------------------------------------------------------------------------------- /src/NadekoBot/libopus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/libopus.so -------------------------------------------------------------------------------- /src/NadekoBot/libsodium.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/libsodium.dll -------------------------------------------------------------------------------- /src/NadekoBot/libsodium.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/libsodium.so -------------------------------------------------------------------------------- /src/NadekoBot/nadeko_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/nadeko_icon.ico -------------------------------------------------------------------------------- /src/NadekoBot/opus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarletKuro/NadekoBot/HEAD/src/NadekoBot/opus.dll --------------------------------------------------------------------------------