add: Added .fish command

This commit is contained in:
Kwoth
2025-01-14 02:12:59 +00:00
parent e78a7d0efa
commit b0d8137a7a
23 changed files with 8447 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
namespace NadekoBot.Modules.Games;
public sealed class FishChance
{
public int Fish { get; set; } = 75;
public int Trash { get; set; } = 20;
public int Nothing { get; set; } = 0;
}