Professor Layton Wiki
Advertisement
Professor Layton Wiki

This is the PuzzleData module for Professor Layton and the Miracle Mask.

The data contained in this module is used on various places on the wiki, such as puzzle pages and the puzzle list.

Following data is present in the module:

  • number: The puzzle number, including all preceding zeroes.
  • name: Name of the puzzle page without the "Puzzle:" prefix. Note that this can contain suffixes (like " (MM)") if a puzzle with the same name exists in other games.
  • type: The type of puzzle, as described in the game's puzzle index.
  • location: Location where the puzzle is found, as described in the game's puzzle index.
  • chapter: Chapter from which the puzzle is first available. Either the chapter number or "prologue".
  • picarats: Max amount of picarats the puzzle is worth.
  • solver: Person who solves the puzzle (Layton/Luke/Emmy/Young Hershel/Randall/Angela).
  • character: The character who gave the puzzle, if any.
  • mandatory: Set to true if the puzzle must be solved in order to finish the story of the game.
  • reward: Any reward gained after the puzzle was solved (other than picarats).
  • uk:
    • If the puzzle has a different name in the UK version, but it is still the same puzzle, set this value to the name of the UK puzzle.
    • If the puzzle has a UK variant that is a completely different puzzle, set this value to a table with the same structure as described above.
  • jp: If the puzzle has a completely different puzzle in the Japanese version, set this value to a table with the same structure as described above.

