From 05d93e2ebec5b478de54f1870dcbadb35da53387 Mon Sep 17 00:00:00 2001 From: appelemac Date: Wed, 27 Apr 2016 12:37:37 +0200 Subject: [PATCH] Added default reactions "e" leaves me unsatisfied in this format though :/ --- NadekoBot/_Models/JSONModels/Configuration.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/NadekoBot/_Models/JSONModels/Configuration.cs b/NadekoBot/_Models/JSONModels/Configuration.cs index c14d915e..8920a431 100644 --- a/NadekoBot/_Models/JSONModels/Configuration.cs +++ b/NadekoBot/_Models/JSONModels/Configuration.cs @@ -17,7 +17,14 @@ namespace NadekoBot.Classes.JSONModels [JsonIgnore] public List PokemonTypes { get; set; } = new List(); - public Dictionary> CustomReactions { get; set; } = new Dictionary>(); + public Dictionary> CustomReactions { get; set; } = new Dictionary>() + { + {@"\o\", new List() {"/o/" } }, + {"/o/", new List() {@"\o\" } }, + {"moveto", new List() { @"(๐Ÿ‘‰ อกยฐ อœส– อกยฐ)๐Ÿ‘‰ %target%" } }, + {"comeatmebro", new List() { "%target% (เธ‡โ€™ฬ€-โ€˜ฬ)เธ‡" } }, + {"e", new List() { "%user% did it ๐Ÿ˜’ ๐Ÿ”ซ", "%target% did it ๐Ÿ˜’ ๐Ÿ”ซ" } } + }; public List RotatingStatuses { get; set; } = new List(); public CommandPrefixesModel CommandPrefixes { get; set; } = new CommandPrefixesModel();