123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- namespace ET.Server
- {
-
-
-
- public class Struct
- {
-
-
-
- public class IntIntData
- {
- public int value1 { get; set; }
- public int value2 { get; set; }
- public IntIntData(int value1, int value2)
- {
- this.value1 = value1;
- this.value2 = value2;
- }
- }
-
-
-
- public class SkillInfo
- {
-
- public int id { get; set; }
-
- public int level { get; set; }
-
- public int[] talentLevel = new int[3];
-
- public int type { get; set; }
-
- public long skillTime { get; set; }
-
- public int cdTime { get; set; }
- public int flag { get; set; }
- }
-
-
-
- public class PlayerSkillBaseData
- {
-
- public int id { get; set; }
-
- public int level { get; set; }
-
- public bool unlock { get; set; }
-
- public long skillTime { get; set; }
- public PlayerSkillBaseData(int skillId, int level, bool unlock, long skillTime)
- {
- this.id = skillId;
- this.level = level;
- this.unlock = unlock;
- this.skillTime = skillTime;
- }
-
- public bool isUnlock()
- {
- return this.unlock;
- }
- }
-
-
-
- public class AreaData
- {
- public MapConfig prop { get; set; }
- public int areaId { get; set; }
- public long instanceId { get; set; }
- public float targetX { get; set; }
- public float targetY { get; set; }
- public int logicServerId { get; set; }
- public ENTER_TYPE enterType = ENTER_TYPE.NONE;
- public AreaData(int areaId)
- {
- this.prop = MapConfigCategory.Instance.Get(areaId);
- this.areaId = areaId;
- }
- public AreaData(MapConfig prop)
- {
- this.areaId = prop.Id;
- this.prop = prop;
- }
- public AreaData(int areaId, long instanceId)
- {
- this.prop = MapConfigCategory.Instance.Get(areaId);
- this.areaId = areaId;
- this.instanceId = instanceId;
- }
- public AreaData(int areaId, float targetX, float targetY)
- {
- this.prop = MapConfigCategory.Instance.Get(areaId);
- this.areaId = areaId;
- this.targetX = targetX;
- this.targetY = targetY;
- }
- public AreaData(int areaId, float targetX, float targetY, ENTER_TYPE enterType)
- {
- this.prop = MapConfigCategory.Instance.Get(areaId);
- this.areaId = areaId;
- this.targetX = targetX;
- this.targetY = targetY;
- this.enterType = enterType;
- }
- public AreaData(int areaId, long instanceId, ENTER_TYPE enterType)
- {
- this.prop = MapConfigCategory.Instance.Get(areaId);
- this.areaId = areaId;
- this.instanceId = instanceId;
- this.enterType = enterType;
- }
- }
-
-
-
- public class MonsterUnit
- {
-
- public string name { get; set; }
-
- public int id { get; set; }
-
- public int force { get; set; }
-
- public string flag { get; set; }
- public bool autoGuard { get; set; }
-
- public bool unique = false;
-
- public int x { get; set; }
-
- public int y { get; set; }
-
- public int shareType { get; set; }
-
- public int level { get; set; }
-
- public float birthDirection { get; set; }
-
- public int gsFlag { get; set; }
-
- public int hp { get; set; }
- public int maxHP { get; set; }
-
- public string attackPlayer { get; set; }
-
- public int masterID { get; set; }
- public MonsterUnit()
- {
- }
- public MonsterUnit(int monsterID, int force, bool unique, int x, int y)
- {
- this.id = monsterID;
- this.force = force;
- this.unique = unique;
- this.x = x;
- this.y = y;
- }
- public MonsterUnit(int monsterID, string refrushEvent, bool unique, int force)
- {
- this.id = monsterID;
- this.force = force;
- this.unique = unique;
- this.flag = refrushEvent;
- }
- public MonsterUnit(int monsterID, string refrushEvent, bool unique, int force, float birthDirection)
- {
- this.id = monsterID;
- this.force = force;
- this.unique = unique;
- this.flag = refrushEvent;
- this.birthDirection = birthDirection;
- }
- }
-
-
-
- public class BattleReports
- {
- public uint ID { get; set; }
- public string PlayerUUID { get; set; }
-
- public int TemplateId { get; set; }
-
- public string Name { get; set; }
-
- public int Force { get; set; }
-
- public int TotalDamage { get; set; }
-
- public int TotalHealing { get; set; }
- public BattleReports(uint id, string PlayerUUID, int templateId, string name, int force, int totalDamage)
- {
- this.ID = id;
- this.PlayerUUID = PlayerUUID;
- this.TemplateId = templateId;
- this.Name = name;
- this.Force = force;
- this.TotalDamage = totalDamage;
- }
- }
-
-
-
- public class UnitPlayerReliveData
- {
-
- public Map Map { get; set; }
-
- public int ID { get; set; }
-
- public long ReliveTime { get; set; }
-
- public int x { get; set; }
-
- public int y { get; set; }
- public UnitPlayerReliveData()
- {
- }
- public UnitPlayerReliveData(Map map, int id, long time, int x, int y)
- {
- this.Map = map;
- this.ID = id;
- this.ReliveTime = time;
- this.x = x;
- this.y = y;
- }
- }
- }
- }
|