Skip to content

Commit e64af13

Browse files
Merge pull request #128 from BhaktiMore18/master
Added word scramble game
2 parents dc54562 + d90412a commit e64af13

File tree

5 files changed

+696
-0
lines changed

5 files changed

+696
-0
lines changed

public/wordbanks/word-scramble.txt

Lines changed: 163 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
react
2+
javascript
3+
component
4+
function
5+
frontend
6+
context
7+
state
8+
effect
9+
variable
10+
programming
11+
apple
12+
banana
13+
orange
14+
mango
15+
grape
16+
peach
17+
cherry
18+
berry
19+
lemon
20+
lime
21+
melon
22+
apricot
23+
avocado
24+
broccoli
25+
carrot
26+
celery
27+
tomato
28+
potato
29+
onion
30+
garlic
31+
pepper
32+
spinach
33+
lettuce
34+
cabbage
35+
cucumber
36+
pumpkin
37+
zucchini
38+
squash
39+
mushroom
40+
almond
41+
cashew
42+
walnut
43+
peanut
44+
pistachio
45+
cereal
46+
biscuit
47+
cookie
48+
donut
49+
muffin
50+
pancake
51+
waffle
52+
crepe
53+
burger
54+
pizza
55+
pasta
56+
sushi
57+
taco
58+
curry
59+
salad
60+
sandwich
61+
omelet
62+
steak
63+
chicken
64+
turkey
65+
salmon
66+
tuna
67+
cod
68+
shrimp
69+
lobster
70+
crab
71+
island
72+
planet
73+
galaxy
74+
universe
75+
rocket
76+
saturn
77+
jupiter
78+
mercury
79+
venus
80+
ear
81+
airplane
82+
airport
83+
station
84+
bridge
85+
tunnel
86+
harbor
87+
library
88+
museum
89+
gallery
90+
theatre
91+
concert
92+
festival
93+
holiday
94+
vacation
95+
adventure
96+
journey
97+
trek
98+
hiking
99+
camping
100+
backpack
101+
camera
102+
picture
103+
portrait
104+
landscape
105+
sunset
106+
sunrise
107+
mountain
108+
valley
109+
river
110+
ocean
111+
beach
112+
desert
113+
forest
114+
jungle
115+
savanna
116+
volcano
117+
earthquake
118+
weather
119+
climate
120+
season
121+
spring
122+
summer
123+
autumn
124+
winter
125+
school
126+
college
127+
university
128+
teacher
129+
student
130+
lecture
131+
exam
132+
homework
133+
assignment
134+
project
135+
science
136+
physics
137+
chemistry
138+
biology
139+
math
140+
algebra
141+
geometry
142+
calculus
143+
history
144+
geography
145+
politics
146+
economy
147+
finance
148+
market
149+
business
150+
startup
151+
product
152+
service
153+
coding
154+
developer
155+
debugger
156+
tester
157+
design
158+
ux
159+
ui
160+
prototype
161+
mockup
162+
logo
163+
brand
106 KB
Loading

src/data/content.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { FortuneCard } from "../pages/activities/FotuneCard";
88
import { SearchWord } from "../pages/activities/getDefinition";
99
import { Jitter } from "../pages/games/Jitter";
1010
import { RandomMeme } from "../pages/activities/RandomMemes";
11+
import { WordScramble } from "../pages/games/WordScramble";
1112
// Use wrapper components that include favorite button functionality
1213
import { RandomJokeWithFav } from "../pages/activities_wrappers/RandomJokeWithFav";
1314
import { RandomAnimeQuoteWithFav } from "../pages/activities_wrappers/RandomAnimeQuoteWithFav";
@@ -26,6 +27,7 @@ import { DogHttpCode } from "../pages/activities/DogHttpCode";
2627
import { CatHttpCode } from "../pages/activities/CatHttpCode";
2728
import FlappyBird from "../pages/games/FlappyBird";
2829
import RandomIdentity from "../pages/activities/RandomIdentity";
30+
import word_scramble_icon from "../assets/games/WordScramble/word_scramble.png";
2931

3032
export const activities = [
3133
{
@@ -170,5 +172,12 @@ export const games = [
170172
icon: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSap9rEhSD7ghcjTSYN6HuXx0wejnzigvKncg&s",
171173
urlTerm: "FlappyBird",
172174
element: <FlappyBird />,
175+
},
176+
{
177+
title: "Word Scramble",
178+
description: "Word chaos! Can you fix it?",
179+
icon: word_scramble_icon,
180+
urlTerm: "WordScramble",
181+
element: <WordScramble />,
173182
}
174183
];

0 commit comments

Comments
 (0)