forked from marcosvf132/TibiaAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImbuementData.cs
More file actions
30 lines (23 loc) · 787 Bytes
/
ImbuementData.cs
File metadata and controls
30 lines (23 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System.Collections.Generic;
namespace OXGaming.TibiaAPI.Imbuing
{
public class ImbuementData
{
public List<AstralSource> AstralSources { get; } = new List<AstralSource>();
public string Category { get; set; }
public string Description { get; set; }
public string Name { get; set; }
public uint DurationInSeconds { get; set; }
public uint GoldCost { get; set; }
public uint Id { get; set; }
public uint ProtectionGoldCost { get; set; }
public ushort IconId { get; set; }
public byte SuccessRatePercent { get; set; }
public bool PremiumOnly { get; set; }
public ImbuementData(uint id, string name)
{
Id = id;
Name = name;
}
}
}