--- Puzzle data for Professor Layton and the Miracle Mask
-- This table contains the main data for the puzzles:
-- * number: The puzzle number, including preceding zeroes
-- * name: Name of the puzzle page without the "Puzzle:" prefix. Note that this can contain suffixes (like "(MM)") if the same puzzle exists in other games.
-- * location: Location where the puzzle is found, as described in-game.
-- * chapter: Chapter from which the puzzle is available.
-- * type: The type of puzzle, as described in-game.
-- * solver: Person who solves the puzzle (Layton/Luke/Emmy/Young Hershel/Randall/Angela)
-- * character: The character who gave the puzzle.
-- * reward: Any reward gained after the puzzle was solved (other than picarats)
-- * picarats: Max amount of picarats the puzzle is worth
-- * uk: If it is a number, this will be the table index of the corresponding UK puzzle. If set to true, means the puzzle IS a UK puzzle. If it is a string, will be the name of the puzzle in the UK version.
return {
	-- Normal Puzzles
	{number = "001", name = "Stumble's Balloons", ["type"] = "Switch", location = "Carnival Square", chapter = "prologue", picarats = 20, solver = "Layton", character = "Stumble", mandatory = true},
	{number = "002", name = "Where's Mother?", ["type"] = "Selection", location = "Carnival Arcade", chapter = 1, picarats = 30, solver = "Luke", character = "Cookie", mandatory = true, uk = "Where's Mum?"},
	{number = "003", name = "Stumble's Banners", ["type"] = "Selection", location = "Gallery Plaza", chapter = 1, picarats = 30, solver = "Emmy"},
	{number = "004", name = "Bumper Perspective", ["type"] = "Circle Answer", location = "Knickknack Alley", chapter = 1, picarats = 20, solver = "Luke"},
	{number = "005", name = "Robot Factory", ["type"] = "Arrange", location = "Knickknack Alley", chapter = 1, picarats = 35, solver = "Emmy", character = "Guy", reward = "Toy Robot course (Abandoned Lab)", mandatory = true},
	{number = "006", name = "Bunny-Hop Swap", ["type"] = "Solitaire", location = "Ledore Parlor", chapter = 1, picarats = 20, solver = "Emmy"},
	{number = "007", name = "A Toasty Toast", ["type"] = "Selection", location = "Carnival Arcade", chapter = 1, picarats = 30, solver = "Layton", character = "Colette"},
	{number = "008", name = "Carnival Colors", ["type"] = "Write Answer", location = "Carnival Square", chapter = 1, picarats = 20, solver = "Layton", character = "Madelaine", uk = "Carnival Colours"},
	{number = "009", name = "Stamp Stumper (MM)", ["type"] = "Multiple Choice", location = "Madame Lapushka's", chapter = 1, picarats = 35, solver = "Emmy"},
	{number = "010", name = "The Place To Be", ["type"] = "Write Answer", location = "Madame Lapushka's", chapter = 1, picarats = 30, solver = "Layton", character = "Madame Lapushka", reward = "Shop (Fresh Fruits)", mandatory = true, uk = "The Long Wait"},
	{number = "011", name = "Backstage Blunder", ["type"] = "Circle Answer", location = "City Monument", chapter = 1, picarats = 30, solver = "Layton", character = "Juggles", reward = "Episode (Ballooning Out of Proportion)", mandatory = true},
	{number = "012", name = "Sharing the Burden", ["type"] = "Arrange", location = "Dromedary Lobby", chapter = 1, picarats = 35, solver = "Layton", character = "Pascal", mandatory = true},
	{number = "013", name = "Ancient Arti-Facts", ["type"] = "Select", location = "Classroom", chapter = 2, picarats = 35, solver = "Hershel", character = "Mr Collins", mandatory = true},
	{number = "014", name = "Bite of Bygone Days", ["type"] = "Button", location = "Classroom", chapter = 2, picarats = 30, solver = "Randall", character = "Mr Collins", mandatory = true},
	{number = "015", name = "Fix the Fossil", ["type"] = "Arrange", location = "Classroom", chapter = 2, picarats = 30, solver = "Randall", character = "Mr Collins", reward = "Toy Robot course (02 - Unearthed Ruin)", mandatory = true},
	{number = "016", name = "Wandering Watches", ["type"] = "Write Answer", location = "Classroom", chapter = 2, picarats = 20, solver = "Hershel"},
	{number = "017", name = "Busted Umbrella", ["type"] = "Button", location = "Kingsbrook Academy", chapter = 2, picarats = 35, solver = "Hershel", uk = "The Broken Brolly"},
	{number = "018", name = "That's Juicy!", ["type"] = "Write Answer", location = "Living Room", chapter = 2, picarats = 30, solver = "Hershel"},
	{number = "019", name = "Spinning Maize", ["type"] = "Maze Escape", location = "Pebble Lane", chapter = 2, picarats = 25, solver = "Hershel", character = "Esther", reward = "Shop (02 - Crockery)", mandatory = true},
	{number = "020", name = "Nine Red Bricks", ["type"] = "Write Answer", location = "Market Street", chapter = 2, picarats = 40, solver = "Hershel", character = "Lionel"},
	{number = "021", name = "A Lick of Paint", ["type"] = "Selection", location = "Old Towne", chapter = 2, picarats = 30, solver = "Hershel", character = "Doug", reward = "Rabbit Play (02 - Mail Bunny)", mandatory = true},
	{number = "022", name = "Poke 'em Totems", ["type"] = "Arrange", location = "Hershel's Room", chapter = 2, picarats = 30, solver = "Hershel"},
	{number = "023", name = "Fairway Fibber", ["type"] = "Multiple Choice", location = "Living Room", chapter = 2, picarats = 35, solver = "Hershel", character = "Roland Layton"},
	{number = "024", name = "Patterned Apron", ["type"] = "Arrange", location = "Living Room", chapter = 2, picarats = 25, solver = "Hershel", character = "Lucille Layton"},
	{number = "025", name = "Brave the Caves", ["type"] = "Selection", location = "Academy Gate", chapter = 2, picarats = 40, solver = "Hershel", character = "Mr Collins"},
	{number = "026", name = "Mangled Math", ["type"] = "Write Answer", location = "Pebble Lane", chapter = 2, picarats = 25, solver = "Hershel", character = "Alphonse Dalston", mandatory = true},
	{number = "027", name = "That Rings a Bell", ["type"] = "Arrange", location = "Randall's Room", chapter = 2, picarats = 40, solver = "Hershel", mandatory = true},
	{number = "028", name = "Bunny-Hop Swap 2", ["type"] = "Solitaire", location = "Layton's Room", chapter = 3, picarats = 30, solver = "Emmy"},
	{number = "029", name = "Tenth-Round Ace", ["type"] = "Multiple Choice", location = "Merchant District", chapter = 3, picarats = 30, solver = "Emmy", character = "Frankie", reward = "Toy Robot course (03 - Colossal Coliseum)"},
	{number = "030", name = "Big Cake, Little Cake", ["type"] = "Arrange", location = "Gallery Plaza", chapter = 3, picarats = 35, solver = "Emmy", character = "Madelaine", reward = "Shop (03 - Explorer's Needs)"},
	{number = "031", name = "Emperor's Throne", ["type"] = "Slide", location = "Carnival Arcade", chapter = 3, picarats = 35, solver = "Layton", character = "Collette"},
	{number = "032", name = "Target Practice", ["type"] = "Slide", location = "Carnival Square", chapter = 3, picarats = 45, solver = "Layton", character = "Policeman"},
	{number = "033", name = "Chained Circle", ["type"] = "Slide", location = "Knickknack Alley", chapter = 3, picarats = 35, solver = "Layton", character = "Guy"},
	{number = "034", name = "The Cat's Trophy", ["type"] = "Slide", location = "Henry's Study", chapter = 3, picarats = 30, solver = "Emmy"},
	{number = "035", name = "Guess Stars", ["type"] = "Slide", location = "Ledore Mansion Gate", chapter = 3, picarats = 40, solver = "Layton", character = "Nils"},
	{number = "036", name = "Going Dough-nuts!", ["type"] = "Select", location = "Gallery Plaza", chapter = 3, picarats = 30, solver = "Layton", character = "Yuming"},
	{number = "037", name = "Spin Shenanigans", ["type"] = "Write Answer", location = "City Monument", chapter = 3, picarats = 40, solver = "Layton", character = "Humbert"},
	{number = "038", name = "Pattern Pending", ["type"] = "Arrange", location = "One-Ring Circus", chapter = 3, picarats = 25, solver = "Layton", character = "Puck"},
	{number = "039", name = "A Hat of Tiles", ["type"] = "Tile Laying", location = "Reception", chapter = 3, picarats = 30, solver = "Layton", character = "Michelle"},
	{number = "040", name = "Crossed Connections", ["type"] = "Draw Line", location = "Reception", chapter = 3, picarats = 35, solver = "Layton"},
	{number = "041", name = "From the Sidelines", ["type"] = "Circle Answer", location = "Briefing Room", chapter = 3, picarats = 40, solver = "Layton", character = "Sheffield"},
	{number = "042", name = "Couple at the Café", ["type"] = "Circle Answer", location = "City Hall Steps", chapter = 3, picarats = 40, solver = "Emmy", character = "Hanna", reward = "Shop (04 - Instruments)"},
	{number = "043", name = "Evenly Matched", ["type"] = "Draw Line", location = "Madame Lapushka's", chapter = 3, picarats = 35, solver = "Layton", character = "Policeman"},
	{number = "044", name = "Suit Crates", ["type"] = "Arrange", location = "Dromedary Plaza", chapter = 3, picarats = 25, solver = "Layton", character = "Yukkles"},
	{number = "045", name = "From Left to Right", ["type"] = "Slide", location = "Montsarton Gallery", chapter = 3, picarats = 55, solver = "Layton"},
	{number = "046", name = "Toppings Up!", ["type"] = "Flip", location = "Montsarton Gallery", chapter = 3, picarats = 30, solver = "Layton", character = "Artie", reward = "Rabbit Play (03 - Little Lost Squirrel)"},
	{number = "047", name = "Trial By Tennis", ["type"] = "Multiple Choice", location = "Costume Boutique", chapter = 3, picarats = 35, solver = "Layton", character = "Madame Lapushka", reward = "Shop (05 - Baked Goods)"},
	{number = "048", name = "Lighting Action", ["type"] = "Arrange", location = "Big Top", chapter = 3, picarats = 45, solver = "Layton"},
	{number = "049", name = "Floor Seats", ["type"] = "Write Answer", location = "Big Top", chapter = 3, picarats = 30, solver = "Layton", character = "Tyrone", uk = "A Whinger's Tale"},
	{number = "050", name = "Kitty Solitaire", ["type"] = "Solitaire", location = "Big Top", chapter = 3, picarats = 35, solver = "Luke", character = "Maurice", reward = "Rabbit Play (04 - Eve of the Carnival)"},
	{number = "051", name = "Dandy Bears", ["type"] = "Multiple Choice", location = "One-Ring Circus", chapter = 3, picarats = 30, solver = "Layton", character = "Stumble"},
	{number = "052", name = "Spectacular Views", ["type"] = "Arrange", location = "Dalston Mansion", chapter = 3, picarats = 40, solver = "Layton", character = "Gonzales"},
	{number = "053", name = "Poke 'em Totems 2", ["type"] = "Arrange", location = "Randall's Room", chapter = 4, picarats = 35, solver = "Hershel"},
	{number = "054", name = "Archaeological Feet", ["type"] = "Draw Line", location = "Randall's Room", chapter = 4, picarats = 30, solver = "Hershel"},
	{number = "055", name = "Spinning Maize 2", ["type"] = "Maze Escape", location = "Pebble Lane", chapter = 4, picarats = 40, solver = "Randall", character = "Esther"},
	{number = "056", name = "Clear-Cut Contrasts", ["type"] = "Select", location = "Living Room", chapter = 4, picarats = 40, solver = "Randall", character = "Roland Layton"},
	{number = "057", name = "Stitching Squares", ["type"] = "Select", location = "Living Room", chapter = 4, picarats = 45, solver = "Randall", character = "Lucille Layton", reward = "Shop (06 - Green Thumb)"},
	{number = "058", name = "Sorting Blocks", ["type"] = "Write Answer", location = "Market Street", chapter = 4, picarats = 30, solver = "Randall", character = "Lionel", reward = "Toy Robot (04 - Inviting Oasis)"},
	{number = "059", name = "Flowery Footpath", ["type"] = "Arrange", location = "Old Towne", chapter = 4, picarats = 40, solver = "Randall", character = "Doug"},
	{number = "060", name = "Dangerous Holes", ["type"] = "Draw Line", location = "Old Towne", chapter = 4, picarats = 45, solver = "Hershel", uk = "A Ropey System"},
	{number = "061", name = "Padlocked Fence", ["type"] = "Arrange", location = "Edge of Town", chapter = 4, picarats = 40, solver = "Randall", reward = "Rabbit play (05 - Home Sweet Home)", uk = "Padlock Gate"},
	{number = "062", name = "Shattered Sign", ["type"] = "Arrange", location = "Signpost", chapter = 4, picarats = 35, solver = "Hershel"},
	{number = "063", name = "A Muddy Mess", ["type"] = "Write Answer", location = "Winding Path", chapter = 4, picarats = 25, solver = "Hershel", character = "Randall"},
	{number = "064", name = "Norwell's Secret", ["type"] = "Arrange", location = "Norwell", chapter = 4, picarats = 40, solver = "Hershel"},
	{number = "065", name = "Kitty Solitaire 2", ["type"] = "Solitaire", location = "Big Top", chapter = 5, picarats = 45, solver = "Luke", character = "Maurice"},
	{number = "066", name = "A Trip to the Hospital", ["type"] = "Write Answer", location = "City Monument", chapter = 5, picarats = 40, solver = "Layton", character = "Policeman"},
	{number = "067", name = "Language of Love", ["type"] = "Select", location = "Merchant District", chapter = 5, picarats = 30, solver = "Luke", character = "Nils", reward = "Toy Robot (05 - Perilous Pyramid)"},
	{number = "068", name = "Days of Rest", ["type"] = "Select", location = "Madame Lapushka's", chapter = 5, picarats = 30, solver = "Layton", character = "Madame Lapushka"},
	{number = "069", name = "Toppings Up! Part 2", ["type"] = "Flip", location = "Monsarton Gallery", chapter = 5, picarats = 35, solver = "Layton", character = "Artie"},
	{number = "070", name = "A Perilous Adventure", ["type"] = "Circle Answer", location = "Ledore Mansion Gate", chapter = 5, picarats = 30, solver = "Layton", character = "Esther", reward = "Rabbit Play (06 - The Naughty Wolf)"},
	{number = "071", name = "Evenly Matched 2", ["type"] = "Draw Line", location = "Reception", chapter = 5, picarats = 45, solver = "Layton", character = "Mayor Billson", uk = "Pawn Portions 2"},
	{number = "072", name = "A Cup of Tiles", ["type"] = "Tile", location = "Reception", chapter = 5, picarats = 40, solver = "Layton", character = "Michelle", reward = "Shop (07 - Apparel)"},
	{number = "073", name = "Ancient Arithmetic", ["type"] = "Arrange", location = "Briefing Room", chapter = 5, picarats = 45, solver = "Layton", character = "Alphonse Dalston", uk = "Rock Hard Sums"},
	{number = "074", name = "Bunny-Hop Swap 3", ["type"] = "Solitaire", location = "Racetrack", chapter = 5, picarats = 40, solver = "Emmy"},
	{number = "075", name = "Grand Horse Race", ["type"] = "Arrange", location = "Racetrack", chapter = 5, picarats = 30, solver = "Layton", character = "Gustav", reward = "Toy Robot (06 - Weird Wilds)"},
	{number = "076", name = "Painstaking Packing", ["type"] = "Write Answer", location = "Oasis Street", chapter = 5, picarats = 35, solver = "Layton", character = "Aldus"},
	{number = "077", name = "Mishmash Map", ["type"] = "Arrange", location = "Knickknack Alley", chapter = 5, picarats = 40, solver = "Layton", character = "Firth", reward = "Rabbit play (07 - A Bit of Courage)"},
	{number = "078", name = "Three Clowns", ["type"] = "Multiple Choice", location = "Merchant District", chapter = 5, picarats = 30, solver = "Emmy", character = "Juggles"},
	{number = "079", name = "The Shopkeepers", ["type"] = "Draw Line", location = "City Monument", chapter = 5, picarats = 45, solver = "Layton", character = "Murphy"},
	{number = "080", name = "Sharing the Burden 2", ["type"] = "Arrange", location = "Dromedary Lobby", chapter = 5, picarats = 30, solver = "Layton"},
	{number = "081", name = "King Arthur's Sword", ["type"] = "Write Answer", location = "One-Ring Circus", chapter = 5, picarats = 30, solver = "Layton", character = "Puck"},
	{number = "082", name = "Rainbow Repair", ["type"] = "Tile", location = "Dalston Mansion", chapter = 5, picarats = 35, solver = "Layton", character = "Gonzales", reward = "Toy Robot (07 - Sturdy Ship)"},
	{number = "083", name = "Settle the Scores", ["type"] = "Write Answer", location = "Chance Avenue", chapter = 5, picarats = 40, solver = "Emmy", character = "Sterling", reward = "Shop (08 - Plush Toys)"},
	{number = "084", name = "Neon Orange", ["type"] = "Select", location = "Casino Entrance", chapter = 5, picarats = 40, solver = "Luke"},
	{number = "085", name = "Slot Sequence (US)", ["type"] = "Select", location = "Casino", chapter = 5, picarats = 30, solver = "Layton", character = "Drake", reward = "Rabbit Play (08 - Fuzzy Dance-Off)", mandatory = true, uk = 151},
	{number = "086", name = "Even Deal", ["type"] = "Arrange", location = "Casino", chapter = 5, picarats = 30, solver = "Luke"},
	{number = "087", name = "Merry-Go-Tiles", ["type"] = "Arrange", location = "Carousel", chapter = 5, picarats = 45, solver = "Layton", mandatory = true},
	{number = "088", name = "Glass Arrows", ["type"] = "Multiple Choice", location = "Carousel", chapter = 5, picarats = 40, solver = "Layton", mandatory = true},
	{number = "089", name = "Pumpkin Spinners", ["type"] = "Arrange", location = "Pumpkin Spinners", chapter = 5, picarats = 30, solver = "Layton", mandatory = true},
	{number = "090", name = "Loose Connection", ["type"] = "Slide", location = "Pumpkin Spinners", chapter = 5, picarats = 70, solver = "Layton"},
	{number = "091", name = "Totem Tumbler", ["type"] = "Arrange", location = "Ruins B2", chapter = 6, picarats = 40, solver = "Hershel"},
	{number = "092", name = "Ancient Artistry", ["type"] = "Write Answer", location = "Ruins B3", chapter = 6, picarats = 30, solver = "Randall"},
	{number = "093", name = "Hershel vs Mummies!", ["type"] = "Slide", location = "Ruins B4", chapter = 6, picarats = 50, solver = "Hershel", mandatory = true},
	{number = "094", name = "Cursed Case", ["type"] = "Arrange", location = "Ruins B5", chapter = 6, picarats = 40, solver = "Randall"},
	{number = "095", name = "Snakes and Keys", ["type"] = "Multiple Choice", location = "Ruins B5", chapter = 6, picarats = 40, solver = "Randall", mandatory = true},
	{number = "096", name = "Arach-attack!", ["type"] = "Select", location = "Ruins B6", chapter = 6, picarats = 30, solver = "Hershel", mandatory = true},
	{number = "097", name = "Tilt to Traverse", ["type"] = "Maze Escape", location = "Ruins B6", chapter = 6, picarats = 40, solver = "Hershel", mandatory = true},
	{number = "098", name = "Watertight Code", ["type"] = "Select", location = "Ruins B7", chapter = 6, picarats = 40, solver = "Randall"},
	{number = "099", name = "Ancient Artistry 2", ["type"] = "Write Answer", location = "Ruins B7", chapter = 6, picarats = 45, solver = "Randall"},
	{number = "100", name = "Gate to the Ruins", ["type"] = "Arrange", location = "Ruins B8", chapter = 6, picarats = 50, solver = "Hershel", mandatory = true, uk = "The Last Door"},
	{number = "101", name = "Wonky Wiring", ["type"] = "Arrange", location = "Dromedary Lobby", chapter = 7, picarats = 45, solver = "Luke", character = "Pascal"},
	{number = "102", name = "Dice Crates", ["type"] = "Arrange", location = "One-Ring Circus", chapter = 7, picarats = 30, solver = "Emmy", character = "Yukkles"},
	{number = "103", name = "Stars of the Stage", ["type"] = "Select", location = "Big Top", chapter = 7, picarats = 50, solver = "Layton", character = "Tyrone"},
	{number = "104", name = "Undercover Code", ["type"] = "Write Answer", location = "Dalston Parlor", chapter = 7, picarats = 40, solver = "Layton", uk = "A Cracking Read"},
	{number = "105", name = "Free Lunch!", ["type"] = "Multiple Choice", location = "Monument", chapter = 7, picarats = 30, solver = "Luke", character = "Firth"},
	{number = "106", name = "Confusion Cubed", ["type"] = "Arrange", location = "Merchant District", chapter = 7, picarats = 50, solver = "Emmy", character = "Cookie"},
	{number = "107", name = "Toppings Up! Part 3", ["type"] = "Flip", location = "Monsarton Gallery", chapter = 7, picarats = 50, solver = "Luke", character = "Artie"},
	{number = "108", name = "Balls and Boxes", ["type"] = "Arrange", location = "Carnival Arcade", chapter = 7, picarats = 40, solver = "Luke", character = "Juggles", reward = "Toy Robot (08 - Small Town)"},
	{number = "109", name = "Fishy Triangle", ["type"] = "Draw Line", location = "Knickknack Alley", chapter = 7, picarats = 45, solver = "Emmy", character = "Guy"},
	{number = "110", name = "Cosy Cabins", ["type"] = "Arrange", location = "Knickknack Alley", chapter = 7, picarats = 30, solver = "Layton", character = "Tanya"},
	{number = "111", name = "Holiday Snaps", ["type"] = "Select", location = "City Hall Steps", chapter = 7, picarats = 35, solver = "Emmy", character = "Hanna"},
	{number = "112", name = "A Duck of Tiles", ["type"] = "Tile", location = "Reception", chapter = 7, picarats = 70, solver = "Layton", character = "Michelle"},
	{number = "113", name = "Chip Champions", ["type"] = "Draw Line", location = "Racetrack Entrance", chapter = 7, picarats = 40, solver = "Layton", character = "Humbert"},
	{number = "114", name = "Emperor's Throne 2", ["type"] = "Slide", location = "Chance Avenue", chapter = 7, picarats = 50, solver = "Luke", character = "Colette", reward = "Shop (09 - Hobby)"},
	{number = "115", name = "Slot Sequence 2", ["type"] = "Select", location = "Casino", chapter = 7, picarats = 35, solver = "Layton", character = "Drake"},
	{number = "116", name = "Ferris Letters", ["type"] = "Arrange", location = "Pumpkin Spinners", chapter = 7, picarats = 25, solver = "Luke", character = "Puck", reward = "Rabbit play (09 - The Snow Bunny)", uk = "Fair Lettering Ferris"},
	{number = "117", name = "Ride Rotation", ["type"] = "Select", location = "Pumpkin Spinners", chapter = 7, picarats = 30, solver = "Layton", character = "Murphy"},
	{number = "118", name = "Evenly Matched 3", ["type"] = "Draw Line", location = "Reception", chapter = 7, picarats = 50, solver = "Layton", character = "Mayor Billson", uk = "Pawn Portions 3"},
	{number = "119", name = "Fairly Shared Squares", ["type"] = "Draw Line", location = "Oasis Street", chapter = 7, picarats = 40, solver = "Layton", character = "Madelaine"},
	{number = "120", name = "Stumble's Balloons 2", ["type"] = "Swap", location = "Gallery Plaza", chapter = 7, picarats = 50, solver = "Layton", character = "Stumble"},
	{number = "121", name = "Ball-Dart Bull's-Eye", ["type"] = "Multiple Choice", location = "Dromedary Plaza", chapter = 7, picarats = 40, solver = "Luke", character = "Sterling", uk = "Ball Dart Bullseye"},
	{number = "122", name = "Kitty Solitaire 3", ["type"] = "Solitaire", location = "Big Top", chapter = 7, picarats = 60, solver = "Luke", character = "Maurice"},
	{number = "123", name = "Weighted Marbles", ["type"] = "Arrange", location = "Casino", chapter = 7, picarats = 45, solver = "Layton", character = "Policeman"},
	{number = "124", name = "Stumble's Banners 2", ["type"] = "Select", location = "Carousel", chapter = 7, picarats = 45, solver = "Layton", character = "Stumble"},
	{number = "125", name = "A Day at the Races", ["type"] = "Multiple Choice", location = "Racetrack", chapter = 7, picarats = 40, solver = "Layton", character = "Gustav"},
	{number = "126", name = "Mystery Room", ["type"] = "Multiple Choice", location = "Front Desk", chapter = 7, picarats = 40, solver = "Layton", character = "Mordy", reward = "Rabbit play (10 - The Greatest Treasure)", uk = "Room 2134 Mystery"},
	{number = "127", name = "Ace of Diamonds", ["type"] = "Multiple Choice", location = "Henry's Office", chapter = 7, picarats = 20, solver = "Luke"},
	{number = "128", name = "Faded Photos", ["type"] = "Select", location = "Henry's Office", chapter = 7, picarats = 40, solver = "Emmy"},
	{number = "129", name = "A Sweeping Solution", ["type"] = "Select", location = "Sapphire Suite", chapter = 7, picarats = 30, solver = "Layton", character = "Yuming", reward = "Shop (10 - Antiques)"},
	{number = "130", name = "Water, Wood, Fire", ["type"] = "Multiple Choice", location = "Emerald Suite", chapter = 7, picarats = 50, solver = "Layton", character = "Conner", reward = "Toy Robot (09 - Floating Castle)"},
	{number = "131", name = "Jewels to the Lock", ["type"] = "Select", location = "Grand Hall", chapter = 7, picarats = 30, solver = "Layton"},
	{number = "132", name = "Stealth Night", ["type"] = "Arrange", location = "Auditorium", chapter = 7, picarats = 40, solver = "Layton"},
	{number = "133", name = "Grand Hall Rescue", ["type"] = "Select", location = "Grand Hall", chapter = 7, picarats = 50, solver = "Layton", mandatory = true},
	{number = "134", name = "Breaking the Seal", ["type"] = "Arrange", location = "City Monument", chapter = 8, picarats = 45, solver = "Layton", mandatory = true},
	{number = "135", name = "Mask Pedestal", ["type"] = "Rotate", location = "Mask Pedestal", chapter = 8, picarats = 60, solver = "Angela", mandatory = true, uk = "Wind-Up Chamber"},
	{number = "136", name = "A Pattern of Tiles", ["type"] = "Tile", location = "Layton's Challenges", picarats = 60, solver = "Layton"},
	{number = "137", name = "Cursed Case 2", ["type"] = "Arrange", location = "Layton's Challenges", picarats = 70, solver = "Layton"},
	{number = "138", name = "Poke 'em Totems 3", ["type"] = "Arrange", location = "Layton's Challenges", picarats = 60, solver = "Layton"},
	{number = "139", name = "Emperor's Throne 3", ["type"] = "Slide", location = "Layton's Challenges", picarats = 70, solver = "Layton"},
	{number = "140", name = "Evenly Matched 4", ["type"] = "Draw Line", location = "Layton's Challenges", picarats = 80, solver = "Layton", uk = "Pawn Portions 4"},
	{number = "141", name = "Fix the Fossil 2", ["type"] = "Arrange", location = "Layton's Challenges", picarats = 80, solver = "Layton"},
	{number = "142", name = "Spinning Maize 3", ["type"] = "Maze Escape", location = "Layton's Challenges", picarats = 55, solver = "Layton"},
	{number = "143", name = "Flowery Footpath 2", ["type"] = "Arrange", location = "Layton's Challenges", picarats = 60, solver = "Layton"},
	{number = "144", name = "Grand Hall Rescue 2", ["type"] = "Select", location = "Layton's Challenges", picarats = 60, solver = "Layton"},
	{number = "145", name = "Merry-Go-Tiles 2", ["type"] = "Arrange", location = "Layton's Challenges", picarats = 80, solver = "Layton"},
	{number = "146", name = "Tilt to Traverse 2", ["type"] = "Maze Escape", location = "Layton's Challenges", picarats = 60, solver = "Layton"},
	{number = "147", name = "That Rings a Bell 2", ["type"] = "Shoot", location = "Layton's Challenges", picarats = 50, solver = "Layton"},
	{number = "148", name = "Mummies' Revenge!", ["type"] = "Slide", location = "Layton's Challenges", picarats = 70, solver = "Layton"},
	{number = "149", name = "From Right to Left", ["type"] = "Slide", location = "Layton's Challenges", picarats = 90, solver = "Layton"},
	{number = "150", name = "Back to the Chamber", ["type"] = "Rotate", location = "Layton's Challenges", picarats = 70, solver = "Layton"},
	-- UK only puzzles
	{number = "085", name = "Slot Sequence (UK)", ["type"] = "Select", location = "Casino", chapter = 5, picarats = 30, solver = "Layton", character = "Drake", reward = "Rabbit Play (08 - Fuzzy Dance-Off)", mandatory = true, uk = true}
}
Advertisement