28 lines
391 B
C#
28 lines
391 B
C#
|
|
|
|
public class EquipmentData : Excel
|
|
{
|
|
public long 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, //갑옷
|
|
Gloves, //장갑
|
|
Headpiece, //투구
|
|
Shield, //방패
|
|
Ring //반지
|
|
} |