-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
48 lines (48 loc) · 1.97 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
<html>
<head>
<title>Farming</title>
<link rel = "stylesheet" type = "text/css" href = "style.css" />
</head>
<body>
<div id = "playground"></div>
<div id = "msg"></div>
<div id = "sidebar">
Inventory:
<div id = "inventory"></div>
Money: <span id = "money">0</span>
<div id = "instructions">
<b>Controls:</b><br />
Move: Arrow keys<br />
Search: Spacebar near rocks<br />
Plant: Spacebar near garden
</div>
</div>
<div class = "dialog" id = "dialog">
<div class = "close-button" onclick = "game.dialog.close(); return false">X</div>
<div class = "dlg-content"></div>
</div>
<div class = "dialog" id = "shop-dlg">
<div class = "close-button" onclick = "game.dialog.close(); return false">X</div>
<div class = "dlg-content">
<div class = "shop-controls">
<a href = "#" onclick = "game.dialog.openPanel('buy'); return false">Buy</a> |
<a href = "#" onclick = "game.dialog.openPanel('sell'); return false">Sell</a>
</div>
<div id = "shop-buy"></div>
<div id = "shop-sell"></div>
</div>
</div>
<script type = "text/javascript" src = "jquery-1.4.min.js"></script>
<script type = "text/javascript" src = "jquery.gamequery-0.4.0.js"></script>
<script type = "text/javascript" src = "jquery.gamequery.ext.js"></script>
<script type = "text/javascript" src = "helpers.js"></script>
<script type = "text/javascript" src = "shop.js"></script>
<script type = "text/javascript" src = "vector.js"></script>
<script type = "text/javascript" src = "farmer.js"></script>
<script type = "text/javascript" src = "view.js"></script>
<script type = "text/javascript" src = "initialize.js"></script>
<script type = "text/javascript" src = "dialog.js"></script>
<script type = "text/javascript" src = "plants.js"></script>
<script type = "text/javascript" src = "jarm.js"></script>
</body>
</html>