28 lines
394 B
C#
28 lines
394 B
C#
|
|
|
|
public class EquipmentData : Excel
|
|
{
|
|
public int index;
|
|
public string name;
|
|
public ePart part;
|
|
public int stats1;
|
|
public int stats2;
|
|
public int stats3;
|
|
public int stats4;
|
|
|
|
|
|
public override void toJson()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
public enum ePart
|
|
{
|
|
Weapon = 0, //무기
|
|
Armor, //방어구
|
|
Shoes, //신발
|
|
Earrings, //귀걸이
|
|
Bracelet, //팔찌
|
|
Ring //반지
|
|
} |