This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
191 lines (167 loc) · 7.26 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta name="description" content="When you find a golden pot at the end of the rainbow, everything seems perfect. But as you collect the gold, someone is creeping closer, going after the gold. You have to defend it, and yourself! Use the light of the rainbow channeled as a laser to take down the beasts.">
<meta name="keywords" content="bacon,game,jam,06,tower,defense,click,rainbows">
<meta name="author" content="Ninjadev">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="MobileOptimized" content="320">
<meta name="HandheldFriendly" content="true">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Cute Animals Inc.</title>
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<link rel=stylesheet href=res/style.css?v=3 />
<!-- lib files -->
<script src=lib/jquery.min.js></script>
<script src=lib/StateManager.js></script>
<script src=lib/pointToLine.js></script>
<script src=lib/handlebars.js></script>
<script src=lib/soundjs-0.5.0.min.js></script>
<!-- src files -->
<script src=src/Enemy.js?v=2></script>
<script src=src/ParticleSystem.js?v=2></script>
<script src=src/bootstrap.js?v=3></script>
<script src=src/GameState.js?v=3></script>
<script src=src/MenuState.js?v=3></script>
<script src=src/CreditsState.js?v=3></script>
<script src=src/AchievementState.js?v=2></script>
<script src=src/LaserController.js?v=2></script>
<script src=src/Laser.js?v=2></script>
<script src=src/Pot.js?v=2></script>
<script src=src/Rainbow.js?v=2></script>
<script src=src/AudioButton.js?v=2></script>
<script src=src/Toast.js?v=2></script>
<script src=src/Achievements.js?v=2></script>
<script src=src/UpgradeDebuffOnHit.js?v=2></script>
<script src=src/Cash.js?v=2></script>
<script src=src/Colors.js?v=2></script>
<script src=src/MoneyEffect.js?v=2></script>
<script src=src/Upgrades.js?v=2></script>
<script src=src/SpeedEffect.js?v=2></script>
<script src=src/UpgradeDamageMultiplier.js?v=2></script>
<script src=src/UpgradeAddBaseDamage.js?v=2></script>
<script src=src/DotEffect.js?v=2></script>
<script src=src/SpecialWeapon.js?v=2></script>
<script src=src/Stats.js?v=2></script>
<script src=src/EnemyController.js?v=2></script>
<script src=src/Waves.js?v=2></script>
<script src=src/EnemyTypes.js?v=2></script>
<script src=src/ProgressCircle.js?v=2></script>
<script src=src/SpecialWeaponController.js?v=2></script>
</head>
<body onload="bootstrap()">
<audio id="music" loop>
<source src="res/music/music.mp3" type="audio/mpeg">
<source src="res/music/music.ogg" type="audio/ogg">
</audio>
<div id=wrapper>
</div>
<div class="toast template">
<div class=message>
</div>
</div>
<div class="achievement template">
<img class=image />
<div>
<div class=name></div>
<div class=description></div>
</div>
</div>
<div class="cash template">
<div class="value"></div>
</div>
<div class="upgrades template">
<h2>Upgrades</h2>
<div class="img-upgrade-container"></div>
<div class="desc-upgrade-container"></div>
</div>
<div class="health template">
<span class=heart>♥</span>
<span class=value></span>
</div>
<div class="weapons template"></div>
<div class="achievements template"></div>
<div class="logo template">
<span class="purple">C</span><span class="indigo">U</span><span class="blueish">T</span><span class="tealish">E</span> <span class="green">ANIM</span><span class="yellowish">AL</span><span class="orange">S I</span><span class="red1">N</span><span class="red2">C.</span>
</div>
<div class="credits-header template">
<h1>cute animals inc.</h1>
<h2>for bacon game jam 06</h2>
</div>
<div class="credits-text template">
this game was<br>
written during<br>
a period of 48<br>
hours for the<br>
online game jam<br>
competition<br>
<span class=black>bacon game<br>
jam 06.</span><br>
<br>
the theme of<br>
the game jam<br>
was <span class=black>rainbows.</span><br>
<br>
shoutouts go<br>
to all the great<br>
people in the<br>
game jam com-<br>
munity, the reg-<br>
ulars at <span class=black>#ba-<br>
congamejam</span> on<br>
freenode, and<br>
the guy who<br>
had to cancel<br>
on the jam a<br>
couple of hours<br>
into it because<br>
his wife went<br>
into labor.<br>
happy father-<br>
hood!<br>
<br>
<span class=black>(press esc<br>
to go back)</span>
</div>
<script id="upgrade-img-template" type="text/x-handlebars-template">
<div class="tooltip upgrade {{#if canPurchase}}can-purchase{{/if}}" data-id="{{ id }}">
<img class=upgrade-purchase src=res/achievements/{{ img }} />
</div>
</script>
<script id="upgrade-desc-template" type="text/x-handlebars-template">
<div class=description data-id="{{ id }}">
<strong>{{ name }}</strong>
<span style=float:right;color:yellow>$ {{ cost }}</span>
<p>{{ description }}</p>
</div>
</div>
</script>
<script id="weapons-list-template" type="text/x-handlebars-template">
<div class="weapons-list">
{{#each weapons}}
<div class="weapon" data-id="{{@index}}">
<img class=weapon-image src=res/achievements/{{ image }} />
</div>
{{/each}}
</div>
</script>
<script id="achievements-list-template" type="text/x-handlebars-template">
<a href=javascript:; class=back-button>[Back]</a>
<h1>Achievements</h1>
<div class="achievement-list">
{{#each achievements}}
<div class="achievement-element">
<img class=achievement-avatar src=res/achievements/{{ custom_image }}.png />
<h2>{{ name }}:</h2>
{{ description }}
</div>
{{/each}}
</div>
</script>
<div id=overlay class=template></div>
<div id=game-over class=template></div>
</body>
</html>