Added default reactions

"e" leaves me unsatisfied in this format though :/
This commit is contained in:
appelemac 2016-04-27 12:37:37 +02:00
parent a89459619d
commit 05d93e2ebe

View File

@ -17,7 +17,14 @@ namespace NadekoBot.Classes.JSONModels
[JsonIgnore]
public List<PokemonType> PokemonTypes { get; set; } = new List<PokemonType>();
public Dictionary<string, List<string>> CustomReactions { get; set; } = new Dictionary<string, List<string>>();
public Dictionary<string, List<string>> CustomReactions { get; set; } = new Dictionary<string, List<string>>()
{
{@"\o\", new List<string>() {"/o/" } },
{"/o/", new List<string>() {@"\o\" } },
{"moveto", new List<string>() { @"(👉 ͡° ͜ʖ ͡°)👉 %target%" } },
{"comeatmebro", new List<string>() { "%target% (ง’̀-‘́)ง" } },
{"e", new List<string>() { "%user% did it 😒 🔫", "%target% did it 😒 🔫" } }
};
public List<string> RotatingStatuses { get; set; } = new List<string>();
public CommandPrefixesModel CommandPrefixes { get; set; } = new CommandPrefixesModel();