2016-06-08 22:29:04 +01:00
|
|
|
|
namespace FFXIVClassic_Map_Server.Actors.Chara
|
2015-12-04 02:00:05 -05:00
|
|
|
|
{
|
|
|
|
|
class ParameterSave
|
|
|
|
|
{
|
2016-01-16 11:26:35 -05:00
|
|
|
|
public short[] hp = new short[8];
|
|
|
|
|
public short[] hpMax = new short[8];
|
2016-01-10 13:36:36 -05:00
|
|
|
|
public short mp;
|
|
|
|
|
public short mpMax;
|
2015-12-04 02:00:05 -05:00
|
|
|
|
|
2016-01-10 13:36:36 -05:00
|
|
|
|
public byte[] state_mainSkill = new byte[4];
|
2016-03-19 19:21:16 -04:00
|
|
|
|
public short state_mainSkillLevel;
|
2015-12-04 02:00:05 -05:00
|
|
|
|
|
2016-01-16 11:26:35 -05:00
|
|
|
|
public byte[] state_boostPointForSkill = new byte[4];
|
|
|
|
|
|
2016-01-09 23:22:10 -05:00
|
|
|
|
public uint[] commandSlot_recastTime = new uint[40];
|
2016-01-16 11:26:35 -05:00
|
|
|
|
public bool[] commandSlot_compatibility = new bool[40];
|
|
|
|
|
|
|
|
|
|
public ushort[] giftCommandSlot_commandId = new ushort[10];
|
|
|
|
|
|
|
|
|
|
public ushort[] constanceCommandSlot_commandId = new ushort[10];
|
|
|
|
|
|
|
|
|
|
public byte abilityCostPoint_used;
|
|
|
|
|
public byte abilityCostPoint_max;
|
|
|
|
|
|
|
|
|
|
public byte giftCostPoint_used;
|
|
|
|
|
public byte giftCostPoint_max;
|
2015-12-04 02:00:05 -05:00
|
|
|
|
|
2016-01-16 11:26:35 -05:00
|
|
|
|
public byte constanceCostPoint_used;
|
|
|
|
|
public byte constanceCostPoint_max;
|
2015-12-04 02:00:05 -05:00
|
|
|
|
}
|
|
|
|
|
}
|