elliebot/src/EllieBot/Modules/Games/Fish/FishResult.cs
Toastie 2935ae3f38
Added fishing skill stat
fixed fishing spot calculation
patrons no longer have captchas on the public bot
Upped version to 5.3.6
2025-01-21 16:33:39 +13:00

12 lines
No EOL
317 B
C#

namespace EllieBot.Modules.Games;
public sealed class FishResult
{
public required FishData Fish { get; init; }
public int Stars { get; init; }
public bool IsSkillUp { get; set; }
public int Skill { get; set; }
public int MaxSkill { get; set; }
}
public readonly record struct AlreadyFishing;