From 17f60808a723b9a8dc7cd1dda0d9f59039364341 Mon Sep 17 00:00:00 2001 From: Devin Zuczek Date: Wed, 15 Jul 2026 17:57:51 -0400 Subject: [PATCH] maybe fix balance issue, add charades words --- apps/api/src/routes/gameplay.ts | 7 + apps/api/src/test/integration/api.test.ts | 9 + apps/api/static/charades.json | 6162 +++++++++++++++++++++ apps/econ/src/econ.app.ts | 39 + 4 files changed, 6217 insertions(+) create mode 100644 apps/api/static/charades.json diff --git a/apps/api/src/routes/gameplay.ts b/apps/api/src/routes/gameplay.ts index d4f1c81..7a09e3d 100644 --- a/apps/api/src/routes/gameplay.ts +++ b/apps/api/src/routes/gameplay.ts @@ -1,5 +1,7 @@ import { Hono } from 'hono' +import charadesWords from '../../static/charades.json' + import type { App } from '../context' // Text sanitization, keepsakes, objectives/events/rewards, and the misc @@ -13,6 +15,11 @@ export const gameplayRoutes = new Hono({ strict: false }) }) .post('/api/sanitize/v1/isPure', (c) => c.json({ IsPure: true })) + // ---- Activities ----------------------------------------------------------- + // Word bank for the Charades activity. The client requests the list by + // activity name (`.../words/Charades`); other activities have no data yet. + .get('/api/activities/charades/v1/words/:activity', (c) => c.json(charadesWords)) + // Keepsakes (room mementos). Stubbed empty. .get('/api/keepsakes/globalconfig', (c) => c.json({ KeepsakeFeatureEnabled: true, KeepsakeRoomLimit: 10, SocialXpBoostEnabled: false }) diff --git a/apps/api/src/test/integration/api.test.ts b/apps/api/src/test/integration/api.test.ts index 63e291c..ffe0579 100644 --- a/apps/api/src/test/integration/api.test.ts +++ b/apps/api/src/test/integration/api.test.ts @@ -190,6 +190,15 @@ describe('public endpoints', () => { }) }) + test('GET /api/activities/charades/v1/words/Charades returns the word bank', async () => { + const res = await exports.default.fetch(`${ORIGIN}/api/activities/charades/v1/words/Charades`) + expect(res.status).toBe(200) + const words = (await res.json()) as Array<{ Id: number; Difficulty: number; EN_US: string }> + expect(Array.isArray(words)).toBe(true) + expect(words.length).toBeGreaterThan(0) + expect(words[0]).toEqual({ Id: 1, Difficulty: 0, EN_US: 'David Bowie' }) + }) + test('GET /api/playerevents/v1/clubs returns an empty event list', async () => { // The client deserializes this as a bare array — an envelope here fails with // "expected:'[', actual:'{'". No player-event storage yet → empty. diff --git a/apps/api/static/charades.json b/apps/api/static/charades.json new file mode 100644 index 0000000..b8d9df5 --- /dev/null +++ b/apps/api/static/charades.json @@ -0,0 +1,6162 @@ +[ + { + "Id": 1, + "Difficulty": 0, + "EN_US": "David Bowie" + }, + { + "Id": 2, + "Difficulty": 0, + "EN_US": "Guitar" + }, + { + "Id": 3, + "Difficulty": 0, + "EN_US": "Hipster" + }, + { + "Id": 4, + "Difficulty": 0, + "EN_US": "Boxing" + }, + { + "Id": 5, + "Difficulty": 0, + "EN_US": "Alien" + }, + { + "Id": 6, + "Difficulty": 0, + "EN_US": "Car Crash" + }, + { + "Id": 7, + "Difficulty": 0, + "EN_US": "Pole Vault" + }, + { + "Id": 8, + "Difficulty": 0, + "EN_US": "Spaghetti" + }, + { + "Id": 9, + "Difficulty": 0, + "EN_US": "Titanic" + }, + { + "Id": 10, + "Difficulty": 0, + "EN_US": "Video Game" + }, + { + "Id": 11, + "Difficulty": 0, + "EN_US": "Moon Landing" + }, + { + "Id": 12, + "Difficulty": 0, + "EN_US": "Avatar" + }, + { + "Id": 13, + "Difficulty": 0, + "EN_US": "Coal Miner" + }, + { + "Id": 14, + "Difficulty": 0, + "EN_US": "Castaway" + }, + { + "Id": 15, + "Difficulty": 1, + "EN_US": "League of Legends" + }, + { + "Id": 16, + "Difficulty": 0, + "EN_US": "Minecraft" + }, + { + "Id": 17, + "Difficulty": 0, + "EN_US": "Pirate" + }, + { + "Id": 18, + "Difficulty": 0, + "EN_US": "Submarine" + }, + { + "Id": 19, + "Difficulty": 0, + "EN_US": "Luke Skywalker" + }, + { + "Id": 20, + "Difficulty": 0, + "EN_US": "Princess Leia" + }, + { + "Id": 21, + "Difficulty": 0, + "EN_US": "Spiderman" + }, + { + "Id": 22, + "Difficulty": 0, + "EN_US": "Superman" + }, + { + "Id": 23, + "Difficulty": 0, + "EN_US": "Wrestling" + }, + { + "Id": 24, + "Difficulty": 0, + "EN_US": "Campfire" + }, + { + "Id": 25, + "Difficulty": 0, + "EN_US": "Milking a Cow" + }, + { + "Id": 26, + "Difficulty": 0, + "EN_US": "Mario" + }, + { + "Id": 27, + "Difficulty": 0, + "EN_US": "The Wizard of Oz" + }, + { + "Id": 28, + "Difficulty": 0, + "EN_US": "Walking Stick" + }, + { + "Id": 29, + "Difficulty": 0, + "EN_US": "Prison" + }, + { + "Id": 30, + "Difficulty": 0, + "EN_US": "Cereal" + }, + { + "Id": 31, + "Difficulty": 0, + "EN_US": "Shot Put" + }, + { + "Id": 32, + "Difficulty": 0, + "EN_US": "Tsunami" + }, + { + "Id": 33, + "Difficulty": 0, + "EN_US": "Bulldozer" + }, + { + "Id": 34, + "Difficulty": 0, + "EN_US": "Javelin Throw" + }, + { + "Id": 35, + "Difficulty": 0, + "EN_US": "Espresso" + }, + { + "Id": 36, + "Difficulty": 0, + "EN_US": "Aroma" + }, + { + "Id": 37, + "Difficulty": 0, + "EN_US": "Salt and Pepper" + }, + { + "Id": 38, + "Difficulty": 0, + "EN_US": "Toast" + }, + { + "Id": 39, + "Difficulty": 0, + "EN_US": "Ostrich" + }, + { + "Id": 40, + "Difficulty": 0, + "EN_US": "False Teeth" + }, + { + "Id": 41, + "Difficulty": 0, + "EN_US": "Lumber Jack" + }, + { + "Id": 42, + "Difficulty": 0, + "EN_US": "Vacuum" + }, + { + "Id": 43, + "Difficulty": 0, + "EN_US": "Heavy" + }, + { + "Id": 44, + "Difficulty": 0, + "EN_US": "Pet" + }, + { + "Id": 45, + "Difficulty": 0, + "EN_US": "Fan" + }, + { + "Id": 46, + "Difficulty": 0, + "EN_US": "Saxophone" + }, + { + "Id": 47, + "Difficulty": 0, + "EN_US": "Antlers" + }, + { + "Id": 48, + "Difficulty": 0, + "EN_US": "Jumping Jack " + }, + { + "Id": 49, + "Difficulty": 0, + "EN_US": "Shark " + }, + { + "Id": 50, + "Difficulty": 0, + "EN_US": "Alligator " + }, + { + "Id": 51, + "Difficulty": 0, + "EN_US": "Chair " + }, + { + "Id": 52, + "Difficulty": 0, + "EN_US": "Robot " + }, + { + "Id": 53, + "Difficulty": 0, + "EN_US": "Scissors " + }, + { + "Id": 54, + "Difficulty": 0, + "EN_US": "Cheek " + }, + { + "Id": 55, + "Difficulty": 0, + "EN_US": "Jump " + }, + { + "Id": 56, + "Difficulty": 0, + "EN_US": "Ice Cream Cone " + }, + { + "Id": 57, + "Difficulty": 0, + "EN_US": "Plane " + }, + { + "Id": 58, + "Difficulty": 0, + "EN_US": "Basketball " + }, + { + "Id": 59, + "Difficulty": 0, + "EN_US": "Camera " + }, + { + "Id": 60, + "Difficulty": 0, + "EN_US": "Eat " + }, + { + "Id": 62, + "Difficulty": 0, + "EN_US": "Blink " + }, + { + "Id": 63, + "Difficulty": 0, + "EN_US": "Balloon " + }, + { + "Id": 64, + "Difficulty": 0, + "EN_US": "Book" + }, + { + "Id": 65, + "Difficulty": 0, + "EN_US": "Glasses " + }, + { + "Id": 66, + "Difficulty": 0, + "EN_US": "Sneeze " + }, + { + "Id": 67, + "Difficulty": 0, + "EN_US": "Mouth " + }, + { + "Id": 68, + "Difficulty": 0, + "EN_US": "Football " + }, + { + "Id": 69, + "Difficulty": 0, + "EN_US": "Telephone " + }, + { + "Id": 70, + "Difficulty": 0, + "EN_US": "Tail " + }, + { + "Id": 71, + "Difficulty": 0, + "EN_US": "Turtle" + }, + { + "Id": 72, + "Difficulty": 0, + "EN_US": "Baby " + }, + { + "Id": 73, + "Difficulty": 0, + "EN_US": "Ear " + }, + { + "Id": 74, + "Difficulty": 0, + "EN_US": "Monkey " + }, + { + "Id": 75, + "Difficulty": 0, + "EN_US": "Hopscotch " + }, + { + "Id": 76, + "Difficulty": 0, + "EN_US": "Ping Pong " + }, + { + "Id": 77, + "Difficulty": 0, + "EN_US": "Snowball " + }, + { + "Id": 78, + "Difficulty": 0, + "EN_US": "Roof " + }, + { + "Id": 79, + "Difficulty": 0, + "EN_US": "Fly " + }, + { + "Id": 80, + "Difficulty": 0, + "EN_US": "Fang " + }, + { + "Id": 81, + "Difficulty": 0, + "EN_US": "Piano " + }, + { + "Id": 82, + "Difficulty": 0, + "EN_US": "Lipstick " + }, + { + "Id": 83, + "Difficulty": 0, + "EN_US": "Hula Hoop " + }, + { + "Id": 84, + "Difficulty": 0, + "EN_US": "Penguin " + }, + { + "Id": 85, + "Difficulty": 0, + "EN_US": "Banana Peel " + }, + { + "Id": 86, + "Difficulty": 0, + "EN_US": "Whisper " + }, + { + "Id": 87, + "Difficulty": 0, + "EN_US": "Popsicle " + }, + { + "Id": 88, + "Difficulty": 0, + "EN_US": "Frankenstein " + }, + { + "Id": 89, + "Difficulty": 0, + "EN_US": "Earthquake " + }, + { + "Id": 90, + "Difficulty": 0, + "EN_US": "Road " + }, + { + "Id": 91, + "Difficulty": 0, + "EN_US": "Alarm Clock " + }, + { + "Id": 92, + "Difficulty": 0, + "EN_US": "Dog Leash " + }, + { + "Id": 93, + "Difficulty": 0, + "EN_US": "Chop " + }, + { + "Id": 94, + "Difficulty": 0, + "EN_US": "Pajamas " + }, + { + "Id": 95, + "Difficulty": 0, + "EN_US": "Slam Dunk " + }, + { + "Id": 96, + "Difficulty": 0, + "EN_US": "Seashell " + }, + { + "Id": 97, + "Difficulty": 0, + "EN_US": "Jog " + }, + { + "Id": 98, + "Difficulty": 0, + "EN_US": "Seesaw " + }, + { + "Id": 99, + "Difficulty": 0, + "EN_US": "Nap " + }, + { + "Id": 100, + "Difficulty": 0, + "EN_US": "Cheerleader " + }, + { + "Id": 101, + "Difficulty": 0, + "EN_US": "Blind " + }, + { + "Id": 102, + "Difficulty": 0, + "EN_US": "Beg " + }, + { + "Id": 103, + "Difficulty": 0, + "EN_US": "CPR" + }, + { + "Id": 104, + "Difficulty": 0, + "EN_US": "Shopping Cart " + }, + { + "Id": 105, + "Difficulty": 0, + "EN_US": "Limbo " + }, + { + "Id": 106, + "Difficulty": 0, + "EN_US": "Newspaper " + }, + { + "Id": 107, + "Difficulty": 0, + "EN_US": "Twist " + }, + { + "Id": 108, + "Difficulty": 0, + "EN_US": "Rhinoceros " + }, + { + "Id": 109, + "Difficulty": 0, + "EN_US": "Cow " + }, + { + "Id": 110, + "Difficulty": 0, + "EN_US": "Tickle " + }, + { + "Id": 111, + "Difficulty": 0, + "EN_US": "Fetch " + }, + { + "Id": 112, + "Difficulty": 0, + "EN_US": "Violin " + }, + { + "Id": 113, + "Difficulty": 0, + "EN_US": "Cage " + }, + { + "Id": 114, + "Difficulty": 0, + "EN_US": "Cello " + }, + { + "Id": 115, + "Difficulty": 0, + "EN_US": "Braid " + }, + { + "Id": 116, + "Difficulty": 0, + "EN_US": "Trumpet " + }, + { + "Id": 117, + "Difficulty": 0, + "EN_US": "Mop " + }, + { + "Id": 118, + "Difficulty": 0, + "EN_US": "Shovel" + }, + { + "Id": 119, + "Difficulty": 0, + "EN_US": "Cash " + }, + { + "Id": 120, + "Difficulty": 0, + "EN_US": "Soap " + }, + { + "Id": 121, + "Difficulty": 0, + "EN_US": "Wink " + }, + { + "Id": 122, + "Difficulty": 0, + "EN_US": "Tree " + }, + { + "Id": 124, + "Difficulty": 0, + "EN_US": "Windmill " + }, + { + "Id": 125, + "Difficulty": 0, + "EN_US": "Party " + }, + { + "Id": 126, + "Difficulty": 0, + "EN_US": "Lawn Mower " + }, + { + "Id": 127, + "Difficulty": 0, + "EN_US": "Wig " + }, + { + "Id": 128, + "Difficulty": 0, + "EN_US": "Handcuffs " + }, + { + "Id": 129, + "Difficulty": 0, + "EN_US": "Sunburn " + }, + { + "Id": 130, + "Difficulty": 0, + "EN_US": "Hair Dryer " + }, + { + "Id": 131, + "Difficulty": 0, + "EN_US": "Shadow " + }, + { + "Id": 132, + "Difficulty": 0, + "EN_US": "Sip " + }, + { + "Id": 133, + "Difficulty": 0, + "EN_US": "Bathroom " + }, + { + "Id": 134, + "Difficulty": 0, + "EN_US": "Scale " + }, + { + "Id": 135, + "Difficulty": 0, + "EN_US": "Cowboy " + }, + { + "Id": 136, + "Difficulty": 0, + "EN_US": "Doghouse " + }, + { + "Id": 137, + "Difficulty": 0, + "EN_US": "Knot " + }, + { + "Id": 138, + "Difficulty": 0, + "EN_US": "Owl " + }, + { + "Id": 139, + "Difficulty": 0, + "EN_US": "Wrench " + }, + { + "Id": 140, + "Difficulty": 0, + "EN_US": "Story " + }, + { + "Id": 141, + "Difficulty": 0, + "EN_US": "Whisk " + }, + { + "Id": 142, + "Difficulty": 0, + "EN_US": "Spine " + }, + { + "Id": 143, + "Difficulty": 0, + "EN_US": "Artist " + }, + { + "Id": 144, + "Difficulty": 0, + "EN_US": "Gingerbread Man " + }, + { + "Id": 145, + "Difficulty": 0, + "EN_US": "Spider Web " + }, + { + "Id": 146, + "Difficulty": 0, + "EN_US": "Lung " + }, + { + "Id": 147, + "Difficulty": 0, + "EN_US": "Washing Machine " + }, + { + "Id": 148, + "Difficulty": 0, + "EN_US": "Torch " + }, + { + "Id": 149, + "Difficulty": 0, + "EN_US": "Eraser " + }, + { + "Id": 150, + "Difficulty": 0, + "EN_US": "Mouse Trap " + }, + { + "Id": 151, + "Difficulty": 0, + "EN_US": "Swordfish " + }, + { + "Id": 152, + "Difficulty": 0, + "EN_US": "Flamingo " + }, + { + "Id": 153, + "Difficulty": 0, + "EN_US": "Cast " + }, + { + "Id": 154, + "Difficulty": 0, + "EN_US": "Honk " + }, + { + "Id": 155, + "Difficulty": 0, + "EN_US": "Mirror " + }, + { + "Id": 156, + "Difficulty": 0, + "EN_US": "Volcano" + }, + { + "Id": 157, + "Difficulty": 0, + "EN_US": "Flag " + }, + { + "Id": 158, + "Difficulty": 0, + "EN_US": "Shipwreck " + }, + { + "Id": 159, + "Difficulty": 0, + "EN_US": "Olympics " + }, + { + "Id": 160, + "Difficulty": 0, + "EN_US": "Satellite " + }, + { + "Id": 161, + "Difficulty": 0, + "EN_US": "Evolution " + }, + { + "Id": 162, + "Difficulty": 0, + "EN_US": "Pendulum" + }, + { + "Id": 163, + "Difficulty": 0, + "EN_US": "The Mighty Ducks " + }, + { + "Id": 164, + "Difficulty": 0, + "EN_US": "Indiana Jones " + }, + { + "Id": 165, + "Difficulty": 0, + "EN_US": "Angels in the Outfield " + }, + { + "Id": 166, + "Difficulty": 0, + "EN_US": "E.T. " + }, + { + "Id": 167, + "Difficulty": 0, + "EN_US": "Dumbo " + }, + { + "Id": 168, + "Difficulty": 0, + "EN_US": "Batman " + }, + { + "Id": 169, + "Difficulty": 0, + "EN_US": "Mary Poppins " + }, + { + "Id": 170, + "Difficulty": 0, + "EN_US": "Star Wars " + }, + { + "Id": 171, + "Difficulty": 0, + "EN_US": "James Bond " + }, + { + "Id": 172, + "Difficulty": 0, + "EN_US": "The Lion King" + }, + { + "Id": 173, + "Difficulty": 0, + "EN_US": "The Matrix" + }, + { + "Id": 174, + "Difficulty": 0, + "EN_US": "Godzilla" + }, + { + "Id": 175, + "Difficulty": 0, + "EN_US": "Golf" + }, + { + "Id": 176, + "Difficulty": 0, + "EN_US": "Headphones" + }, + { + "Id": 177, + "Difficulty": 0, + "EN_US": "Necktie" + }, + { + "Id": 178, + "Difficulty": 0, + "EN_US": "Paintbrush" + }, + { + "Id": 179, + "Difficulty": 0, + "EN_US": "Mime" + }, + { + "Id": 180, + "Difficulty": 0, + "EN_US": "Rubber Ducky " + }, + { + "Id": 181, + "Difficulty": 0, + "EN_US": "Yolk " + }, + { + "Id": 182, + "Difficulty": 0, + "EN_US": "Exercise " + }, + { + "Id": 183, + "Difficulty": 0, + "EN_US": "Dizzy " + }, + { + "Id": 184, + "Difficulty": 0, + "EN_US": "Barber " + }, + { + "Id": 185, + "Difficulty": 0, + "EN_US": "Jazz " + }, + { + "Id": 186, + "Difficulty": 0, + "EN_US": "Download " + }, + { + "Id": 187, + "Difficulty": 0, + "EN_US": "Ski Goggles " + }, + { + "Id": 188, + "Difficulty": 0, + "EN_US": "Oar " + }, + { + "Id": 189, + "Difficulty": 0, + "EN_US": "Shampoo " + }, + { + "Id": 190, + "Difficulty": 0, + "EN_US": "Think " + }, + { + "Id": 191, + "Difficulty": 0, + "EN_US": "Darts " + }, + { + "Id": 192, + "Difficulty": 0, + "EN_US": "Shower Curtain " + }, + { + "Id": 193, + "Difficulty": 0, + "EN_US": "Extension Cord " + }, + { + "Id": 194, + "Difficulty": 0, + "EN_US": "Birthday " + }, + { + "Id": 195, + "Difficulty": 0, + "EN_US": "Pocket " + }, + { + "Id": 196, + "Difficulty": 0, + "EN_US": "Zipper " + }, + { + "Id": 197, + "Difficulty": 0, + "EN_US": "Fiddle " + }, + { + "Id": 198, + "Difficulty": 0, + "EN_US": "Pail " + }, + { + "Id": 199, + "Difficulty": 0, + "EN_US": "Baguette " + }, + { + "Id": 200, + "Difficulty": 0, + "EN_US": "Rib " + }, + { + "Id": 201, + "Difficulty": 0, + "EN_US": "Sushi " + }, + { + "Id": 202, + "Difficulty": 0, + "EN_US": "Ceiling Fan " + }, + { + "Id": 204, + "Difficulty": 0, + "EN_US": "Disco" + }, + { + "Id": 205, + "Difficulty": 0, + "EN_US": "Castle" + }, + { + "Id": 206, + "Difficulty": 0, + "EN_US": "Post Office " + }, + { + "Id": 207, + "Difficulty": 0, + "EN_US": "Chess " + }, + { + "Id": 208, + "Difficulty": 0, + "EN_US": "Puppet " + }, + { + "Id": 209, + "Difficulty": 0, + "EN_US": "Kangaroo" + }, + { + "Id": 210, + "Difficulty": 0, + "EN_US": "Dentist" + }, + { + "Id": 211, + "Difficulty": 0, + "EN_US": "Bear Trap" + }, + { + "Id": 212, + "Difficulty": 0, + "EN_US": "Cabin " + }, + { + "Id": 213, + "Difficulty": 0, + "EN_US": "Cruise Ship " + }, + { + "Id": 214, + "Difficulty": 0, + "EN_US": "Saturn" + }, + { + "Id": 215, + "Difficulty": 1, + "EN_US": "N64" + }, + { + "Id": 216, + "Difficulty": 0, + "EN_US": "Dream " + }, + { + "Id": 217, + "Difficulty": 0, + "EN_US": "Recycle " + }, + { + "Id": 218, + "Difficulty": 0, + "EN_US": "Raft " + }, + { + "Id": 219, + "Difficulty": 0, + "EN_US": "Gold " + }, + { + "Id": 220, + "Difficulty": 0, + "EN_US": "Plank " + }, + { + "Id": 221, + "Difficulty": 0, + "EN_US": "Cliff " + }, + { + "Id": 222, + "Difficulty": 0, + "EN_US": "Cape" + }, + { + "Id": 223, + "Difficulty": 0, + "EN_US": "Safe" + }, + { + "Id": 224, + "Difficulty": 0, + "EN_US": "Picnic " + }, + { + "Id": 225, + "Difficulty": 0, + "EN_US": "Boa Constrictor " + }, + { + "Id": 227, + "Difficulty": 0, + "EN_US": "Hurdle " + }, + { + "Id": 229, + "Difficulty": 0, + "EN_US": "Loveseat " + }, + { + "Id": 230, + "Difficulty": 0, + "EN_US": "Harry Potter" + }, + { + "Id": 231, + "Difficulty": 1, + "EN_US": "Cool Runnings" + }, + { + "Id": 232, + "Difficulty": 0, + "EN_US": "Bobsled " + }, + { + "Id": 233, + "Difficulty": 0, + "EN_US": "Hot Tub " + }, + { + "Id": 234, + "Difficulty": 0, + "EN_US": "Firefighter" + }, + { + "Id": 235, + "Difficulty": 0, + "EN_US": "Cell Phone" + }, + { + "Id": 236, + "Difficulty": 0, + "EN_US": "Coach" + }, + { + "Id": 237, + "Difficulty": 0, + "EN_US": "Moth" + }, + { + "Id": 238, + "Difficulty": 0, + "EN_US": "Wooly Mammoth " + }, + { + "Id": 239, + "Difficulty": 0, + "EN_US": "Bonfire" + }, + { + "Id": 240, + "Difficulty": 0, + "EN_US": "Laptop" + }, + { + "Id": 241, + "Difficulty": 0, + "EN_US": "Bicycle" + }, + { + "Id": 242, + "Difficulty": 0, + "EN_US": "Subway" + }, + { + "Id": 243, + "Difficulty": 0, + "EN_US": "Cat" + }, + { + "Id": 244, + "Difficulty": 0, + "EN_US": "Ant" + }, + { + "Id": 245, + "Difficulty": 0, + "EN_US": "Zebra" + }, + { + "Id": 246, + "Difficulty": 0, + "EN_US": "Pizza" + }, + { + "Id": 247, + "Difficulty": 0, + "EN_US": "Baseball Bat" + }, + { + "Id": 248, + "Difficulty": 0, + "EN_US": "Car" + }, + { + "Id": 249, + "Difficulty": 0, + "EN_US": "Pig" + }, + { + "Id": 250, + "Difficulty": 0, + "EN_US": "Bull" + }, + { + "Id": 251, + "Difficulty": 0, + "EN_US": "Calculator" + }, + { + "Id": 252, + "Difficulty": 0, + "EN_US": "Octopus" + }, + { + "Id": 253, + "Difficulty": 0, + "EN_US": "Cheese" + }, + { + "Id": 254, + "Difficulty": 0, + "EN_US": "Fish Tank" + }, + { + "Id": 255, + "Difficulty": 0, + "EN_US": "Starfish" + }, + { + "Id": 256, + "Difficulty": 0, + "EN_US": "Eggs" + }, + { + "Id": 257, + "Difficulty": 0, + "EN_US": "Toothbrush" + }, + { + "Id": 258, + "Difficulty": 0, + "EN_US": "Lemon" + }, + { + "Id": 259, + "Difficulty": 0, + "EN_US": "Computer" + }, + { + "Id": 260, + "Difficulty": 0, + "EN_US": "Present" + }, + { + "Id": 261, + "Difficulty": 0, + "EN_US": "Key" + }, + { + "Id": 262, + "Difficulty": 0, + "EN_US": "Silverware" + }, + { + "Id": 263, + "Difficulty": 0, + "EN_US": "Water" + }, + { + "Id": 264, + "Difficulty": 0, + "EN_US": "Broken Heart" + }, + { + "Id": 265, + "Difficulty": 0, + "EN_US": "Love" + }, + { + "Id": 266, + "Difficulty": 0, + "EN_US": "Silly String" + }, + { + "Id": 267, + "Difficulty": 0, + "EN_US": "Checkers" + }, + { + "Id": 268, + "Difficulty": 0, + "EN_US": "Gumball Machine" + }, + { + "Id": 269, + "Difficulty": 0, + "EN_US": "City" + }, + { + "Id": 270, + "Difficulty": 0, + "EN_US": "Spider" + }, + { + "Id": 271, + "Difficulty": 0, + "EN_US": "Wagon" + }, + { + "Id": 272, + "Difficulty": 0, + "EN_US": "Tackle" + }, + { + "Id": 273, + "Difficulty": 0, + "EN_US": "Princess" + }, + { + "Id": 274, + "Difficulty": 0, + "EN_US": "Crown" + }, + { + "Id": 275, + "Difficulty": 0, + "EN_US": "Mermaid" + }, + { + "Id": 276, + "Difficulty": 0, + "EN_US": "Mushroom" + }, + { + "Id": 278, + "Difficulty": 0, + "EN_US": "Mountain" + }, + { + "Id": 279, + "Difficulty": 0, + "EN_US": "Brush" + }, + { + "Id": 280, + "Difficulty": 0, + "EN_US": "Airport" + }, + { + "Id": 281, + "Difficulty": 0, + "EN_US": "Bridge" + }, + { + "Id": 282, + "Difficulty": 0, + "EN_US": "Lamp" + }, + { + "Id": 283, + "Difficulty": 0, + "EN_US": "Skate" + }, + { + "Id": 284, + "Difficulty": 0, + "EN_US": "Tank" + }, + { + "Id": 285, + "Difficulty": 0, + "EN_US": "Kitten" + }, + { + "Id": 286, + "Difficulty": 0, + "EN_US": "Grapes" + }, + { + "Id": 287, + "Difficulty": 0, + "EN_US": "Knight" + }, + { + "Id": 288, + "Difficulty": 0, + "EN_US": "Cave" + }, + { + "Id": 289, + "Difficulty": 0, + "EN_US": "Eagle" + }, + { + "Id": 290, + "Difficulty": 0, + "EN_US": "Rope" + }, + { + "Id": 291, + "Difficulty": 0, + "EN_US": "Farmer" + }, + { + "Id": 292, + "Difficulty": 0, + "EN_US": "Sidewalk" + }, + { + "Id": 293, + "Difficulty": 0, + "EN_US": "Comb" + }, + { + "Id": 294, + "Difficulty": 0, + "EN_US": "Rake" + }, + { + "Id": 295, + "Difficulty": 0, + "EN_US": "Swiss Cheese" + }, + { + "Id": 296, + "Difficulty": 0, + "EN_US": "Pool" + }, + { + "Id": 297, + "Difficulty": 0, + "EN_US": "Door" + }, + { + "Id": 298, + "Difficulty": 0, + "EN_US": "Skateboard" + }, + { + "Id": 299, + "Difficulty": 0, + "EN_US": "Rose" + }, + { + "Id": 300, + "Difficulty": 0, + "EN_US": "Rabbit" + }, + { + "Id": 301, + "Difficulty": 0, + "EN_US": "Nest" + }, + { + "Id": 302, + "Difficulty": 0, + "EN_US": "Root" + }, + { + "Id": 303, + "Difficulty": 0, + "EN_US": "Bride" + }, + { + "Id": 305, + "Difficulty": 0, + "EN_US": "Horn" + }, + { + "Id": 306, + "Difficulty": 0, + "EN_US": "Island" + }, + { + "Id": 307, + "Difficulty": 0, + "EN_US": "Paw" + }, + { + "Id": 308, + "Difficulty": 0, + "EN_US": "Rowboat" + }, + { + "Id": 309, + "Difficulty": 0, + "EN_US": "Tie" + }, + { + "Id": 310, + "Difficulty": 0, + "EN_US": "Radio" + }, + { + "Id": 311, + "Difficulty": 0, + "EN_US": "Handle" + }, + { + "Id": 313, + "Difficulty": 0, + "EN_US": "Rain" + }, + { + "Id": 314, + "Difficulty": 0, + "EN_US": "Elevator" + }, + { + "Id": 315, + "Difficulty": 0, + "EN_US": "Saddle" + }, + { + "Id": 316, + "Difficulty": 0, + "EN_US": "Upside Down" + }, + { + "Id": 317, + "Difficulty": 0, + "EN_US": "Elephant" + }, + { + "Id": 318, + "Difficulty": 0, + "EN_US": "Baseball" + }, + { + "Id": 319, + "Difficulty": 0, + "EN_US": "Ship" + }, + { + "Id": 320, + "Difficulty": 0, + "EN_US": "Hot Dog" + }, + { + "Id": 321, + "Difficulty": 0, + "EN_US": "Building" + }, + { + "Id": 322, + "Difficulty": 0, + "EN_US": "Crab" + }, + { + "Id": 323, + "Difficulty": 0, + "EN_US": "Bathtub" + }, + { + "Id": 324, + "Difficulty": 0, + "EN_US": "Alarm" + }, + { + "Id": 325, + "Difficulty": 0, + "EN_US": "Golf Ball" + }, + { + "Id": 326, + "Difficulty": 0, + "EN_US": "Tree House" + }, + { + "Id": 327, + "Difficulty": 0, + "EN_US": "Battleship" + }, + { + "Id": 328, + "Difficulty": 0, + "EN_US": "Birdhouse" + }, + { + "Id": 329, + "Difficulty": 0, + "EN_US": "Yo–Yo" + }, + { + "Id": 330, + "Difficulty": 0, + "EN_US": "Belt" + }, + { + "Id": 331, + "Difficulty": 0, + "EN_US": "Candy" + }, + { + "Id": 332, + "Difficulty": 0, + "EN_US": "Fishing" + }, + { + "Id": 333, + "Difficulty": 0, + "EN_US": "Drink" + }, + { + "Id": 334, + "Difficulty": 0, + "EN_US": "Globe" + }, + { + "Id": 335, + "Difficulty": 0, + "EN_US": "Garage" + }, + { + "Id": 336, + "Difficulty": 0, + "EN_US": "Blizzard" + }, + { + "Id": 337, + "Difficulty": 0, + "EN_US": "Bumblebee" + }, + { + "Id": 338, + "Difficulty": 0, + "EN_US": "Thorn" + }, + { + "Id": 339, + "Difficulty": 0, + "EN_US": "Leapfrog" + }, + { + "Id": 340, + "Difficulty": 0, + "EN_US": "Mother" + }, + { + "Id": 341, + "Difficulty": 0, + "EN_US": "Father" + }, + { + "Id": 342, + "Difficulty": 0, + "EN_US": "Dog" + }, + { + "Id": 343, + "Difficulty": 0, + "EN_US": "Deodorant" + }, + { + "Id": 344, + "Difficulty": 0, + "EN_US": "Chocolate" + }, + { + "Id": 345, + "Difficulty": 0, + "EN_US": "Cup" + }, + { + "Id": 346, + "Difficulty": 0, + "EN_US": "Church" + }, + { + "Id": 347, + "Difficulty": 0, + "EN_US": "Spray" + }, + { + "Id": 348, + "Difficulty": 0, + "EN_US": "Grass" + }, + { + "Id": 349, + "Difficulty": 0, + "EN_US": "Tissue" + }, + { + "Id": 350, + "Difficulty": 0, + "EN_US": "Chicken" + }, + { + "Id": 351, + "Difficulty": 0, + "EN_US": "Song" + }, + { + "Id": 352, + "Difficulty": 0, + "EN_US": "Forest" + }, + { + "Id": 353, + "Difficulty": 0, + "EN_US": "Pillow" + }, + { + "Id": 354, + "Difficulty": 0, + "EN_US": "Plant" + }, + { + "Id": 355, + "Difficulty": 0, + "EN_US": "Bed" + }, + { + "Id": 356, + "Difficulty": 0, + "EN_US": "Notebook" + }, + { + "Id": 357, + "Difficulty": 0, + "EN_US": "Ruler" + }, + { + "Id": 358, + "Difficulty": 0, + "EN_US": "Speaker" + }, + { + "Id": 359, + "Difficulty": 0, + "EN_US": "Stool" + }, + { + "Id": 361, + "Difficulty": 0, + "EN_US": "Crutch" + }, + { + "Id": 362, + "Difficulty": 0, + "EN_US": "Butterfly" + }, + { + "Id": 363, + "Difficulty": 0, + "EN_US": "Cane" + }, + { + "Id": 364, + "Difficulty": 0, + "EN_US": "Flower" + }, + { + "Id": 365, + "Difficulty": 0, + "EN_US": "Walker" + }, + { + "Id": 367, + "Difficulty": 0, + "EN_US": "Gas" + }, + { + "Id": 368, + "Difficulty": 0, + "EN_US": "Perfume" + }, + { + "Id": 369, + "Difficulty": 0, + "EN_US": "Corn" + }, + { + "Id": 370, + "Difficulty": 0, + "EN_US": "Time" + }, + { + "Id": 371, + "Difficulty": 0, + "EN_US": "Jack and the Bean Stalk" + }, + { + "Id": 372, + "Difficulty": 0, + "EN_US": "United States" + }, + { + "Id": 373, + "Difficulty": 0, + "EN_US": "Directions" + }, + { + "Id": 375, + "Difficulty": 0, + "EN_US": "Apple" + }, + { + "Id": 376, + "Difficulty": 0, + "EN_US": "Hat" + }, + { + "Id": 377, + "Difficulty": 0, + "EN_US": "Jacket" + }, + { + "Id": 378, + "Difficulty": 0, + "EN_US": "Poison" + }, + { + "Id": 379, + "Difficulty": 0, + "EN_US": "Shirt" + }, + { + "Id": 380, + "Difficulty": 0, + "EN_US": "Jeans" + }, + { + "Id": 381, + "Difficulty": 0, + "EN_US": "Angry" + }, + { + "Id": 382, + "Difficulty": 0, + "EN_US": "Ankle" + }, + { + "Id": 383, + "Difficulty": 0, + "EN_US": "Time" + }, + { + "Id": 384, + "Difficulty": 0, + "EN_US": "Cry" + }, + { + "Id": 385, + "Difficulty": 0, + "EN_US": "Cake" + }, + { + "Id": 386, + "Difficulty": 0, + "EN_US": "Watering Can" + }, + { + "Id": 387, + "Difficulty": 0, + "EN_US": "Boat" + }, + { + "Id": 389, + "Difficulty": 0, + "EN_US": "Star Trek" + }, + { + "Id": 391, + "Difficulty": 0, + "EN_US": "Pinocchio" + }, + { + "Id": 392, + "Difficulty": 0, + "EN_US": "WALL-E" + }, + { + "Id": 393, + "Difficulty": 1, + "EN_US": "Balcony" + }, + { + "Id": 394, + "Difficulty": 1, + "EN_US": "Lemonade Stand" + }, + { + "Id": 395, + "Difficulty": 0, + "EN_US": "Juggle" + }, + { + "Id": 396, + "Difficulty": 1, + "EN_US": "Knitting" + }, + { + "Id": 397, + "Difficulty": 1, + "EN_US": "Double-sided Tape" + }, + { + "Id": 398, + "Difficulty": 0, + "EN_US": "Chainsaw" + }, + { + "Id": 399, + "Difficulty": 1, + "EN_US": "Barista" + }, + { + "Id": 400, + "Difficulty": 1, + "EN_US": "Old Faithful" + }, + { + "Id": 401, + "Difficulty": 1, + "EN_US": "Road Rage" + }, + { + "Id": 402, + "Difficulty": 1, + "EN_US": "Assembly Line" + }, + { + "Id": 403, + "Difficulty": 1, + "EN_US": "Horsepower" + }, + { + "Id": 404, + "Difficulty": 1, + "EN_US": "Amputation" + }, + { + "Id": 405, + "Difficulty": 1, + "EN_US": "Rage Quit" + }, + { + "Id": 407, + "Difficulty": 1, + "EN_US": "University" + }, + { + "Id": 408, + "Difficulty": 1, + "EN_US": "Committee" + }, + { + "Id": 410, + "Difficulty": 1, + "EN_US": "Hedge Trimmer" + }, + { + "Id": 411, + "Difficulty": 1, + "EN_US": "Thermostat" + }, + { + "Id": 412, + "Difficulty": 1, + "EN_US": "Duel" + }, + { + "Id": 413, + "Difficulty": 0, + "EN_US": "Shooting Star" + }, + { + "Id": 415, + "Difficulty": 0, + "EN_US": "Pogo Stick" + }, + { + "Id": 417, + "Difficulty": 0, + "EN_US": "Katniss Everdeen" + }, + { + "Id": 418, + "Difficulty": 0, + "EN_US": "Rocket Man" + }, + { + "Id": 419, + "Difficulty": 0, + "EN_US": "Monster Truck" + }, + { + "Id": 420, + "Difficulty": 0, + "EN_US": "King Kong" + }, + { + "Id": 422, + "Difficulty": 0, + "EN_US": "Vampire" + }, + { + "Id": 423, + "Difficulty": 0, + "EN_US": "Peter Pan" + }, + { + "Id": 424, + "Difficulty": 0, + "EN_US": "Captain Hook" + }, + { + "Id": 425, + "Difficulty": 0, + "EN_US": "Three Little Pigs" + }, + { + "Id": 426, + "Difficulty": 0, + "EN_US": "Big Bad Wolf" + }, + { + "Id": 427, + "Difficulty": 0, + "EN_US": "Ninja" + }, + { + "Id": 428, + "Difficulty": 0, + "EN_US": "Scarecrow" + }, + { + "Id": 429, + "Difficulty": 0, + "EN_US": "Tin Man" + }, + { + "Id": 430, + "Difficulty": 0, + "EN_US": "Devil" + }, + { + "Id": 432, + "Difficulty": 0, + "EN_US": "Darth Vader" + }, + { + "Id": 433, + "Difficulty": 0, + "EN_US": "Wolverine" + }, + { + "Id": 434, + "Difficulty": 0, + "EN_US": "Cyclops" + }, + { + "Id": 435, + "Difficulty": 0, + "EN_US": "Medusa" + }, + { + "Id": 436, + "Difficulty": 0, + "EN_US": "Drums" + }, + { + "Id": 437, + "Difficulty": 0, + "EN_US": "Dice" + }, + { + "Id": 438, + "Difficulty": 0, + "EN_US": "Police Officer" + }, + { + "Id": 439, + "Difficulty": 0, + "EN_US": "Singer" + }, + { + "Id": 440, + "Difficulty": 0, + "EN_US": "Judge" + }, + { + "Id": 442, + "Difficulty": 0, + "EN_US": "Gandalf" + }, + { + "Id": 443, + "Difficulty": 0, + "EN_US": "Ghost" + }, + { + "Id": 444, + "Difficulty": 0, + "EN_US": "Dragon" + }, + { + "Id": 445, + "Difficulty": 0, + "EN_US": "Santa Claus" + }, + { + "Id": 446, + "Difficulty": 0, + "EN_US": "Tooth Fairy" + }, + { + "Id": 447, + "Difficulty": 0, + "EN_US": "Hospital" + }, + { + "Id": 451, + "Difficulty": 0, + "EN_US": "Mickey Mouse" + }, + { + "Id": 452, + "Difficulty": 0, + "EN_US": "Cat in the Hat" + }, + { + "Id": 453, + "Difficulty": 0, + "EN_US": "Doormat" + }, + { + "Id": 454, + "Difficulty": 0, + "EN_US": "Windowsill" + }, + { + "Id": 455, + "Difficulty": 0, + "EN_US": "Trapeze" + }, + { + "Id": 456, + "Difficulty": 0, + "EN_US": "Unicycle" + }, + { + "Id": 457, + "Difficulty": 0, + "EN_US": "SCUBA" + }, + { + "Id": 458, + "Difficulty": 0, + "EN_US": "Snorkle" + }, + { + "Id": 460, + "Difficulty": 0, + "EN_US": "Tiger" + }, + { + "Id": 461, + "Difficulty": 0, + "EN_US": "Feather" + }, + { + "Id": 462, + "Difficulty": 0, + "EN_US": "Racket" + }, + { + "Id": 463, + "Difficulty": 0, + "EN_US": "Build" + }, + { + "Id": 464, + "Difficulty": 0, + "EN_US": "Weightlifter" + }, + { + "Id": 465, + "Difficulty": 0, + "EN_US": "Emoji" + }, + { + "Id": 466, + "Difficulty": 0, + "EN_US": "Plug" + }, + { + "Id": 467, + "Difficulty": 0, + "EN_US": "Lightning Bolt" + }, + { + "Id": 468, + "Difficulty": 0, + "EN_US": "Zeus" + }, + { + "Id": 469, + "Difficulty": 0, + "EN_US": "Caterpillar" + }, + { + "Id": 470, + "Difficulty": 0, + "EN_US": "Tornado" + }, + { + "Id": 471, + "Difficulty": 0, + "EN_US": "Cupid" + }, + { + "Id": 472, + "Difficulty": 0, + "EN_US": "Climb" + }, + { + "Id": 473, + "Difficulty": 0, + "EN_US": "Monkey Bars" + }, + { + "Id": 474, + "Difficulty": 0, + "EN_US": "Slide" + }, + { + "Id": 475, + "Difficulty": 0, + "EN_US": "Microscope" + }, + { + "Id": 477, + "Difficulty": 0, + "EN_US": "Breakfast" + }, + { + "Id": 478, + "Difficulty": 0, + "EN_US": "Parachute" + }, + { + "Id": 479, + "Difficulty": 0, + "EN_US": "Helicopter" + }, + { + "Id": 480, + "Difficulty": 0, + "EN_US": "Jump Rope" + }, + { + "Id": 481, + "Difficulty": 0, + "EN_US": "Beauty and the Beast" + }, + { + "Id": 482, + "Difficulty": 0, + "EN_US": "Mad Hatter" + }, + { + "Id": 483, + "Difficulty": 0, + "EN_US": "Queen of Hearts" + }, + { + "Id": 484, + "Difficulty": 0, + "EN_US": "Unicorn" + }, + { + "Id": 485, + "Difficulty": 0, + "EN_US": "Tow Truck" + }, + { + "Id": 486, + "Difficulty": 0, + "EN_US": "Fountain" + }, + { + "Id": 487, + "Difficulty": 0, + "EN_US": "Drop Anchor" + }, + { + "Id": 488, + "Difficulty": 0, + "EN_US": "Snowman" + }, + { + "Id": 489, + "Difficulty": 0, + "EN_US": "Moose" + }, + { + "Id": 490, + "Difficulty": 0, + "EN_US": "Gnome" + }, + { + "Id": 491, + "Difficulty": 0, + "EN_US": "Rainbow" + }, + { + "Id": 492, + "Difficulty": 0, + "EN_US": "Pork Chop" + }, + { + "Id": 493, + "Difficulty": 0, + "EN_US": "Jewelry" + }, + { + "Id": 494, + "Difficulty": 0, + "EN_US": "Throne" + }, + { + "Id": 495, + "Difficulty": 0, + "EN_US": "Witch" + }, + { + "Id": 496, + "Difficulty": 0, + "EN_US": "UFO" + }, + { + "Id": 497, + "Difficulty": 0, + "EN_US": "Three Musketeers" + }, + { + "Id": 498, + "Difficulty": 0, + "EN_US": "Pie" + }, + { + "Id": 499, + "Difficulty": 0, + "EN_US": "Brain" + }, + { + "Id": 500, + "Difficulty": 0, + "EN_US": "Snail" + }, + { + "Id": 501, + "Difficulty": 0, + "EN_US": "Robin Hood" + }, + { + "Id": 502, + "Difficulty": 0, + "EN_US": "Stegosaurus" + }, + { + "Id": 503, + "Difficulty": 0, + "EN_US": "Willy Wonka" + }, + { + "Id": 504, + "Difficulty": 0, + "EN_US": "Mechanic" + }, + { + "Id": 505, + "Difficulty": 0, + "EN_US": "Coconut" + }, + { + "Id": 506, + "Difficulty": 0, + "EN_US": "Cookie Monster" + }, + { + "Id": 507, + "Difficulty": 0, + "EN_US": "Giraffe" + }, + { + "Id": 508, + "Difficulty": 0, + "EN_US": "Skull" + }, + { + "Id": 509, + "Difficulty": 0, + "EN_US": "DJ" + }, + { + "Id": 510, + "Difficulty": 0, + "EN_US": "Joust" + }, + { + "Id": 511, + "Difficulty": 0, + "EN_US": "Telescope" + }, + { + "Id": 512, + "Difficulty": 0, + "EN_US": "Beehive" + }, + { + "Id": 513, + "Difficulty": 0, + "EN_US": "Mummy" + }, + { + "Id": 514, + "Difficulty": 0, + "EN_US": "Nail Polish" + }, + { + "Id": 515, + "Difficulty": 0, + "EN_US": "Scorpion" + }, + { + "Id": 516, + "Difficulty": 0, + "EN_US": "Swing" + }, + { + "Id": 517, + "Difficulty": 0, + "EN_US": "Boomerang" + }, + { + "Id": 518, + "Difficulty": 0, + "EN_US": "South America" + }, + { + "Id": 519, + "Difficulty": 0, + "EN_US": "Asia" + }, + { + "Id": 520, + "Difficulty": 0, + "EN_US": "Africa" + }, + { + "Id": 521, + "Difficulty": 0, + "EN_US": "Australia" + }, + { + "Id": 522, + "Difficulty": 0, + "EN_US": "Antarctica" + }, + { + "Id": 523, + "Difficulty": 0, + "EN_US": "Whale" + }, + { + "Id": 524, + "Difficulty": 0, + "EN_US": "Dolphin" + }, + { + "Id": 525, + "Difficulty": 0, + "EN_US": "Narwhal" + }, + { + "Id": 526, + "Difficulty": 0, + "EN_US": "Disc Golf" + }, + { + "Id": 527, + "Difficulty": 0, + "EN_US": "Plumber" + }, + { + "Id": 528, + "Difficulty": 0, + "EN_US": "Chef" + }, + { + "Id": 529, + "Difficulty": 0, + "EN_US": "Walking the Dog" + }, + { + "Id": 530, + "Difficulty": 0, + "EN_US": "Fairy Tale" + }, + { + "Id": 531, + "Difficulty": 0, + "EN_US": "Treadmill" + }, + { + "Id": 532, + "Difficulty": 0, + "EN_US": "Groundhog" + }, + { + "Id": 533, + "Difficulty": 0, + "EN_US": "Porcupine" + }, + { + "Id": 534, + "Difficulty": 0, + "EN_US": "Centaur" + }, + { + "Id": 535, + "Difficulty": 0, + "EN_US": "Soda" + }, + { + "Id": 536, + "Difficulty": 0, + "EN_US": "Cookies" + }, + { + "Id": 537, + "Difficulty": 0, + "EN_US": "Tea" + }, + { + "Id": 538, + "Difficulty": 0, + "EN_US": "Stove" + }, + { + "Id": 539, + "Difficulty": 0, + "EN_US": "Oven" + }, + { + "Id": 540, + "Difficulty": 0, + "EN_US": "Cooking" + }, + { + "Id": 541, + "Difficulty": 0, + "EN_US": "Soup" + }, + { + "Id": 542, + "Difficulty": 0, + "EN_US": "Kite" + }, + { + "Id": 543, + "Difficulty": 0, + "EN_US": "Trombone" + }, + { + "Id": 544, + "Difficulty": 0, + "EN_US": "Canoe" + }, + { + "Id": 545, + "Difficulty": 0, + "EN_US": "Hamburger" + }, + { + "Id": 546, + "Difficulty": 0, + "EN_US": "Pilot" + }, + { + "Id": 547, + "Difficulty": 0, + "EN_US": "Caesar" + }, + { + "Id": 548, + "Difficulty": 0, + "EN_US": "Humpty Dumpty" + }, + { + "Id": 549, + "Difficulty": 0, + "EN_US": "Bob Ross" + }, + { + "Id": 550, + "Difficulty": 0, + "EN_US": "Walrus" + }, + { + "Id": 551, + "Difficulty": 0, + "EN_US": "Pillow Fight" + }, + { + "Id": 552, + "Difficulty": 0, + "EN_US": "Remote" + }, + { + "Id": 553, + "Difficulty": 0, + "EN_US": "Hanger" + }, + { + "Id": 554, + "Difficulty": 0, + "EN_US": "Thermometer" + }, + { + "Id": 555, + "Difficulty": 0, + "EN_US": "Polka Dots" + }, + { + "Id": 556, + "Difficulty": 0, + "EN_US": "Contract" + }, + { + "Id": 557, + "Difficulty": 0, + "EN_US": "Signature" + }, + { + "Id": 558, + "Difficulty": 0, + "EN_US": "Surgeon" + }, + { + "Id": 559, + "Difficulty": 0, + "EN_US": "Sleeve" + }, + { + "Id": 560, + "Difficulty": 0, + "EN_US": "Stapler" + }, + { + "Id": 561, + "Difficulty": 0, + "EN_US": "Chicken Pox" + }, + { + "Id": 562, + "Difficulty": 0, + "EN_US": "Sherlock Holmes" + }, + { + "Id": 563, + "Difficulty": 0, + "EN_US": "Sponge" + }, + { + "Id": 564, + "Difficulty": 0, + "EN_US": "Umpire" + }, + { + "Id": 565, + "Difficulty": 0, + "EN_US": "Pearl" + }, + { + "Id": 566, + "Difficulty": 0, + "EN_US": "Sewing Machine" + }, + { + "Id": 567, + "Difficulty": 0, + "EN_US": "Freezer" + }, + { + "Id": 568, + "Difficulty": 0, + "EN_US": "Belly Button" + }, + { + "Id": 569, + "Difficulty": 0, + "EN_US": "Watermelon" + }, + { + "Id": 570, + "Difficulty": 0, + "EN_US": "Slot Machine" + }, + { + "Id": 571, + "Difficulty": 0, + "EN_US": "Wallet" + }, + { + "Id": 572, + "Difficulty": 0, + "EN_US": "Keyboard" + }, + { + "Id": 573, + "Difficulty": 0, + "EN_US": "Chimney" + }, + { + "Id": 574, + "Difficulty": 0, + "EN_US": "Smoke" + }, + { + "Id": 575, + "Difficulty": 0, + "EN_US": "Fleas" + }, + { + "Id": 576, + "Difficulty": 0, + "EN_US": "Banjo" + }, + { + "Id": 577, + "Difficulty": 0, + "EN_US": "Razor" + }, + { + "Id": 578, + "Difficulty": 0, + "EN_US": "Badminton" + }, + { + "Id": 579, + "Difficulty": 0, + "EN_US": "Stairs" + }, + { + "Id": 580, + "Difficulty": 0, + "EN_US": "Dial" + }, + { + "Id": 581, + "Difficulty": 0, + "EN_US": "Waterski" + }, + { + "Id": 582, + "Difficulty": 0, + "EN_US": "Lick" + }, + { + "Id": 584, + "Difficulty": 0, + "EN_US": "Yo-Yo" + }, + { + "Id": 585, + "Difficulty": 0, + "EN_US": "Bubble" + }, + { + "Id": 586, + "Difficulty": 0, + "EN_US": "High Heels" + }, + { + "Id": 587, + "Difficulty": 0, + "EN_US": "Echo" + }, + { + "Id": 588, + "Difficulty": 0, + "EN_US": "Bandage" + }, + { + "Id": 589, + "Difficulty": 0, + "EN_US": "Excalibur" + }, + { + "Id": 590, + "Difficulty": 0, + "EN_US": "Mosquito" + }, + { + "Id": 591, + "Difficulty": 0, + "EN_US": "Envelope" + }, + { + "Id": 592, + "Difficulty": 0, + "EN_US": "Bowl" + }, + { + "Id": 593, + "Difficulty": 0, + "EN_US": "Bowling Pin" + }, + { + "Id": 594, + "Difficulty": 0, + "EN_US": "Bowling Ball" + }, + { + "Id": 595, + "Difficulty": 0, + "EN_US": "Whistle" + }, + { + "Id": 596, + "Difficulty": 0, + "EN_US": "Diamond" + }, + { + "Id": 597, + "Difficulty": 0, + "EN_US": "Suspenders" + }, + { + "Id": 598, + "Difficulty": 0, + "EN_US": "Hairspray" + }, + { + "Id": 599, + "Difficulty": 0, + "EN_US": "Calendar" + }, + { + "Id": 600, + "Difficulty": 0, + "EN_US": "Monk" + }, + { + "Id": 601, + "Difficulty": 0, + "EN_US": "Screwdriver" + }, + { + "Id": 602, + "Difficulty": 0, + "EN_US": "Earring" + }, + { + "Id": 603, + "Difficulty": 0, + "EN_US": "Fireworks" + }, + { + "Id": 604, + "Difficulty": 0, + "EN_US": "Waffle" + }, + { + "Id": 605, + "Difficulty": 0, + "EN_US": "Bell" + }, + { + "Id": 606, + "Difficulty": 0, + "EN_US": "Drive" + }, + { + "Id": 607, + "Difficulty": 0, + "EN_US": "Collar" + }, + { + "Id": 608, + "Difficulty": 0, + "EN_US": "Money" + }, + { + "Id": 609, + "Difficulty": 0, + "EN_US": "Toe" + }, + { + "Id": 610, + "Difficulty": 0, + "EN_US": "Balance Beam" + }, + { + "Id": 611, + "Difficulty": 0, + "EN_US": "Treasure Chest" + }, + { + "Id": 612, + "Difficulty": 0, + "EN_US": "Sleeping Bag" + }, + { + "Id": 613, + "Difficulty": 0, + "EN_US": "Tent" + }, + { + "Id": 614, + "Difficulty": 0, + "EN_US": "Bib" + }, + { + "Id": 615, + "Difficulty": 0, + "EN_US": "Buffet" + }, + { + "Id": 616, + "Difficulty": 0, + "EN_US": "Crystal" + }, + { + "Id": 617, + "Difficulty": 0, + "EN_US": "Cymbals" + }, + { + "Id": 618, + "Difficulty": 0, + "EN_US": "Nametag" + }, + { + "Id": 619, + "Difficulty": 0, + "EN_US": "Beak" + }, + { + "Id": 620, + "Difficulty": 0, + "EN_US": "Pacifier" + }, + { + "Id": 621, + "Difficulty": 0, + "EN_US": "Umbrella" + }, + { + "Id": 622, + "Difficulty": 0, + "EN_US": "Shoe" + }, + { + "Id": 623, + "Difficulty": 0, + "EN_US": "Gorilla" + }, + { + "Id": 624, + "Difficulty": 0, + "EN_US": "Earmuffs" + }, + { + "Id": 625, + "Difficulty": 0, + "EN_US": "Idea" + }, + { + "Id": 626, + "Difficulty": 0, + "EN_US": "Finish Line" + }, + { + "Id": 627, + "Difficulty": 0, + "EN_US": "Angel" + }, + { + "Id": 628, + "Difficulty": 0, + "EN_US": "Turtleneck" + }, + { + "Id": 629, + "Difficulty": 0, + "EN_US": "Kiss" + }, + { + "Id": 630, + "Difficulty": 0, + "EN_US": "Chopsticks" + }, + { + "Id": 631, + "Difficulty": 0, + "EN_US": "Coffee" + }, + { + "Id": 632, + "Difficulty": 0, + "EN_US": "Whip" + }, + { + "Id": 633, + "Difficulty": 0, + "EN_US": "Apron" + }, + { + "Id": 634, + "Difficulty": 0, + "EN_US": "Mole" + }, + { + "Id": 635, + "Difficulty": 0, + "EN_US": "Pour" + }, + { + "Id": 636, + "Difficulty": 0, + "EN_US": "Marbles" + }, + { + "Id": 637, + "Difficulty": 0, + "EN_US": "Cork" + }, + { + "Id": 638, + "Difficulty": 0, + "EN_US": "Lollipop" + }, + { + "Id": 639, + "Difficulty": 0, + "EN_US": "Rat" + }, + { + "Id": 640, + "Difficulty": 0, + "EN_US": "Jackhammer" + }, + { + "Id": 641, + "Difficulty": 0, + "EN_US": "Bat" + }, + { + "Id": 642, + "Difficulty": 0, + "EN_US": "Binoculars" + }, + { + "Id": 643, + "Difficulty": 0, + "EN_US": "Tattoo" + }, + { + "Id": 644, + "Difficulty": 0, + "EN_US": "Cards" + }, + { + "Id": 645, + "Difficulty": 0, + "EN_US": "Bark" + }, + { + "Id": 646, + "Difficulty": 0, + "EN_US": "Eyelash" + }, + { + "Id": 647, + "Difficulty": 0, + "EN_US": "Sunglasses" + }, + { + "Id": 648, + "Difficulty": 0, + "EN_US": "Drill" + }, + { + "Id": 649, + "Difficulty": 0, + "EN_US": "Wash" + }, + { + "Id": 650, + "Difficulty": 0, + "EN_US": "Closet" + }, + { + "Id": 651, + "Difficulty": 0, + "EN_US": "Tennis" + }, + { + "Id": 652, + "Difficulty": 0, + "EN_US": "Scarf" + }, + { + "Id": 653, + "Difficulty": 0, + "EN_US": "Antenna" + }, + { + "Id": 654, + "Difficulty": 0, + "EN_US": "Aquarium" + }, + { + "Id": 655, + "Difficulty": 0, + "EN_US": "Refrigerator" + }, + { + "Id": 656, + "Difficulty": 0, + "EN_US": "Muscle" + }, + { + "Id": 657, + "Difficulty": 0, + "EN_US": "Iron" + }, + { + "Id": 658, + "Difficulty": 0, + "EN_US": "Film" + }, + { + "Id": 659, + "Difficulty": 0, + "EN_US": "Pipe" + }, + { + "Id": 660, + "Difficulty": 0, + "EN_US": "Blindfold" + }, + { + "Id": 661, + "Difficulty": 0, + "EN_US": "Stork" + }, + { + "Id": 662, + "Difficulty": 0, + "EN_US": "Deer" + }, + { + "Id": 663, + "Difficulty": 0, + "EN_US": "Bad Breath" + }, + { + "Id": 664, + "Difficulty": 0, + "EN_US": "Garden" + }, + { + "Id": 665, + "Difficulty": 0, + "EN_US": "Tug of War" + }, + { + "Id": 666, + "Difficulty": 0, + "EN_US": "Sandwich" + }, + { + "Id": 667, + "Difficulty": 0, + "EN_US": "Glove" + }, + { + "Id": 668, + "Difficulty": 0, + "EN_US": "Fence" + }, + { + "Id": 669, + "Difficulty": 0, + "EN_US": "Heartburn" + }, + { + "Id": 670, + "Difficulty": 0, + "EN_US": "Moustache" + }, + { + "Id": 671, + "Difficulty": 0, + "EN_US": "Hose" + }, + { + "Id": 672, + "Difficulty": 0, + "EN_US": "Hypnotize" + }, + { + "Id": 673, + "Difficulty": 0, + "EN_US": "Gong" + }, + { + "Id": 674, + "Difficulty": 0, + "EN_US": "Hammer" + }, + { + "Id": 675, + "Difficulty": 0, + "EN_US": "Mailbox" + }, + { + "Id": 676, + "Difficulty": 0, + "EN_US": "Luggage" + }, + { + "Id": 677, + "Difficulty": 0, + "EN_US": "Carrot" + }, + { + "Id": 678, + "Difficulty": 0, + "EN_US": "Seatbelt" + }, + { + "Id": 679, + "Difficulty": 0, + "EN_US": "Clown" + }, + { + "Id": 680, + "Difficulty": 0, + "EN_US": "Slingshot" + }, + { + "Id": 681, + "Difficulty": 0, + "EN_US": "Jukebox" + }, + { + "Id": 682, + "Difficulty": 0, + "EN_US": "Skeleton" + }, + { + "Id": 683, + "Difficulty": 0, + "EN_US": "Bait" + }, + { + "Id": 684, + "Difficulty": 0, + "EN_US": "Ribbon" + }, + { + "Id": 685, + "Difficulty": 0, + "EN_US": "Attic" + }, + { + "Id": 686, + "Difficulty": 0, + "EN_US": "Branch" + }, + { + "Id": 687, + "Difficulty": 0, + "EN_US": "Candy Cane" + }, + { + "Id": 688, + "Difficulty": 0, + "EN_US": "Rug" + }, + { + "Id": 689, + "Difficulty": 0, + "EN_US": "Hourglass" + }, + { + "Id": 690, + "Difficulty": 0, + "EN_US": "Stethoscope" + }, + { + "Id": 691, + "Difficulty": 0, + "EN_US": "Potholder" + }, + { + "Id": 692, + "Difficulty": 0, + "EN_US": "Pumpkin" + }, + { + "Id": 693, + "Difficulty": 0, + "EN_US": "Lasso" + }, + { + "Id": 694, + "Difficulty": 0, + "EN_US": "Cannon" + }, + { + "Id": 695, + "Difficulty": 0, + "EN_US": "Harp" + }, + { + "Id": 696, + "Difficulty": 0, + "EN_US": "Tambourine" + }, + { + "Id": 697, + "Difficulty": 0, + "EN_US": "Poison Ivy" + }, + { + "Id": 698, + "Difficulty": 0, + "EN_US": "Snowflake" + }, + { + "Id": 699, + "Difficulty": 0, + "EN_US": "Punching Bag" + }, + { + "Id": 700, + "Difficulty": 0, + "EN_US": "Puzzle" + }, + { + "Id": 701, + "Difficulty": 0, + "EN_US": "Broom" + }, + { + "Id": 702, + "Difficulty": 0, + "EN_US": "Earth" + }, + { + "Id": 703, + "Difficulty": 0, + "EN_US": "Sky" + }, + { + "Id": 704, + "Difficulty": 0, + "EN_US": "Statue" + }, + { + "Id": 705, + "Difficulty": 0, + "EN_US": "Doll" + }, + { + "Id": 706, + "Difficulty": 0, + "EN_US": "Necklace" + }, + { + "Id": 707, + "Difficulty": 0, + "EN_US": "Popcorn" + }, + { + "Id": 708, + "Difficulty": 0, + "EN_US": "Lock" + }, + { + "Id": 709, + "Difficulty": 0, + "EN_US": "Sofa" + }, + { + "Id": 710, + "Difficulty": 0, + "EN_US": "Magnifying Glass" + }, + { + "Id": 711, + "Difficulty": 0, + "EN_US": "Surf" + }, + { + "Id": 712, + "Difficulty": 0, + "EN_US": "Magic" + }, + { + "Id": 713, + "Difficulty": 0, + "EN_US": "Walkie-Talkie" + }, + { + "Id": 714, + "Difficulty": 0, + "EN_US": "Floss" + }, + { + "Id": 715, + "Difficulty": 0, + "EN_US": "Knife" + }, + { + "Id": 716, + "Difficulty": 0, + "EN_US": "Bread" + }, + { + "Id": 717, + "Difficulty": 0, + "EN_US": "Thumbtack" + }, + { + "Id": 718, + "Difficulty": 0, + "EN_US": "Lighter" + }, + { + "Id": 719, + "Difficulty": 0, + "EN_US": "Teapot" + }, + { + "Id": 720, + "Difficulty": 0, + "EN_US": "Curls" + }, + { + "Id": 721, + "Difficulty": 0, + "EN_US": "Periscope" + }, + { + "Id": 722, + "Difficulty": 0, + "EN_US": "Fingerprint" + }, + { + "Id": 723, + "Difficulty": 0, + "EN_US": "Mask" + }, + { + "Id": 724, + "Difficulty": 0, + "EN_US": "Tape Measure" + }, + { + "Id": 725, + "Difficulty": 0, + "EN_US": "Scrub" + }, + { + "Id": 726, + "Difficulty": 0, + "EN_US": "Motorcycle" + }, + { + "Id": 727, + "Difficulty": 0, + "EN_US": "Fur" + }, + { + "Id": 728, + "Difficulty": 0, + "EN_US": "Toothpaste" + }, + { + "Id": 729, + "Difficulty": 0, + "EN_US": "Stilts" + }, + { + "Id": 730, + "Difficulty": 0, + "EN_US": "Straw" + }, + { + "Id": 731, + "Difficulty": 0, + "EN_US": "Doorknob" + }, + { + "Id": 732, + "Difficulty": 0, + "EN_US": "Train" + }, + { + "Id": 733, + "Difficulty": 0, + "EN_US": "Ukulele" + }, + { + "Id": 734, + "Difficulty": 0, + "EN_US": "Nerd" + }, + { + "Id": 735, + "Difficulty": 0, + "EN_US": "Bucket" + }, + { + "Id": 736, + "Difficulty": 0, + "EN_US": "Conductor" + }, + { + "Id": 737, + "Difficulty": 0, + "EN_US": "Palace" + }, + { + "Id": 738, + "Difficulty": 0, + "EN_US": "Giant" + }, + { + "Id": 739, + "Difficulty": 0, + "EN_US": "Goblin" + }, + { + "Id": 740, + "Difficulty": 0, + "EN_US": "Ketchup" + }, + { + "Id": 741, + "Difficulty": 0, + "EN_US": "Taxi" + }, + { + "Id": 742, + "Difficulty": 0, + "EN_US": "Gravestone" + }, + { + "Id": 743, + "Difficulty": 0, + "EN_US": "Croquet" + }, + { + "Id": 744, + "Difficulty": 0, + "EN_US": "Tarzan" + }, + { + "Id": 745, + "Difficulty": 0, + "EN_US": "Ballerina" + }, + { + "Id": 746, + "Difficulty": 0, + "EN_US": "Volleyball" + }, + { + "Id": 747, + "Difficulty": 0, + "EN_US": "Braces" + }, + { + "Id": 748, + "Difficulty": 0, + "EN_US": "Fork" + }, + { + "Id": 749, + "Difficulty": 0, + "EN_US": "Bubble Gum" + }, + { + "Id": 750, + "Difficulty": 0, + "EN_US": "Worm" + }, + { + "Id": 751, + "Difficulty": 0, + "EN_US": "Ladder" + }, + { + "Id": 752, + "Difficulty": 0, + "EN_US": "Dynamite" + }, + { + "Id": 753, + "Difficulty": 0, + "EN_US": "Flashlight" + }, + { + "Id": 754, + "Difficulty": 0, + "EN_US": "Basement" + }, + { + "Id": 755, + "Difficulty": 0, + "EN_US": "Blanket" + }, + { + "Id": 756, + "Difficulty": 0, + "EN_US": "Tire" + }, + { + "Id": 757, + "Difficulty": 0, + "EN_US": "Whiskers" + }, + { + "Id": 758, + "Difficulty": 0, + "EN_US": "Freckle" + }, + { + "Id": 759, + "Difficulty": 0, + "EN_US": "Backpack" + }, + { + "Id": 760, + "Difficulty": 0, + "EN_US": "Candle" + }, + { + "Id": 761, + "Difficulty": 0, + "EN_US": "Jockey" + }, + { + "Id": 762, + "Difficulty": 0, + "EN_US": "Stamp" + }, + { + "Id": 763, + "Difficulty": 0, + "EN_US": "Television" + }, + { + "Id": 764, + "Difficulty": 0, + "EN_US": "Xylophone" + }, + { + "Id": 765, + "Difficulty": 0, + "EN_US": "Helmet" + }, + { + "Id": 766, + "Difficulty": 0, + "EN_US": "Nightmare" + }, + { + "Id": 767, + "Difficulty": 0, + "EN_US": "Map" + }, + { + "Id": 768, + "Difficulty": 0, + "EN_US": "Accordion" + }, + { + "Id": 770, + "Difficulty": 0, + "EN_US": "Butter" + }, + { + "Id": 771, + "Difficulty": 0, + "EN_US": "Tripod" + }, + { + "Id": 772, + "Difficulty": 0, + "EN_US": "Spoon" + }, + { + "Id": 773, + "Difficulty": 0, + "EN_US": "Microphone" + }, + { + "Id": 774, + "Difficulty": 0, + "EN_US": "Mascara" + }, + { + "Id": 775, + "Difficulty": 0, + "EN_US": "Sideburns" + }, + { + "Id": 776, + "Difficulty": 0, + "EN_US": "Wheelchair" + }, + { + "Id": 777, + "Difficulty": 0, + "EN_US": "Pinwheel" + }, + { + "Id": 778, + "Difficulty": 0, + "EN_US": "Badge" + }, + { + "Id": 779, + "Difficulty": 0, + "EN_US": "Brick" + }, + { + "Id": 780, + "Difficulty": 0, + "EN_US": "Trash Can" + }, + { + "Id": 781, + "Difficulty": 0, + "EN_US": "Hydrant" + }, + { + "Id": 782, + "Difficulty": 0, + "EN_US": "Axe" + }, + { + "Id": 783, + "Difficulty": 0, + "EN_US": "Swan" + }, + { + "Id": 784, + "Difficulty": 0, + "EN_US": "Blood" + }, + { + "Id": 785, + "Difficulty": 0, + "EN_US": "Electricity" + }, + { + "Id": 786, + "Difficulty": 0, + "EN_US": "Caveman" + }, + { + "Id": 787, + "Difficulty": 0, + "EN_US": "Camel" + }, + { + "Id": 788, + "Difficulty": 0, + "EN_US": "Santa" + }, + { + "Id": 789, + "Difficulty": 0, + "EN_US": "Shooting Star" + }, + { + "Id": 790, + "Difficulty": 0, + "EN_US": "Gift" + }, + { + "Id": 794, + "Difficulty": 0, + "EN_US": "Baseball" + }, + { + "Id": 795, + "Difficulty": 0, + "EN_US": "Strawberry" + }, + { + "Id": 797, + "Difficulty": 0, + "EN_US": "Piano" + }, + { + "Id": 798, + "Difficulty": 1, + "EN_US": "Paparazzi" + }, + { + "Id": 799, + "Difficulty": 0, + "EN_US": "Tricycle" + }, + { + "Id": 800, + "Difficulty": 0, + "EN_US": "Fire Truck" + }, + { + "Id": 801, + "Difficulty": 0, + "EN_US": "Ambulance" + }, + { + "Id": 802, + "Difficulty": 0, + "EN_US": "Crane" + }, + { + "Id": 803, + "Difficulty": 0, + "EN_US": "C3PO" + }, + { + "Id": 804, + "Difficulty": 0, + "EN_US": "USS Enterprise" + }, + { + "Id": 805, + "Difficulty": 0, + "EN_US": "Spock" + }, + { + "Id": 806, + "Difficulty": 0, + "EN_US": "Captain America" + }, + { + "Id": 807, + "Difficulty": 0, + "EN_US": "The Hulk" + }, + { + "Id": 808, + "Difficulty": 0, + "EN_US": "Hawkeye" + }, + { + "Id": 809, + "Difficulty": 0, + "EN_US": "Thor" + }, + { + "Id": 810, + "Difficulty": 0, + "EN_US": "Iron Man" + }, + { + "Id": 812, + "Difficulty": 0, + "EN_US": "Race Car" + }, + { + "Id": 813, + "Difficulty": 0, + "EN_US": "Basketball Hoop" + }, + { + "Id": 814, + "Difficulty": 0, + "EN_US": "Gazebo" + }, + { + "Id": 815, + "Difficulty": 0, + "EN_US": "Waterfall" + }, + { + "Id": 816, + "Difficulty": 0, + "EN_US": "Armadillo" + }, + { + "Id": 817, + "Difficulty": 0, + "EN_US": "Anteater" + }, + { + "Id": 818, + "Difficulty": 0, + "EN_US": "Elbow" + }, + { + "Id": 819, + "Difficulty": 0, + "EN_US": "Knee" + }, + { + "Id": 820, + "Difficulty": 0, + "EN_US": "Cut" + }, + { + "Id": 821, + "Difficulty": 0, + "EN_US": "Top" + }, + { + "Id": 822, + "Difficulty": 0, + "EN_US": "Maze" + }, + { + "Id": 823, + "Difficulty": 0, + "EN_US": "Light Bulb" + }, + { + "Id": 824, + "Difficulty": 0, + "EN_US": "Kermit the Frog" + }, + { + "Id": 825, + "Difficulty": 0, + "EN_US": "North America" + }, + { + "Id": 826, + "Difficulty": 0, + "EN_US": "Europe" + }, + { + "Id": 827, + "Difficulty": 0, + "EN_US": "Construction Worker" + }, + { + "Id": 828, + "Difficulty": 0, + "EN_US": "Doctor" + }, + { + "Id": 829, + "Difficulty": 0, + "EN_US": "Cheetah" + }, + { + "Id": 830, + "Difficulty": 0, + "EN_US": "Ram" + }, + { + "Id": 831, + "Difficulty": 0, + "EN_US": "Robe" + }, + { + "Id": 832, + "Difficulty": 0, + "EN_US": "Peas" + }, + { + "Id": 833, + "Difficulty": 0, + "EN_US": "Bow Tie" + }, + { + "Id": 834, + "Difficulty": 0, + "EN_US": "Samurai" + }, + { + "Id": 835, + "Difficulty": 0, + "EN_US": "Viking" + }, + { + "Id": 836, + "Difficulty": 0, + "EN_US": "Lighthouse" + }, + { + "Id": 837, + "Difficulty": 0, + "EN_US": "Sunscreen" + }, + { + "Id": 838, + "Difficulty": 0, + "EN_US": "Archer" + }, + { + "Id": 839, + "Difficulty": 0, + "EN_US": "Leaf" + }, + { + "Id": 840, + "Difficulty": 0, + "EN_US": "Acorn" + }, + { + "Id": 841, + "Difficulty": 0, + "EN_US": "Squirrel" + }, + { + "Id": 842, + "Difficulty": 0, + "EN_US": "Meatball" + }, + { + "Id": 843, + "Difficulty": 0, + "EN_US": "Eyebrow" + }, + { + "Id": 844, + "Difficulty": 0, + "EN_US": "Eye" + }, + { + "Id": 845, + "Difficulty": 0, + "EN_US": "Dish" + }, + { + "Id": 846, + "Difficulty": 0, + "EN_US": "Frog" + }, + { + "Id": 847, + "Difficulty": 0, + "EN_US": "Lizard" + }, + { + "Id": 848, + "Difficulty": 0, + "EN_US": "Game of Thrones" + }, + { + "Id": 849, + "Difficulty": 0, + "EN_US": "Hulk" + }, + { + "Id": 850, + "Difficulty": 0, + "EN_US": "Black Panther" + }, + { + "Id": 851, + "Difficulty": 0, + "EN_US": "Soccer" + }, + { + "Id": 852, + "Difficulty": 0, + "EN_US": "Tetris" + }, + { + "Id": 853, + "Difficulty": 0, + "EN_US": "Zelda" + }, + { + "Id": 854, + "Difficulty": 0, + "EN_US": "Trampoline" + }, + { + "Id": 855, + "Difficulty": 0, + "EN_US": "Roller Coaster" + }, + { + "Id": 856, + "Difficulty": 0, + "EN_US": "Ferris Wheel" + }, + { + "Id": 857, + "Difficulty": 0, + "EN_US": "Pin" + }, + { + "Id": 858, + "Difficulty": 0, + "EN_US": "Baker" + }, + { + "Id": 859, + "Difficulty": 0, + "EN_US": "Restaurant" + }, + { + "Id": 860, + "Difficulty": 0, + "EN_US": "Bank" + }, + { + "Id": 861, + "Difficulty": 0, + "EN_US": "School" + }, + { + "Id": 862, + "Difficulty": 0, + "EN_US": "Rocket" + }, + { + "Id": 863, + "Difficulty": 0, + "EN_US": "Jupiter" + }, + { + "Id": 864, + "Difficulty": 0, + "EN_US": "Eclipse" + }, + { + "Id": 865, + "Difficulty": 0, + "EN_US": "Moon" + }, + { + "Id": 866, + "Difficulty": 0, + "EN_US": "Sun" + }, + { + "Id": 867, + "Difficulty": 0, + "EN_US": "Comet" + }, + { + "Id": 868, + "Difficulty": 0, + "EN_US": "VR" + }, + { + "Id": 869, + "Difficulty": 0, + "EN_US": "Fidget Spinner" + }, + { + "Id": 870, + "Difficulty": 0, + "EN_US": "Laser" + }, + { + "Id": 871, + "Difficulty": 0, + "EN_US": "Elf" + }, + { + "Id": 872, + "Difficulty": 0, + "EN_US": "Zombie" + }, + { + "Id": 873, + "Difficulty": 0, + "EN_US": "Pegasus" + }, + { + "Id": 874, + "Difficulty": 0, + "EN_US": "Noodles" + }, + { + "Id": 875, + "Difficulty": 0, + "EN_US": "French Fries" + }, + { + "Id": 876, + "Difficulty": 0, + "EN_US": "Break" + }, + { + "Id": 877, + "Difficulty": 0, + "EN_US": "Smash" + }, + { + "Id": 878, + "Difficulty": 0, + "EN_US": "Pop" + }, + { + "Id": 879, + "Difficulty": 0, + "EN_US": "Orange" + }, + { + "Id": 880, + "Difficulty": 0, + "EN_US": "Pear" + }, + { + "Id": 881, + "Difficulty": 0, + "EN_US": "Potato" + }, + { + "Id": 882, + "Difficulty": 0, + "EN_US": "Tomato" + }, + { + "Id": 883, + "Difficulty": 0, + "EN_US": "Broccoli" + }, + { + "Id": 884, + "Difficulty": 0, + "EN_US": "Eggplant" + }, + { + "Id": 885, + "Difficulty": 0, + "EN_US": "Donut" + }, + { + "Id": 886, + "Difficulty": 0, + "EN_US": "Bagel" + }, + { + "Id": 887, + "Difficulty": 0, + "EN_US": "Seed" + }, + { + "Id": 888, + "Difficulty": 0, + "EN_US": "Salad" + }, + { + "Id": 889, + "Difficulty": 0, + "EN_US": "Fried Chicken" + }, + { + "Id": 890, + "Difficulty": 0, + "EN_US": "Bacon" + }, + { + "Id": 891, + "Difficulty": 0, + "EN_US": "Seal" + }, + { + "Id": 892, + "Difficulty": 0, + "EN_US": "Polar Bear" + }, + { + "Id": 893, + "Difficulty": 0, + "EN_US": "Centipede" + }, + { + "Id": 894, + "Difficulty": 0, + "EN_US": "Ladybug" + }, + { + "Id": 895, + "Difficulty": 0, + "EN_US": "Grasshopper" + }, + { + "Id": 896, + "Difficulty": 0, + "EN_US": "Shrimp" + }, + { + "Id": 897, + "Difficulty": 0, + "EN_US": "Electric Eel" + }, + { + "Id": 898, + "Difficulty": 0, + "EN_US": "Lobster" + }, + { + "Id": 899, + "Difficulty": 0, + "EN_US": "Hammerhead Shark" + }, + { + "Id": 900, + "Difficulty": 0, + "EN_US": "Peacock" + }, + { + "Id": 901, + "Difficulty": 0, + "EN_US": "Dove" + }, + { + "Id": 902, + "Difficulty": 0, + "EN_US": "Raven" + }, + { + "Id": 903, + "Difficulty": 0, + "EN_US": "Rattlesnake" + }, + { + "Id": 904, + "Difficulty": 0, + "EN_US": "Cobra" + }, + { + "Id": 905, + "Difficulty": 0, + "EN_US": "Fox" + }, + { + "Id": 906, + "Difficulty": 0, + "EN_US": "Frozen" + }, + { + "Id": 907, + "Difficulty": 0, + "EN_US": "Lion" + }, + { + "Id": 908, + "Difficulty": 0, + "EN_US": "Actor" + }, + { + "Id": 909, + "Difficulty": 0, + "EN_US": "Add" + }, + { + "Id": 910, + "Difficulty": 0, + "EN_US": "Alice in Wonderland" + }, + { + "Id": 911, + "Difficulty": 0, + "EN_US": "Anchor" + }, + { + "Id": 912, + "Difficulty": 0, + "EN_US": "Army" + }, + { + "Id": 913, + "Difficulty": 0, + "EN_US": "Art" + }, + { + "Id": 914, + "Difficulty": 0, + "EN_US": "Astronaut" + }, + { + "Id": 915, + "Difficulty": 0, + "EN_US": "Ball" + }, + { + "Id": 916, + "Difficulty": 0, + "EN_US": "Ballet" + }, + { + "Id": 917, + "Difficulty": 0, + "EN_US": "Banana" + }, + { + "Id": 918, + "Difficulty": 0, + "EN_US": "Barbeque" + }, + { + "Id": 919, + "Difficulty": 0, + "EN_US": "Barbie" + }, + { + "Id": 920, + "Difficulty": 0, + "EN_US": "Barn" + }, + { + "Id": 921, + "Difficulty": 0, + "EN_US": "Bart Simpson" + }, + { + "Id": 922, + "Difficulty": 0, + "EN_US": "Basket" + }, + { + "Id": 923, + "Difficulty": 0, + "EN_US": "Battery" + }, + { + "Id": 924, + "Difficulty": 0, + "EN_US": "Beach" + }, + { + "Id": 925, + "Difficulty": 0, + "EN_US": "Beard" + }, + { + "Id": 926, + "Difficulty": 0, + "EN_US": "Bedbug" + }, + { + "Id": 927, + "Difficulty": 0, + "EN_US": "Beetle" + }, + { + "Id": 928, + "Difficulty": 0, + "EN_US": "Big Dipper" + }, + { + "Id": 929, + "Difficulty": 0, + "EN_US": "Bikini" + }, + { + "Id": 930, + "Difficulty": 0, + "EN_US": "Bite" + }, + { + "Id": 931, + "Difficulty": 0, + "EN_US": "Blacksmith" + }, + { + "Id": 932, + "Difficulty": 0, + "EN_US": "Blimp" + }, + { + "Id": 933, + "Difficulty": 0, + "EN_US": "Block" + }, + { + "Id": 934, + "Difficulty": 0, + "EN_US": "Bluetooth" + }, + { + "Id": 935, + "Difficulty": 0, + "EN_US": "Board Game" + }, + { + "Id": 936, + "Difficulty": 0, + "EN_US": "Bone" + }, + { + "Id": 937, + "Difficulty": 0, + "EN_US": "Bonnet" + }, + { + "Id": 938, + "Difficulty": 0, + "EN_US": "Bookend" + }, + { + "Id": 939, + "Difficulty": 0, + "EN_US": "Bottle" + }, + { + "Id": 940, + "Difficulty": 0, + "EN_US": "Bounce" + }, + { + "Id": 941, + "Difficulty": 0, + "EN_US": "Bow" + }, + { + "Id": 942, + "Difficulty": 0, + "EN_US": "Box" + }, + { + "Id": 943, + "Difficulty": 0, + "EN_US": "Boyfriend" + }, + { + "Id": 944, + "Difficulty": 0, + "EN_US": "Bugs Bunny" + }, + { + "Id": 945, + "Difficulty": 0, + "EN_US": "Bunk Bed" + }, + { + "Id": 946, + "Difficulty": 0, + "EN_US": "Burrito" + }, + { + "Id": 947, + "Difficulty": 0, + "EN_US": "Butcher" + }, + { + "Id": 948, + "Difficulty": 0, + "EN_US": "Button" + }, + { + "Id": 949, + "Difficulty": 0, + "EN_US": "Buzz Lightyear" + }, + { + "Id": 950, + "Difficulty": 0, + "EN_US": "Camp" + }, + { + "Id": 951, + "Difficulty": 0, + "EN_US": "Carpenter" + }, + { + "Id": 952, + "Difficulty": 0, + "EN_US": "Carry" + }, + { + "Id": 953, + "Difficulty": 0, + "EN_US": "Cashier" + }, + { + "Id": 954, + "Difficulty": 0, + "EN_US": "CD" + }, + { + "Id": 955, + "Difficulty": 0, + "EN_US": "Cell" + }, + { + "Id": 956, + "Difficulty": 0, + "EN_US": "Chain" + }, + { + "Id": 957, + "Difficulty": 0, + "EN_US": "Chandelier" + }, + { + "Id": 958, + "Difficulty": 0, + "EN_US": "Chart" + }, + { + "Id": 959, + "Difficulty": 0, + "EN_US": "Cheeseburger" + }, + { + "Id": 960, + "Difficulty": 0, + "EN_US": "Chemistry" + }, + { + "Id": 961, + "Difficulty": 0, + "EN_US": "Chocolate Chip" + }, + { + "Id": 962, + "Difficulty": 0, + "EN_US": "Cinderella" + }, + { + "Id": 963, + "Difficulty": 0, + "EN_US": "Circuit" + }, + { + "Id": 964, + "Difficulty": 0, + "EN_US": "Circus" + }, + { + "Id": 965, + "Difficulty": 0, + "EN_US": "Close" + }, + { + "Id": 966, + "Difficulty": 0, + "EN_US": "Cloud" + }, + { + "Id": 967, + "Difficulty": 0, + "EN_US": "Coat" + }, + { + "Id": 968, + "Difficulty": 0, + "EN_US": "Cockroach" + }, + { + "Id": 969, + "Difficulty": 0, + "EN_US": "Color" + }, + { + "Id": 970, + "Difficulty": 0, + "EN_US": "Compass" + }, + { + "Id": 971, + "Difficulty": 0, + "EN_US": "Constellation" + }, + { + "Id": 972, + "Difficulty": 0, + "EN_US": "Copy" + }, + { + "Id": 973, + "Difficulty": 0, + "EN_US": "Corndog" + }, + { + "Id": 974, + "Difficulty": 0, + "EN_US": "Count Dracula" + }, + { + "Id": 975, + "Difficulty": 0, + "EN_US": "Country" + }, + { + "Id": 976, + "Difficulty": 0, + "EN_US": "Cucumber" + }, + { + "Id": 977, + "Difficulty": 0, + "EN_US": "Cupcake" + }, + { + "Id": 978, + "Difficulty": 0, + "EN_US": "Curtains" + }, + { + "Id": 979, + "Difficulty": 0, + "EN_US": "Cymbal" + }, + { + "Id": 980, + "Difficulty": 0, + "EN_US": "Daffy Duck" + }, + { + "Id": 981, + "Difficulty": 0, + "EN_US": "Dance" + }, + { + "Id": 982, + "Difficulty": 0, + "EN_US": "Dimple" + }, + { + "Id": 983, + "Difficulty": 0, + "EN_US": "Dinner" + }, + { + "Id": 984, + "Difficulty": 0, + "EN_US": "Dinosaur" + }, + { + "Id": 985, + "Difficulty": 0, + "EN_US": "Disk" + }, + { + "Id": 986, + "Difficulty": 0, + "EN_US": "Dodge" + }, + { + "Id": 987, + "Difficulty": 0, + "EN_US": "Door Knob" + }, + { + "Id": 988, + "Difficulty": 0, + "EN_US": "Dragonfly" + }, + { + "Id": 989, + "Difficulty": 0, + "EN_US": "Drain" + }, + { + "Id": 990, + "Difficulty": 0, + "EN_US": "Drawbridge" + }, + { + "Id": 991, + "Difficulty": 0, + "EN_US": "Dress" + }, + { + "Id": 992, + "Difficulty": 0, + "EN_US": "Duck" + }, + { + "Id": 993, + "Difficulty": 0, + "EN_US": "Ears" + }, + { + "Id": 994, + "Difficulty": 0, + "EN_US": "Edge" + }, + { + "Id": 995, + "Difficulty": 0, + "EN_US": "Eel" + }, + { + "Id": 996, + "Difficulty": 0, + "EN_US": "Eeyore" + }, + { + "Id": 997, + "Difficulty": 0, + "EN_US": "Eiffel Tower" + }, + { + "Id": 998, + "Difficulty": 0, + "EN_US": "Einstein" + }, + { + "Id": 999, + "Difficulty": 0, + "EN_US": "Elmo" + }, + { + "Id": 1000, + "Difficulty": 0, + "EN_US": "Fall" + }, + { + "Id": 1001, + "Difficulty": 0, + "EN_US": "Family" + }, + { + "Id": 1002, + "Difficulty": 0, + "EN_US": "Faucet" + }, + { + "Id": 1003, + "Difficulty": 0, + "EN_US": "Feast" + }, + { + "Id": 1004, + "Difficulty": 0, + "EN_US": "Finger" + }, + { + "Id": 1005, + "Difficulty": 0, + "EN_US": "Fire" + }, + { + "Id": 1006, + "Difficulty": 0, + "EN_US": "Fire Hydrant" + }, + { + "Id": 1007, + "Difficulty": 0, + "EN_US": "Fireplace" + }, + { + "Id": 1008, + "Difficulty": 0, + "EN_US": "Fish" + }, + { + "Id": 1009, + "Difficulty": 0, + "EN_US": "Fishing Pole" + }, + { + "Id": 1010, + "Difficulty": 0, + "EN_US": "Flag Pole" + }, + { + "Id": 1011, + "Difficulty": 0, + "EN_US": "Flood" + }, + { + "Id": 1012, + "Difficulty": 0, + "EN_US": "Flute" + }, + { + "Id": 1013, + "Difficulty": 0, + "EN_US": "Foot" + }, + { + "Id": 1014, + "Difficulty": 0, + "EN_US": "Frame" + }, + { + "Id": 1015, + "Difficulty": 0, + "EN_US": "Frisbee" + }, + { + "Id": 1016, + "Difficulty": 0, + "EN_US": "Fruit" + }, + { + "Id": 1017, + "Difficulty": 0, + "EN_US": "Full Moon" + }, + { + "Id": 1018, + "Difficulty": 0, + "EN_US": "Funnel" + }, + { + "Id": 1019, + "Difficulty": 0, + "EN_US": "Galaxy" + }, + { + "Id": 1020, + "Difficulty": 0, + "EN_US": "Game Boy" + }, + { + "Id": 1021, + "Difficulty": 0, + "EN_US": "Garbage" + }, + { + "Id": 1022, + "Difficulty": 0, + "EN_US": "Gate" + }, + { + "Id": 1023, + "Difficulty": 0, + "EN_US": "Ghostbusters" + }, + { + "Id": 1024, + "Difficulty": 0, + "EN_US": "Girlfriend" + }, + { + "Id": 1025, + "Difficulty": 0, + "EN_US": "Glue" + }, + { + "Id": 1026, + "Difficulty": 0, + "EN_US": "Goal" + }, + { + "Id": 1027, + "Difficulty": 0, + "EN_US": "Goldfish" + }, + { + "Id": 1028, + "Difficulty": 0, + "EN_US": "Goofy" + }, + { + "Id": 1029, + "Difficulty": 0, + "EN_US": "Graduation" + }, + { + "Id": 1030, + "Difficulty": 0, + "EN_US": "Grandma" + }, + { + "Id": 1031, + "Difficulty": 0, + "EN_US": "Graph" + }, + { + "Id": 1032, + "Difficulty": 0, + "EN_US": "Ground" + }, + { + "Id": 1033, + "Difficulty": 0, + "EN_US": "Hair" + }, + { + "Id": 1034, + "Difficulty": 0, + "EN_US": "Haircut" + }, + { + "Id": 1035, + "Difficulty": 0, + "EN_US": "Halo" + }, + { + "Id": 1036, + "Difficulty": 0, + "EN_US": "Headband" + }, + { + "Id": 1037, + "Difficulty": 0, + "EN_US": "Highchair" + }, + { + "Id": 1038, + "Difficulty": 0, + "EN_US": "Hockey" + }, + { + "Id": 1039, + "Difficulty": 0, + "EN_US": "Honey" + }, + { + "Id": 1040, + "Difficulty": 0, + "EN_US": "Horns" + }, + { + "Id": 1041, + "Difficulty": 0, + "EN_US": "Horse" + }, + { + "Id": 1042, + "Difficulty": 0, + "EN_US": "Hour" + }, + { + "Id": 1043, + "Difficulty": 0, + "EN_US": "House" + }, + { + "Id": 1044, + "Difficulty": 0, + "EN_US": "Houseboat" + }, + { + "Id": 1045, + "Difficulty": 0, + "EN_US": "Hug" + }, + { + "Id": 1046, + "Difficulty": 0, + "EN_US": "Ice" + }, + { + "Id": 1047, + "Difficulty": 0, + "EN_US": "Ice Cube" + }, + { + "Id": 1048, + "Difficulty": 0, + "EN_US": "Ice Fishing" + }, + { + "Id": 1049, + "Difficulty": 0, + "EN_US": "Igloo" + }, + { + "Id": 1050, + "Difficulty": 0, + "EN_US": "Invitation" + }, + { + "Id": 1051, + "Difficulty": 0, + "EN_US": "Ironing Board" + }, + { + "Id": 1052, + "Difficulty": 0, + "EN_US": "Jelly Bean" + }, + { + "Id": 1053, + "Difficulty": 0, + "EN_US": "Jumbotron" + }, + { + "Id": 1054, + "Difficulty": 0, + "EN_US": "Jungle" + }, + { + "Id": 1055, + "Difficulty": 0, + "EN_US": "Junk Mail" + }, + { + "Id": 1056, + "Difficulty": 0, + "EN_US": "Lady Bug" + }, + { + "Id": 1057, + "Difficulty": 0, + "EN_US": "Lake" + }, + { + "Id": 1058, + "Difficulty": 0, + "EN_US": "Lamp Post" + }, + { + "Id": 1059, + "Difficulty": 0, + "EN_US": "Leg" + }, + { + "Id": 1060, + "Difficulty": 0, + "EN_US": "Lego" + }, + { + "Id": 1061, + "Difficulty": 0, + "EN_US": "Leprechaun" + }, + { + "Id": 1062, + "Difficulty": 0, + "EN_US": "Letter Opener" + }, + { + "Id": 1063, + "Difficulty": 0, + "EN_US": "Lettuce" + }, + { + "Id": 1064, + "Difficulty": 0, + "EN_US": "Librarian" + }, + { + "Id": 1065, + "Difficulty": 0, + "EN_US": "Library" + }, + { + "Id": 1066, + "Difficulty": 0, + "EN_US": "Light Switch" + }, + { + "Id": 1067, + "Difficulty": 0, + "EN_US": "Lily Pad" + }, + { + "Id": 1068, + "Difficulty": 0, + "EN_US": "Lunch" + }, + { + "Id": 1069, + "Difficulty": 0, + "EN_US": "Lunchbox" + }, + { + "Id": 1070, + "Difficulty": 0, + "EN_US": "Macaroni" + }, + { + "Id": 1071, + "Difficulty": 0, + "EN_US": "Machine" + }, + { + "Id": 1072, + "Difficulty": 0, + "EN_US": "Magician" + }, + { + "Id": 1073, + "Difficulty": 0, + "EN_US": "Magnet" + }, + { + "Id": 1074, + "Difficulty": 0, + "EN_US": "Mail" + }, + { + "Id": 1075, + "Difficulty": 0, + "EN_US": "Makeup" + }, + { + "Id": 1076, + "Difficulty": 0, + "EN_US": "Meat" + }, + { + "Id": 1077, + "Difficulty": 0, + "EN_US": "Mess" + }, + { + "Id": 1078, + "Difficulty": 0, + "EN_US": "Meteor" + }, + { + "Id": 1079, + "Difficulty": 0, + "EN_US": "Milk" + }, + { + "Id": 1080, + "Difficulty": 0, + "EN_US": "Mine Cart" + }, + { + "Id": 1081, + "Difficulty": 0, + "EN_US": "Minnie Mouse" + }, + { + "Id": 1082, + "Difficulty": 0, + "EN_US": "Minute" + }, + { + "Id": 1083, + "Difficulty": 0, + "EN_US": "Moat" + }, + { + "Id": 1084, + "Difficulty": 0, + "EN_US": "Moby Dick" + }, + { + "Id": 1085, + "Difficulty": 0, + "EN_US": "Monocle" + }, + { + "Id": 1086, + "Difficulty": 0, + "EN_US": "Mouse" + }, + { + "Id": 1087, + "Difficulty": 0, + "EN_US": "Mud" + }, + { + "Id": 1088, + "Difficulty": 0, + "EN_US": "Music" + }, + { + "Id": 1089, + "Difficulty": 0, + "EN_US": "Neck" + }, + { + "Id": 1090, + "Difficulty": 0, + "EN_US": "Net" + }, + { + "Id": 1091, + "Difficulty": 0, + "EN_US": "Night" + }, + { + "Id": 1092, + "Difficulty": 0, + "EN_US": "North Pole" + }, + { + "Id": 1093, + "Difficulty": 0, + "EN_US": "Ocean" + }, + { + "Id": 1094, + "Difficulty": 0, + "EN_US": "Olive Oil" + }, + { + "Id": 1095, + "Difficulty": 0, + "EN_US": "Onion" + }, + { + "Id": 1096, + "Difficulty": 0, + "EN_US": "Open" + }, + { + "Id": 1097, + "Difficulty": 0, + "EN_US": "Page" + }, + { + "Id": 1098, + "Difficulty": 0, + "EN_US": "Paintball" + }, + { + "Id": 1099, + "Difficulty": 0, + "EN_US": "Paintball Gun" + }, + { + "Id": 1100, + "Difficulty": 0, + "EN_US": "Pancakes" + }, + { + "Id": 1101, + "Difficulty": 0, + "EN_US": "Paper" + }, + { + "Id": 1102, + "Difficulty": 0, + "EN_US": "Paper Clip" + }, + { + "Id": 1103, + "Difficulty": 0, + "EN_US": "Paper Plane" + }, + { + "Id": 1104, + "Difficulty": 0, + "EN_US": "Peak" + }, + { + "Id": 1105, + "Difficulty": 0, + "EN_US": "Peanut" + }, + { + "Id": 1106, + "Difficulty": 0, + "EN_US": "Pen" + }, + { + "Id": 1107, + "Difficulty": 0, + "EN_US": "Pencil" + }, + { + "Id": 1108, + "Difficulty": 0, + "EN_US": "People" + }, + { + "Id": 1109, + "Difficulty": 0, + "EN_US": "Photograph" + }, + { + "Id": 1110, + "Difficulty": 0, + "EN_US": "Photographer" + }, + { + "Id": 1111, + "Difficulty": 0, + "EN_US": "Pigeon" + }, + { + "Id": 1112, + "Difficulty": 0, + "EN_US": "Piglet" + }, + { + "Id": 1113, + "Difficulty": 0, + "EN_US": "Pikachu" + }, + { + "Id": 1114, + "Difficulty": 0, + "EN_US": "Pine Tree" + }, + { + "Id": 1115, + "Difficulty": 0, + "EN_US": "Pineapple" + }, + { + "Id": 1116, + "Difficulty": 0, + "EN_US": "Plankton" + }, + { + "Id": 1117, + "Difficulty": 0, + "EN_US": "Plate" + }, + { + "Id": 1118, + "Difficulty": 0, + "EN_US": "Pluto" + }, + { + "Id": 1119, + "Difficulty": 0, + "EN_US": "Police" + }, + { + "Id": 1120, + "Difficulty": 0, + "EN_US": "Pony" + }, + { + "Id": 1121, + "Difficulty": 0, + "EN_US": "Poodle" + }, + { + "Id": 1122, + "Difficulty": 0, + "EN_US": "Portal" + }, + { + "Id": 1123, + "Difficulty": 0, + "EN_US": "Pound" + }, + { + "Id": 1124, + "Difficulty": 0, + "EN_US": "Power Line" + }, + { + "Id": 1125, + "Difficulty": 0, + "EN_US": "President" + }, + { + "Id": 1126, + "Difficulty": 0, + "EN_US": "Pretzel" + }, + { + "Id": 1127, + "Difficulty": 0, + "EN_US": "Printer" + }, + { + "Id": 1128, + "Difficulty": 0, + "EN_US": "Purse" + }, + { + "Id": 1129, + "Difficulty": 0, + "EN_US": "Push Up" + }, + { + "Id": 1130, + "Difficulty": 0, + "EN_US": "Quicksand" + }, + { + "Id": 1131, + "Difficulty": 0, + "EN_US": "Race" + }, + { + "Id": 1132, + "Difficulty": 0, + "EN_US": "Railroad" + }, + { + "Id": 1133, + "Difficulty": 0, + "EN_US": "Rapunzel" + }, + { + "Id": 1134, + "Difficulty": 0, + "EN_US": "Rice" + }, + { + "Id": 1135, + "Difficulty": 0, + "EN_US": "Ring" + }, + { + "Id": 1136, + "Difficulty": 0, + "EN_US": "River" + }, + { + "Id": 1137, + "Difficulty": 0, + "EN_US": "Rocking Chair" + }, + { + "Id": 1138, + "Difficulty": 0, + "EN_US": "Rollerblade" + }, + { + "Id": 1139, + "Difficulty": 0, + "EN_US": "Rollercoaster" + }, + { + "Id": 1140, + "Difficulty": 0, + "EN_US": "Rolling Pin" + }, + { + "Id": 1141, + "Difficulty": 0, + "EN_US": "Root Beer" + }, + { + "Id": 1142, + "Difficulty": 0, + "EN_US": "Sailboat" + }, + { + "Id": 1143, + "Difficulty": 0, + "EN_US": "Sand" + }, + { + "Id": 1144, + "Difficulty": 0, + "EN_US": "Sand Castle" + }, + { + "Id": 1145, + "Difficulty": 0, + "EN_US": "Sandbox" + }, + { + "Id": 1146, + "Difficulty": 0, + "EN_US": "Saw" + }, + { + "Id": 1147, + "Difficulty": 0, + "EN_US": "Scooby-Doo" + }, + { + "Id": 1148, + "Difficulty": 0, + "EN_US": "Seahorse" + }, + { + "Id": 1149, + "Difficulty": 0, + "EN_US": "Seat Belt" + }, + { + "Id": 1150, + "Difficulty": 0, + "EN_US": "Shakespeare" + }, + { + "Id": 1151, + "Difficulty": 0, + "EN_US": "Sheep" + }, + { + "Id": 1152, + "Difficulty": 0, + "EN_US": "Shoelaces" + }, + { + "Id": 1153, + "Difficulty": 0, + "EN_US": "Shoulder" + }, + { + "Id": 1154, + "Difficulty": 0, + "EN_US": "Shower" + }, + { + "Id": 1155, + "Difficulty": 0, + "EN_US": "Silhouette" + }, + { + "Id": 1156, + "Difficulty": 0, + "EN_US": "Sit-Up" + }, + { + "Id": 1157, + "Difficulty": 0, + "EN_US": "Skunk" + }, + { + "Id": 1158, + "Difficulty": 0, + "EN_US": "Smartphone" + }, + { + "Id": 1159, + "Difficulty": 0, + "EN_US": "Sock" + }, + { + "Id": 1160, + "Difficulty": 0, + "EN_US": "Solar Eclipse" + }, + { + "Id": 1161, + "Difficulty": 0, + "EN_US": "Solar System" + }, + { + "Id": 1162, + "Difficulty": 0, + "EN_US": "Sombrero" + }, + { + "Id": 1163, + "Difficulty": 0, + "EN_US": "Sonic the Hedgehog" + }, + { + "Id": 1164, + "Difficulty": 0, + "EN_US": "South" + }, + { + "Id": 1165, + "Difficulty": 0, + "EN_US": "Space" + }, + { + "Id": 1166, + "Difficulty": 0, + "EN_US": "Spin" + }, + { + "Id": 1167, + "Difficulty": 0, + "EN_US": "Spongebob Squarepants" + }, + { + "Id": 1168, + "Difficulty": 0, + "EN_US": "Spring" + }, + { + "Id": 1169, + "Difficulty": 0, + "EN_US": "Spy" + }, + { + "Id": 1170, + "Difficulty": 0, + "EN_US": "Square" + }, + { + "Id": 1171, + "Difficulty": 0, + "EN_US": "Stable" + }, + { + "Id": 1172, + "Difficulty": 0, + "EN_US": "Stage" + }, + { + "Id": 1173, + "Difficulty": 0, + "EN_US": "Star" + }, + { + "Id": 1174, + "Difficulty": 0, + "EN_US": "Steak" + }, + { + "Id": 1175, + "Difficulty": 0, + "EN_US": "Stick" + }, + { + "Id": 1176, + "Difficulty": 0, + "EN_US": "Stingray" + }, + { + "Id": 1177, + "Difficulty": 0, + "EN_US": "Stomach" + }, + { + "Id": 1178, + "Difficulty": 0, + "EN_US": "Storm" + }, + { + "Id": 1179, + "Difficulty": 0, + "EN_US": "Strong" + }, + { + "Id": 1180, + "Difficulty": 0, + "EN_US": "Suitcase" + }, + { + "Id": 1181, + "Difficulty": 0, + "EN_US": "Summer" + }, + { + "Id": 1182, + "Difficulty": 0, + "EN_US": "Sunflower" + }, + { + "Id": 1183, + "Difficulty": 0, + "EN_US": "Sunshine" + }, + { + "Id": 1184, + "Difficulty": 0, + "EN_US": "Superhero" + }, + { + "Id": 1185, + "Difficulty": 0, + "EN_US": "Surfboard" + }, + { + "Id": 1186, + "Difficulty": 0, + "EN_US": "Sword" + }, + { + "Id": 1187, + "Difficulty": 0, + "EN_US": "Tailor" + }, + { + "Id": 1188, + "Difficulty": 0, + "EN_US": "Tall" + }, + { + "Id": 1189, + "Difficulty": 0, + "EN_US": "Teacher" + }, + { + "Id": 1190, + "Difficulty": 0, + "EN_US": "Teepee" + }, + { + "Id": 1191, + "Difficulty": 0, + "EN_US": "Text" + }, + { + "Id": 1192, + "Difficulty": 0, + "EN_US": "The Beatles" + }, + { + "Id": 1193, + "Difficulty": 0, + "EN_US": "The Grinch" + }, + { + "Id": 1194, + "Difficulty": 0, + "EN_US": "Tigger" + }, + { + "Id": 1195, + "Difficulty": 0, + "EN_US": "Time Machine" + }, + { + "Id": 1196, + "Difficulty": 0, + "EN_US": "Toes" + }, + { + "Id": 1197, + "Difficulty": 0, + "EN_US": "Tongue" + }, + { + "Id": 1198, + "Difficulty": 0, + "EN_US": "Towel" + }, + { + "Id": 1199, + "Difficulty": 0, + "EN_US": "Tower" + }, + { + "Id": 1200, + "Difficulty": 0, + "EN_US": "Traffic Light" + }, + { + "Id": 1201, + "Difficulty": 0, + "EN_US": "Treasure" + }, + { + "Id": 1202, + "Difficulty": 0, + "EN_US": "Tree Branch" + }, + { + "Id": 1203, + "Difficulty": 0, + "EN_US": "Tree Stump" + }, + { + "Id": 1204, + "Difficulty": 0, + "EN_US": "Trophy" + }, + { + "Id": 1205, + "Difficulty": 0, + "EN_US": "Tugboat" + }, + { + "Id": 1206, + "Difficulty": 0, + "EN_US": "Turkey" + }, + { + "Id": 1207, + "Difficulty": 0, + "EN_US": "Tweety Bird" + }, + { + "Id": 1208, + "Difficulty": 0, + "EN_US": "Vase" + }, + { + "Id": 1209, + "Difficulty": 0, + "EN_US": "Vegetable" + }, + { + "Id": 1210, + "Difficulty": 0, + "EN_US": "Vest" + }, + { + "Id": 1211, + "Difficulty": 0, + "EN_US": "Video" + }, + { + "Id": 1212, + "Difficulty": 0, + "EN_US": "Virtual Reality" + }, + { + "Id": 1213, + "Difficulty": 0, + "EN_US": "Waiter" + }, + { + "Id": 1214, + "Difficulty": 0, + "EN_US": "Waldo" + }, + { + "Id": 1215, + "Difficulty": 0, + "EN_US": "Watch" + }, + { + "Id": 1216, + "Difficulty": 0, + "EN_US": "Water Bottle" + }, + { + "Id": 1217, + "Difficulty": 0, + "EN_US": "Wave" + }, + { + "Id": 1218, + "Difficulty": 0, + "EN_US": "Wax" + }, + { + "Id": 1219, + "Difficulty": 0, + "EN_US": "Wedding Cake" + }, + { + "Id": 1220, + "Difficulty": 0, + "EN_US": "Wheelbarrow" + }, + { + "Id": 1221, + "Difficulty": 0, + "EN_US": "Wifi" + }, + { + "Id": 1222, + "Difficulty": 0, + "EN_US": "Wind" + }, + { + "Id": 1223, + "Difficulty": 0, + "EN_US": "Window" + }, + { + "Id": 1224, + "Difficulty": 0, + "EN_US": "Wing" + }, + { + "Id": 1225, + "Difficulty": 0, + "EN_US": "Winnie the Pooh" + }, + { + "Id": 1226, + "Difficulty": 0, + "EN_US": "Winter" + }, + { + "Id": 1227, + "Difficulty": 0, + "EN_US": "Wonder Woman" + }, + { + "Id": 1228, + "Difficulty": 0, + "EN_US": "Woody Woodpecker" + }, + { + "Id": 1229, + "Difficulty": 0, + "EN_US": "Wreath" + }, + { + "Id": 1230, + "Difficulty": 0, + "EN_US": "Writing" + }, + { + "Id": 1231, + "Difficulty": 0, + "EN_US": "X-Ray" + }, + { + "Id": 1232, + "Difficulty": 0, + "EN_US": "Yard" + }, + { + "Id": 1233, + "Difficulty": 0, + "EN_US": "Bake" + }, + { + "Id": 1234, + "Difficulty": 0, + "EN_US": "Black Hole" + }, + { + "Id": 1235, + "Difficulty": 0, + "EN_US": "Brainstorm" + }, + { + "Id": 1236, + "Difficulty": 0, + "EN_US": "Buy" + }, + { + "Id": 1237, + "Difficulty": 0, + "EN_US": "Donald Duck" + }, + { + "Id": 1238, + "Difficulty": 0, + "EN_US": "E-mail" + }, + { + "Id": 1239, + "Difficulty": 0, + "EN_US": "Electrician" + }, + { + "Id": 1240, + "Difficulty": 0, + "EN_US": "Explore" + }, + { + "Id": 1241, + "Difficulty": 0, + "EN_US": "Internet" + }, + { + "Id": 1242, + "Difficulty": 0, + "EN_US": "Lab" + }, + { + "Id": 1243, + "Difficulty": 0, + "EN_US": "Level" + }, + { + "Id": 1244, + "Difficulty": 0, + "EN_US": "Marriage" + }, + { + "Id": 1245, + "Difficulty": 0, + "EN_US": "Mine" + }, + { + "Id": 1246, + "Difficulty": 0, + "EN_US": "Movie" + }, + { + "Id": 1247, + "Difficulty": 0, + "EN_US": "Programmer" + }, + { + "Id": 1248, + "Difficulty": 0, + "EN_US": "Scent" + }, + { + "Id": 1249, + "Difficulty": 0, + "EN_US": "Sell" + }, + { + "Id": 1250, + "Difficulty": 0, + "EN_US": "Shaggy" + }, + { + "Id": 1251, + "Difficulty": 0, + "EN_US": "Shelter" + }, + { + "Id": 1252, + "Difficulty": 0, + "EN_US": "Shrink" + }, + { + "Id": 1253, + "Difficulty": 0, + "EN_US": "Teleport" + }, + { + "Id": 1254, + "Difficulty": 0, + "EN_US": "USB" + }, + { + "Id": 1255, + "Difficulty": 0, + "EN_US": "Virus" + }, + { + "Id": 1256, + "Difficulty": 0, + "EN_US": "Wedding" + }, + { + "Id": 1257, + "Difficulty": 0, + "EN_US": "Go Kart" + }, + { + "Id": 1404, + "Difficulty": 1, + "EN_US": "Theater" + }, + { + "Id": 1416, + "Difficulty": 1, + "EN_US": "Lucky Charms" + }, + { + "Id": 1419, + "Difficulty": 1, + "EN_US": "Acid Rain" + }, + { + "Id": 1462, + "Difficulty": 1, + "EN_US": "Dead Batteries" + }, + { + "Id": 1487, + "Difficulty": 1, + "EN_US": "Glass" + }, + { + "Id": 1629, + "Difficulty": 0, + "EN_US": "Tyrannosaurus Rex" + }, + { + "Id": 1679, + "Difficulty": 0, + "EN_US": "Mothman" + } +] diff --git a/apps/econ/src/econ.app.ts b/apps/econ/src/econ.app.ts index d2dd7f2..99a6b77 100644 --- a/apps/econ/src/econ.app.ts +++ b/apps/econ/src/econ.app.ts @@ -129,6 +129,39 @@ async function pushConsumableAdded( } } +/** + * Push a StorefrontBalanceUpdate to a player after their balance changes, mirroring the + * reference's + * `HubSendToPlayer(accountID, NotifFrame(StorefrontBalanceUpdate, {Balance, CurrencyType, BalanceType}))`. + * The client applies it to the shown balance so a purchase debit reflects immediately, + * without waiting for a `GET /balance` re-fetch. `Balance` is the resulting total in that + * currency (not the delta), `BalanceType` is -2 (account-wide, all platforms). Best-effort: + * a hub failure is logged and swallowed, since the balance change has already committed. + */ +async function pushBalanceUpdate( + c: Context, + accountId: number, + currencyType: number, + balance: number +): Promise { + try { + await c.env.RECFLARE_NOTIFICATIONS_HUB.getByName(HUB_INSTANCE).notifyPlayer( + accountId, + NotificationType.StorefrontBalanceUpdate, + { + Balance: balance, + CurrencyType: currencyType, + BalanceType: ALL_PLATFORMS, + } + ) + } catch (err) { + logger.error('failed to push StorefrontBalanceUpdate notification', { + accountId, + error: err instanceof Error ? err.message : String(err), + }) + } +} + /** * Project a stored avatar into the public render subset returned by * `GET /api/avatar/v2/:id` — the fields needed to draw another player's avatar @@ -603,6 +636,12 @@ const app = new Hono({ strict: false }) toGiftContent(item.GiftDrop, message, consumableCount, consumableMappingId, consumablePreExisting) ) + // Push the buyer's new (reduced) balance over the socket so their client updates the + // shown total immediately — the buyer (`id`) is who was debited, in the currency they + // spent. Best-effort; the HTTP response still carries the change either way. + const newBalance = await getBalance(c.env.DB, id, currencyType as number, startingTokens) + await pushBalanceUpdate(c, id, currencyType as number, newBalance) + // The response mirrors a captured real buyItem: `Balance` is the change applied (the // negated price), not the resulting balance (the client reads its new total from // `GET /balance/:type`); `BalanceType` is -2 (account-wide, all platforms). The Data