Skip to content

Memories

Jan0660 edited this page Oct 12, 2020 · 2 revisions

Get all memories

var memories = Client.GetAllMemories(); // Dictionary<string, ChapterMemory>

Examples

Listing all memories

foreach (var memory in memories)
{
    Console.WriteLine($"{memory.Value.Names.en} - {memory.Value.WikiUrl}");
}

which outputs

Prologue - https://azurlane.koumakan.jp/Memories/Prologue
Tora! Tora! Tora! - https://azurlane.koumakan.jp/Memories/Tora!_Tora!_Tora!
Battle of Coral Sea - https://azurlane.koumakan.jp/Memories/Battle_of_Coral_Sea
...

Available information in a ChapterMemory

  • Names
  • Thumbnail
    • The url for the thumbnail of this memory
  • WikiUrl
  • Missions
    • List<MissionMemory>

Available information in a MissionMemory

  • Names
  • Lines
    • List<LineMemory>

Available information in a LineMemory

  • Names
  • BannerSource
  • Background
  • Content
    • Literally uses the Names type