Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 48 additions & 15 deletions HowwowKnyight - 1.5/GlobalSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,55 @@ namespace HowwowKnyight.GlobalSettings
{
public class GlobalSettingsClass
{
public List<string> OwO = new List<string>()
{
" uwu",
" owo",
" UwU",
" OwO",
" >w<",
" ^w^",
" QwQ",
" UwU",
" @w@",
" >.<",
" ÕwÕ",
"~", "~", "~", "~", "~"
public Dictionary<string, string> UWUSimpleDict { get; set; } =
new()
{
{ @"R", @"W" },
{ @"L", @"W" },
{ @"l", @"w" },
{ @"OU", @"UW" },
{ @"Ou", @"Uw" },
{ @"ou", @"uw" },
{ @"TH", @"D" },
{ @"Th", @"D" },
{ @"th", @"d" }
};

};
public Dictionary<string, string> UWURegexDict { get; set; } =
new()
{
{ @"N([AEIOU])", @"NY$1" },
{ @"N([aeiou])", @"Ny$1" },
{ @"n([aeiou])", @"ny$1" },
{ @"(?<!<b)r(?!>)", @"w" },
{ @"T[Hh]\b", @"F" },
{ @"th\b", @"f" },
{ @"T[Hh]([UI][^sS])", @"F$1" },
{ @"th([ui][^sS])", @"f$1" },
{ @"OVE\b", @"UV" },
{ @"Ove\b", @"Uv" },
{ @"ove\b", @"uv" }
};

public List<string> UWUFaces { get; set; } =
new()
{
">.>", "<.<", "UwU",
"OwO", "OWO", "UWU",
"uwu", "owo", ">w<",
"^w^", "QwQ", "@w@",
">.<", "ÕwÕ",
};

public List<char> Seperators { get; set; } =
new()
{
'-',
'.',
' '
};

public HowwowKnyight.OWOFlags Flags { get; set; } = HowwowKnyight.OWOFlags.All;
}
}
//This does not work fully yet, needs to be fixed. I have no idea how sadly
Expand Down
Loading