forked from Elfocrash/L2dotNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHenna.cs
More file actions
32 lines (29 loc) · 948 Bytes
/
Copy pathHenna.cs
File metadata and controls
32 lines (29 loc) · 948 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
31
32
using L2dotNET.Templates;
namespace L2dotNET.Models.Items
{
public sealed class Henna
{
public int SymbolId { get; set; }
public int Dye { get; set; }
public int Price { get; set; }
public int StatInt { get; set; }
public int StatStr { get; set; }
public int StatCon { get; set; }
public int StatMen { get; set; }
public int StatDex { get; set; }
public int StatWit { get; set; }
public Henna(StatsSet set)
{
SymbolId = set.GetInt("symbol_id");
Dye = set.GetInt("dye");
Price = set.GetInt("price");
StatInt = set.GetInt("INT");
StatStr = set.GetInt("STR");
StatCon = set.GetInt("CON");
StatMen = set.GetInt("MEN");
StatDex = set.GetInt("DEX");
StatWit = set.GetInt("WIT");
}
public static int AmountRequired => 10;
}
}