Ace Attorney Wiki
Advertisement

Module for storing and manipulating various data about the cases/episodes throughout the Ace Attorney series. Pretty much replaced by a wikitext-based solution, but kept around as a reference.


-- Module for storing and manipulating various data about the cases/episodes
-- throughout the Ace Attorney series. WIP
-- Author: User:Capefeather

-- Done: Full episode release order list (Japan).
-- To do (maybe): Chronological case order, NA release order list, main series
-- only release order list

local p = {}

p.episodeReleaseOrder = {
    "The First Turnabout",
    "Turnabout Sisters",
    "Turnabout Samurai",
    "Turnabout Goodbyes",
    "The Lost Turnabout",
    "Reunion, and Turnabout",
    "Turnabout Big Top",
    "Farewell, My Turnabout",
    "Turnabout Memories",
    "The Stolen Turnabout",
    "Recipe for Turnabout",
    "Turnabout Beginnings",
    "Bridge to the Turnabout",
    "Rise from the Ashes",
    "Turnabout Trump",
    "Turnabout Corner",
    "Turnabout Serenade",
    "Turnabout Succession",
    "Turnabout Visitor",
    "Turnabout Airlines",
    "The Kidnapped Turnabout",
    "Turnabout Reminiscence",
    "Turnabout Ablaze",
    "Turnabout Target",
    "The Imprisoned Turnabout",
    "The Inherited Turnabout",
    "The Forgotten Turnabout",
    "The Grand Turnabout",
    "On a Dark and Stormy Night",
    "English Turnabout",
    "Mysterious Labyrinthia",
    "The Fire Witch",
    "The Great Witch",
    "The Golden Court",
    "A Taste of Despair",
    "Secrets of the Underground Ruins",
    "The Story's End",
    "The Final Witch Trial",
    "The Last Inquisitor",
    "The First Story",
    "Reunion",
    "London",
    "Another Visit",
    "Flour Everywhere",
    "At the Market",
    "Awkward Moments",
    "Making Money",
    "Tavern Tale",
    "Festival Fever",
    "Shady Types",
    "Fire Festival",
    "A Fond Farewell",
    "Turnabout Countdown",
    "The Monstrous Turnabout",
    "Turnabout Academy",
    "The Cosmic Turnabout",
    "Turnabout for Tomorrow",
    "Turnabout Reclaimed",
    "The Adventure of the Great Departure",
    "The Adventure of the Unbreakable Speckled Band",
    "The Adventure of the Runaway Room",
    "The Adventure of the Clouded Kokoro",
    "The Adventure of the Unspeakable Story",
    "The Foreign Turnabout",
    "The Magical Turnabout",
    "The Rite of Turnabout",
    "Turnabout Storyteller",
    "Turnabout Revolution",
    "Phoenix Wright: Asinine Attorney",
    "Apollo Justice: Asinine Attorney",
    "Turnabout Time Traveler"
    }

return p
Advertisement