Question Bank LibraryDueling History
Football Quiz Game All Games Home

Question banks

Every bank here is a plain .json file. Load one straight into the Football Quiz Game through the Question Bank Library door, or download it, edit it, and hand it to another teacher. The engine does not care what the subject is.

Loading library…

Add your own bank

Build questions inside the game, press Export .json, then drop the file into /question-banks/<subject>/<topic>/ and add one entry to index.json. Fill in the Blank is worth 20 yards; Multiple Choice is worth 10.

Bank file format

{
  "schemaVersion": 1,
  "title": "Civil War Basics",
  "subject": "Social Studies",
  "topic": "US History",
  "updated": "2026-09-03",
  "questions": [
    { "type": "fill",
      "prompt": "The 1863 turning-point battle was fought at ___.",
      "answer": "Gettysburg",
      "accept": ["Battle of Gettysburg"] },

    { "type": "mc",
      "prompt": "Who commanded the Army of Northern Virginia?",
      "choices": ["Robert E. Lee", "U.S. Grant", "George McClellan", "Stonewall Jackson"],
      "correct": 0 }
  ]
}

Catalog entry

{ "title": "Civil War Basics",
  "file": "social-studies/us-history/civil-war-basics.json",
  "questions": 12, "fill": 6, "mc": 6, "updated": "2026-09-03" }

Paths in index.json are relative to this folder.