diff --git a/QuestPaths/2.x - A Realm Reborn/MSQ-1/Shared/702_My Little Chocobo (Immortal Flames).json b/QuestPaths/2.x - A Realm Reborn/MSQ-1/Shared/702_My Little Chocobo (Immortal Flames).json
new file mode 100644
index 00000000..200da05f
--- /dev/null
+++ b/QuestPaths/2.x - A Realm Reborn/MSQ-1/Shared/702_My Little Chocobo (Immortal Flames).json	
@@ -0,0 +1,88 @@
+{
+  "$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
+  "Author": "liza",
+  "QuestSequence": [
+    {
+      "Sequence": 0,
+      "Steps": [
+        {
+          "Position": {
+            "X": -119.1183,
+            "Y": 3.7999938,
+            "Z": -104.33473
+          },
+          "TerritoryId": 130,
+          "InteractionType": "WalkTo",
+          "AetheryteShortcut": "Ul'dah",
+          "$": "Ul'dah Aetheryte to Immortal Flames"
+        },
+        {
+          "DataId": 1004576,
+          "Position": {
+            "X": -141.64954,
+            "Y": 4.1,
+            "Z": -114.67157
+          },
+          "TerritoryId": 130,
+          "InteractionType": "AcceptQuest"
+        }
+      ]
+    },
+    {
+      "Sequence": 1,
+      "Steps": [
+        {
+          "DataId": 1002390,
+          "Position": {
+            "X": -143.45007,
+            "Y": 4.5499268,
+            "Z": -108.537415
+          },
+          "TerritoryId": 130,
+          "InteractionType": "Instruction",
+          "Comment": "Buy Flame Chocobo Issuance"
+        },
+        {
+          "DataId": 1001978,
+          "Position": {
+            "X": 55.344482,
+            "Y": 4.124078,
+            "Z": -143.9079
+          },
+          "TerritoryId": 130,
+          "InteractionType": "Interact"
+        }
+      ]
+    },
+    {
+      "Sequence": 2,
+      "Steps": [
+        {
+          "DataId": 1006003,
+          "Position": {
+            "X": 51.621216,
+            "Y": 4,
+            "Z": -142.22937
+          },
+          "TerritoryId": 130,
+          "InteractionType": "Interact"
+        }
+      ]
+    },
+    {
+      "Sequence": 255,
+      "Steps": [
+        {
+          "DataId": 1001978,
+          "Position": {
+            "X": 55.344482,
+            "Y": 4.124078,
+            "Z": -143.9079
+          },
+          "TerritoryId": 130,
+          "InteractionType": "CompleteQuest"
+        }
+      ]
+    }
+  ]
+}
diff --git a/Questionable/Functions/QuestFunctions.cs b/Questionable/Functions/QuestFunctions.cs
index 13eee5e4..6c51b2e5 100644
--- a/Questionable/Functions/QuestFunctions.cs
+++ b/Questionable/Functions/QuestFunctions.cs
@@ -80,6 +80,7 @@ internal sealed unsafe class QuestFunctions
             {
                 GrandCompany.TwinAdder => (new QuestId(680), 0),
                 GrandCompany.Maelstrom => (new QuestId(681), 0),
+                GrandCompany.ImmortalFlames => (new QuestId(682), 0),
                 _ => default
             };
         }
@@ -89,6 +90,7 @@ internal sealed unsafe class QuestFunctions
             {
                 GrandCompany.TwinAdder => 700,
                 GrandCompany.Maelstrom => 701,
+                GrandCompany.ImmortalFlames => 702,
                 _ => 0
             };
 
diff --git a/Questionable/Windows/ConfigWindow.cs b/Questionable/Windows/ConfigWindow.cs
index c2148aa1..a419249c 100644
--- a/Questionable/Windows/ConfigWindow.cs
+++ b/Questionable/Windows/ConfigWindow.cs
@@ -20,7 +20,7 @@ internal sealed class ConfigWindow : LWindow, IPersistableWindowConfig
     private readonly string[] _mountNames;
 
     private readonly string[] _grandCompanyNames =
-        ["None (manually pick quest)", "Maelstrom", "Twin Adder" /*, "Immortal Flames"*/];
+        ["None (manually pick quest)", "Maelstrom", "Twin Adder", "Immortal Flames"];
 
     [SuppressMessage("Performance", "CA1861", Justification = "One time initialization")]
     public ConfigWindow(IDalamudPluginInterface pluginInterface, Configuration configuration, IDataManager dataManager)