-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathwords.js
40 lines (40 loc) · 3.65 KB
/
words.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
window.library = {
words:
[
// format: first element is the main word, all other elements are clues
['Computer', 'monitor', 'keyboard', 'mouse'],
['Griffon', 'claw', 'wings', 'mane', 'tail'],
['Hula girl', 'torso', 'grass', 'coconuts', 'hands', 'skirt'],
['Night', 'moon', 'stars', 'owl', 'black', 'satelite', 'darkness'],
['Chinaman', 'gong', 'wok', 'rice hat', 'buckteeth', 'chopsticks', 'boat', 'rice bowl'],
['Universe', 'milky way', 'spaceship', 'alien', 'stars', 'earth', 'sun', 'jupiter'],
['Vehicle', 'car', 'truck', 'cart', 'sled', 'tractor', 'train', 'plane', 'boat'],
['Cold', 'gloves', 'scarf', 'jacket', 'earmuffs', 'snow', 'hat', 'boots', 'ice'],
['Mammal', 'man', 'elephant', 'whale', 'dog', 'panda', 'kangaroo', 'lion', 'monkey'],
['Up', 'house', 'adventure book', 'dog', 'cliffs with waterfall', 'giant bird egg', 'old man walker', 'cone of shame', 'hot air balloon'],
['Titanic', 'ocean', 'captain\'s hat', 'life saver', 'rose', 'heart of the ocean', 'necklace', 'ship', 'iceberg', 'life vest'],
['Harry Potter', 'wand', 'dragon', 'train', 'mermaid', 'Hogwartz', 'thunderbolt', 'broomstick', 'goblet of fire'],
['Google', 'world', 'computer', 'glasses (google glass)', 'map', 'magnifying glass', 'search bar', 'office', 'chrome icon'],
['Great Britain', 'tea', 'telephone booth', 'magna carta', 'Sherlock Holmes', 'Big Ben', 'crown', 'London Bridge', 'palace'],
['Charlie Chaplin', 'cane', 'movie theater', 'laughing', 'mustach (hitler-stache', 'bowler hat', 'smile', 'suit', 'curly hair'],
['George Washington', 'consititution', 'colonial wig', 'cherry tree', 'ax', 'wooden teeth', 'The White House', 'American Flag', 'dollar bill'],
['Aladdin', 'Agrabah', 'Princess Jasmine', 'Abu (sidekick monkey)', 'magic carpet', 'lamp', 'genie', 'turbin', 'Disney'],
['New York', 'taxi', 'Empire State Building', 'Times Square', 'New Years Ball Drop', 'Twin Towers', 'airplane', 'large apple', 'statue of liberty'],
['Jesus', 'Devil', 'robes', 'fish', 'donkey', 'crown of thorns', 'angel', 'church', 'bible', 'crucifix'],
['Astronaut', 'helmet', 'suit', 'stars', 'moon', 'earth from a far', 'satellite', 'rocket', 'saturn'],
['Ninja Turtle', 'nunchuks', 'mask', 'pizza', 'sewer', 'Empire State Building', 'ooze', 'sword', 'rat'],
['Doctor Who', 'bowtie', 'pinstripe suit', 'scarf', 'stars', 'aliens', 'Big Ben', 'angel', 'telephone box'],
['Nascar', 'circle track', 'crowd stands', 'race cars', 'trophy', 'finish line', 'checkered flag', 'race cars'],
['Michael Jackson', 'one glove', 'crotch grab', 'fedora', 'hee hee', 'microphone', 'monkey', 'aviators', 'nose'],
['Star Wars', 'x-wing','death star', 'R2D2', 'Jedi', 'light saber', 'Ewok', 'Jabba the Hut', 'Yoda'],
['Jurassic Park', 'DNA', 'T-rex', 'jeep', 'dinosaur', 'fences', 'trees', 'hunter', 'entrance archway'],
['Issac Newton', 'Apple', 'tree', 'earth and moon','sun and earth', 'spaceship', 'weights', 'jumping', 'falling'],
['Thanksgiving', 'turkey', 'television', 'parade', 'pumpkin', 'table', 'family',
'pilgrim', 'basket'],
['Bill Gates', 'dollar sign', 'dollar bill', 'gate', 'computer', 'windows', 'Washington State', 'not Apple', 'Harvard'],
['Prius', 'Electricity', 'car', 'Toyota', 'lightening', 'charging station', 'hippie', 'recycling', 'hatchback'],
['Air Force One', 'airplane', 'White House', 'Washington DC', 'American Flag', 'Obama entering airplane', 'hashtag', 'Air Force', 'eagle'],
['Aladdin', 'princess', 'monkey', 'flying carpet', 'lamp', 'genie', 'Aladdin', 'Mickey Mouse', 'movie'],
['Waikiki', 'beach', 'ocean', 'surfers', 'canoe', 'Diamondhead', 'Duke\'s statue', 'hula dancer', 'Oahu']
]
};