server-master/srcs/_plugins/WingsEmu.Plugins.BasicImplementation/Event/Items/GamblingRarityInfo.cs
2026-02-10 18:21:30 +01:00

23 lines
No EOL
560 B
C#

using System.Collections.Generic;
namespace WingsEmu.Plugins.BasicImplementations.Event.Items;
public class GamblingRarityInfo
{
public List<RaritySuccess> GamblingSuccess { get; set; }
public List<RarityChance> GamblingRarities { get; set; }
public short GoldPrice { get; set; }
public byte CellaUsed { get; set; }
}
public class RarityChance
{
public sbyte Rarity { get; set; }
public int Chance { get; set; }
}
public class RaritySuccess
{
public short FromRarity { get; set; }
public int SuccessChance { get; set; }
}