-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
156 lines (129 loc) · 4.33 KB
/
index.html
File metadata and controls
156 lines (129 loc) · 4.33 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="description" content="A Stardew Valley crop profits calculator and visualizer." />
<title>Stardew Profits</title>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<link rel="shortcut icon" type="image/png" href="img/ancientfruit.png">
</head>
<body>
<div class="title">
</div>
<script src="js/crops.js"> </script>
<script src="js/data.js"> </script>
<div class="graph">
<script src="js/main.js"> </script>
</div>
<div class="options">
<table cellspacing="2">
<tr>
<td>Season:</td>
<td>
<select id="select_season" onChange="rebuild()">
<option value="0" selected="true">Spring (28 days)</option>
<option value="1">Summer (28 days)</option>
<option value="2">Fall (28 days)</option>
<option value="3">Greenhouse</option>
</select>
</td>
</tr>
<tr id="current_day_row">
<td>Current day:</td>
<td><input type="number" id="current_day" value="1" onChange="refresh()"/></td>
</tr>
<tr id="number_days_row">
<td>Number of days:</td>
<td><input type="number" id="number_days" value="28" onChange="refresh()"/></td>
</tr>
<tr>
<td>Produce type:</td>
<td>
<select id="select_produce" onChange="refresh()">
<option value="0" selected="true">Raw</option>
<option value="1">Jar</option>
<option value="2">Keg</option>
</select>
</td>
</tr>
<tr>
<td>Number of crops:</td>
<td><input type="number" id="number_planted" value="1" onChange="refresh()"/></td>
</tr>
<tr>
<td>Average profits:</td>
<td><input type="checkbox" id="check_average" onChange="refresh()" /></td>
</tr>
<tr id="cross_season_row">
<td>Cross season:</td>
<td><input type="checkbox" id="cross_season" onChange="refresh()" /></td>
</tr>
</table>
<table cellspacing="2">
<tr>
<td>Seed sources:</td>
<td>
<input type="checkbox" id="check_seedsPierre" onChange="rebuild()" checked="true" /> <label for="check_seedsPierre">Pierre</label><br />
<input type="checkbox" id="check_seedsJoja" onChange="rebuild()" checked="true" /> <label for="check_seedsJoja">Joja</label><br />
<input type="checkbox" id="check_seedsSpecial" onChange="rebuild()" checked="true" /> <label for="check_seedsSpecial">Special</label>
</td>
</tr>
<tr>
<td>Pay for seeds:</td>
<td><input type="checkbox" id="check_buySeed" onChange="refresh()" /></td>
</tr>
<tr>
<td>Fertilizer:</td>
<td>
<select id="select_fertilizer" onChange="refresh()">
<option value="0" selected="true">None</option>
<option value="1">Basic Fertilizer</option>
<option value="2">Quality Fertilizer</option>
<option value="3">Speed-Gro</option>
<option value="4">Deluxe Speed-Gro</option>
</select>
</td>
</tr>
<tr>
<td>Pay for fertilizer:</td>
<td><input type="checkbox" id="check_buyFert" onChange="refresh()" /></td>
</tr>
</table>
<table cellspacing="2">
<tr>
<td>Farming level:</td>
<td><input type="number" id="number_level" value="0" onChange="refresh()"/></td>
</tr>
<tr>
<td>Level 5 skills:</td>
<td>
<input type="checkbox" id="check_skillsTill" onChange="refresh()" /> Tiller<br />
</td>
</tr>
<tr>
<td>Level 10 skills:</td>
<td>
<select id="select_skills" onChange="refresh()">
<option value="0" selected="true">None</option>
<option value="1">Agriculturist</option>
<option value="2">Artisan</option>
</select>
</td>
</tr>
<tr>
<td>Show extra info:</td>
<td><input type="checkbox" id="check_extra" onChange="refresh()" checked="true" /></td>
</tr>
<tr>
<td id="tdhelp" colspan="2"><div id="divhelp"><a href="help.html">Help</a></div></td>
</tr>
</table>
</div>
<div class="footer">
<p><a href="http://stardewvalley.net/" target="_blank">Stardew Valley v1.11</a> © <a href="https://twitter.com/ConcernedApe" target="_blank">ConcernedApe</a> | Website designed by <a href="https://twitter.com/thorinair_music" target="_blank">Thorinair</a> | v1.2.1</p>
</div>
<script src="js/time.js"> </script>
<script>initial();</script>
</body>
</html>