mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Some invalid journal data is now handled Journals now use polymorphic deserialization Added Event names to all journal events Remove unused controllers
23 lines
901 B
C#
23 lines
901 B
C#
namespace Observatory.Framework.Files.Journal.Combat;
|
|
|
|
public class ShipTargeted : JournalBase
|
|
{
|
|
public override string Event => "ShipTargeted";
|
|
public bool TargetLocked { get; init; }
|
|
public string Ship { get; init; }
|
|
public string Ship_Localised { get; init; }
|
|
public int ScanStage { get; init; }
|
|
public string PilotName { get; init; }
|
|
public string PilotName_Localised { get; init; }
|
|
public string PilotRank { get; init; }
|
|
public float ShieldHealth { get; init; }
|
|
public float HullHealth { get; init; }
|
|
public string Faction { get; init; }
|
|
public string LegalStatus { get; init; }
|
|
public long Bounty { get; init; }
|
|
public string Subsystem { get; init; }
|
|
public string Subsystem_Localised { get; init; }
|
|
public float SubsystemHealth { get; init; }
|
|
public string Power { get; init; }
|
|
public string SquadronID { get; init; }
|
|
} |