Initial v6 version #32

Manually merged
toastie_t0ast merged 54 commits from v6-dev into v6 2025-02-28 23:18:39 +00:00
Showing only changes of commit b45d4f9e44 - Show all commits

View file

@ -0,0 +1,29 @@
#nullable disable
namespace EllieBot.Modules.Games.Items.db;
public class Item
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public string Emoji { get; set; } = string.Empty;
public string MediaUrl { get; set; } = string.Empty;
public ItemQuality Quality { get; set; }
public bool IsUsable { get; set; }
public string ItemType { get; set; }
public string ItemSubType { get; set; }
}
public static class ItemTypes
{
public const string FISHING_POLE = "FISHING_POLE";
}
public enum ItemQuality
{
Common,
Uncommon,
Rare,
Epic,
Legendary
}