-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 1.33 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/phaser-arcade-physics.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VL580VY81P"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VL580VY81P');
</script>
</head>
<body>
<!-- Game classes -->
<script src="js/boot.js"></script>
<script src="js/backend/word_logic.js"></script>
<script src="js/ui/settings.js"></script>
<script src="js/ui/game_mode_settings.js"></script>
<script src="js/ui/game.js"></script>
<script src="js/ui/intro.js"></script>
<script src="js/main.js"></script>
</body>
<b>Rules:</b>
<p>The goal is to get from a starting word to an ending word by either adding, removing, or changing one letter at a time, keeping all intermediate words valid english words. The dictionary used is based on the Scrabble Dictionary</p>
<p>The game has three modes:</p>
<p><b>Daily Puzzle:</b> A single curated word pair is given every day</p>
<p><b>Practice:</b> Unlimited random start and end words</p>
<p><b>Free play:</b> User picks start and end words</p>
</html>