-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathblacksmith.html
77 lines (70 loc) · 3.34 KB
/
blacksmith.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SFTools - Blacksmith</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="res/favicon.png"/>
<link rel="stylesheet" href="css/pages/blacksmith.css"/>
<script src="vendor/js/jquery.3.4.1.min.js"></script>
<script src="vendor/js/semantic.min.js"></script>
<script src="js/util.js"></script>
<script src="js/playa/calculations.js"></script>
<script src="js/core/util.js"></script>
<script src="js/core/models.js"></script>
<script src="js/core/core.js"></script>
<script src="js/plugins.js"></script>
<script src="js/changelog.js"></script>
<script src="js/views/base.js"></script>
<script src="js/sim/editor.js"></script>
<script src="js/pages/blacksmith.js"></script>
</head>
<body class="inverted">
<div class="ui fixed inverted borderless huge menu">
<div class="header item"><a href="index.html">SFTools</a></div>
</div>
<div class="ui main inverted container" style="width: 80vw;">
<div class="ui inverted form">
<div class="three fields">
<div class="field">
<label data-intl="blacksmith.item.type"></label>
<div class="ui selection inverted dropdown" data-path="type">
<div class="text"></div>
<i class="dropdown icon"></i>
</div>
</div>
<div class="field">
<label data-intl="blacksmith.item.value"></label>
<div class="ui inverted input">
<input type="text" data-path="value">
</div>
</div>
<div class="field">
<label data-intl="blacksmith.item.double"></label>
<div class="ui selection inverted dropdown" data-path="double">
<div class="text"></div>
<i class="dropdown icon"></i>
</div>
</div>
</div>
</div>
<table class="ui inverted single very line basic table fixed mt-8">
<thead>
<tr>
<th style="width: 5%;" class="text-center">#</th>
<th style="width: 6%;" class="text-center" data-intl="blacksmith.table.bonus"></th>
<th style="width: 6%;" class="text-center" data-intl="blacksmith.table.total"></th>
<th style="width: 4%;"></th>
<th data-intl="blacksmith.table.required"></th>
<th data-intl="blacksmith.table.total"></th>
<th data-intl="blacksmith.table.reclaimable"></th>
<th data-intl="blacksmith.table.total"></th>
<th data-intl="blacksmith.table.lost"></th>
<th data-intl="blacksmith.table.total"></th>
</tr>
</thead>
<tbody id="table"></tbody>
</table>
</div>
</body>
</html>