forked from PrincessRTFM/WebUtil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallagan.html
24 lines (24 loc) · 842 Bytes
/
allagan.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
<!DOCTYPE html>
<!--
@desc a utility to easily calculate how much gil you can get for your hoarded allagan pieces
@hidden
-->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>FFXIV Allagan Pieces Calculator</title>
<link rel="stylesheet" type="text/css" href="css/allagan.css" />
</head>
<body>
<div id="allagan">
<div id="banking-container">
<input type="checkbox" id="banking" name="banking" />
<label for="banking">
<abbr title="Leave one allagan piece in each slot that has one, as if using a retainer to hold a 'bank' of pieces">Toggle banking mode</abbr>
</label>
</div>
</div>
<div id="output">You can sell your allagan pieces for <span id="gil">0</span> gil</div>
<script type="text/javascript" src="js/allagan.browser.js"></script>
</body>
</html>