From 434756695a54a8bf8ae57b7a1f9a4b682b574b92 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Sat, 13 May 2023 17:47:21 +0200 Subject: [PATCH] add information regarding Revenant --- EDPlayerJournal/Thargoid.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/EDPlayerJournal/Thargoid.cs b/EDPlayerJournal/Thargoid.cs index 083e6d2..6ae1959 100644 --- a/EDPlayerJournal/Thargoid.cs +++ b/EDPlayerJournal/Thargoid.cs @@ -9,6 +9,10 @@ public enum ThargoidVessel { Medusa = 5, Hydra = 6, Glaive = 7, + /// + /// Thargoid drone + /// + Revenant = 8, } public class Thargoid { @@ -16,6 +20,7 @@ public class Thargoid { public static Dictionary VesselPayout { get; } = new() { // Up to date values ever since 14.02 + { 25000, ThargoidVessel.Revenant }, { 65000, ThargoidVessel.Scout }, { 75000, ThargoidVessel.Scout }, // New in Update 15 @@ -42,7 +47,8 @@ public class Thargoid { public static Dictionary VesselNames { get; } = new() { { ThargoidVessel.Unknown, null }, - { ThargoidVessel.Scout, "Thargoid Scout" }, + { ThargoidVessel.Revenant, "Revenant" }, + { ThargoidVessel.Scout, "Scout" }, { ThargoidVessel.Orthrus, "Orthrus" }, { ThargoidVessel.Cyclops, "Cyclops" }, { ThargoidVessel.Basilisk, "Basilisk" },