Restructured folders and project names, ci should be fixed

This commit is contained in:
Kwoth
2021-06-17 23:40:48 +02:00
parent 7aca29ae8a
commit 91ecf9ca41
788 changed files with 204 additions and 146 deletions

View File

@@ -0,0 +1,16 @@
namespace NadekoBot.Core.Modules.Gambling.Common.Waifu
{
public enum AffinityTitle
{
Pure,
Faithful,
Playful,
Cheater,
Tainted,
Corrupted,
Lewd,
Sloot,
Depraved,
Harlot
}
}

View File

@@ -0,0 +1,18 @@
namespace NadekoBot.Core.Modules.Gambling.Common.Waifu
{
public enum ClaimTitle
{
Lonely,
Devoted,
Rookie,
Schemer,
Dilettante,
Intermediate,
Seducer,
Expert,
Veteran,
Incubis,
Harem_King,
Harem_God,
}
}

View File

@@ -0,0 +1,10 @@
namespace NadekoBot.Core.Modules.Gambling.Common.Waifu
{
public enum DivorceResult
{
Success,
SucessWithPenalty,
NotYourWife,
Cooldown
}
}

View File

@@ -0,0 +1,9 @@
namespace NadekoBot.Core.Modules.Gambling.Common.Waifu
{
public enum WaifuClaimResult
{
Success,
NotEnoughFunds,
InsufficientAmount
}
}

View File

@@ -0,0 +1,14 @@
namespace NadekoBot.Core.Modules.Gambling.Common.Waifu
{
public struct WaifuProfileTitle
{
public int Count { get; }
public string Title { get; }
public WaifuProfileTitle(int count, string title)
{
Count = count;
Title = title;
}
}
}