forked from bonder/jarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 2.5 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
<html>
<head>
<title>Farming</title>
<link rel = "stylesheet" type = "text/css" href = "style.css" />
</head>
<body>
<div id = "playground">
<div id = "welcome-screen">
<div id = "loading-bar"></div><br />
<a id = "start-button">Click here to start!</a>
</div>
</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: Left click<br />
Search: Left click on rock<br />
Plant: Left click on garden<br />
Buy/Sell: Left click on shop
</div>
</div>
<div class = "dialog" id = "dialog">
<a class = "close-button" onclick = "game.dialog.close(); return false">X</a>
<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>
<div class = "description">
Check out the Github repo <a href = "http://github.com/robbrit/jarm" target = "_blank">here</a>.
Find a bug or have a suggestion? Submit it on the
<a href = "http://github.com/robbrit/jarm/issues" target = "_blank">issues page</a>.
</div>
<script type = "text/javascript" src = "jquery-1.4.2.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 = "events.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>