mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
Restructured folders and project names, ci should be fixed
This commit is contained in:
16
src/NadekoBot/Modules/Gambling/Common/Waifu/AffinityTitle.cs
Normal file
16
src/NadekoBot/Modules/Gambling/Common/Waifu/AffinityTitle.cs
Normal 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
|
||||
}
|
||||
}
|
18
src/NadekoBot/Modules/Gambling/Common/Waifu/ClaimTitle.cs
Normal file
18
src/NadekoBot/Modules/Gambling/Common/Waifu/ClaimTitle.cs
Normal 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,
|
||||
}
|
||||
}
|
10
src/NadekoBot/Modules/Gambling/Common/Waifu/DivorceResult.cs
Normal file
10
src/NadekoBot/Modules/Gambling/Common/Waifu/DivorceResult.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace NadekoBot.Core.Modules.Gambling.Common.Waifu
|
||||
{
|
||||
public enum DivorceResult
|
||||
{
|
||||
Success,
|
||||
SucessWithPenalty,
|
||||
NotYourWife,
|
||||
Cooldown
|
||||
}
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
namespace NadekoBot.Core.Modules.Gambling.Common.Waifu
|
||||
{
|
||||
public enum WaifuClaimResult
|
||||
{
|
||||
Success,
|
||||
NotEnoughFunds,
|
||||
InsufficientAmount
|
||||
}
|
||||
}
|
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user