Esempio n. 1
0
 public TrinityActor(DiaObject fixedActor) : base(fixedActor)
 {
     Attributes           = new AttributesWrapper(CommonData);
     ObjectHash           = HashGenerator.GenerateObjectHash(Position, ActorSnoId, InternalName);
     IsProfileBlacklisted = ProfileManager.CurrentProfile?.TargetBlacklists?.Any(b => b.ActorId == ActorSnoId) ?? false;
     MonsterQuality       = CommonData?.MonsterQualityLevel ?? MonsterQuality.Normal;
 }
Esempio n. 2
0
 public TrinityActor(ACD acd, ActorType type) : base(acd, type)
 {
     Attributes = new AttributesWrapper(CommonData);
     ObjectHash = HashGenerator.GenerateObjectHash(Position, ActorSnoId, InternalName);
 }