mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
24 lines
293 B
C#
24 lines
293 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "IR")]
|
|
[Serializable]
|
|
public enum ItemRarity
|
|
{
|
|
[XmlEnum("0")]
|
|
NonBattleCommon,
|
|
|
|
[XmlEnum("1")]
|
|
Common,
|
|
|
|
[XmlEnum("2")]
|
|
Rare,
|
|
|
|
[XmlEnum("3")]
|
|
Epic,
|
|
|
|
[XmlEnum("4")]
|
|
Legendary
|
|
}
|