-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (100 loc) · 4.65 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Runes of Magic Manastone Calculator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<form class="w3-section flex" name="formular">
<div class="w3-section w3-card-4 my-dark-grey w3-center w3-border border-rounded-medium" id="main">
<div class="w3-section title">
Number of Mana Stones desired
</div>
<div class="w3-section">
<input id="manaStoneCountInput" class="w3-input border-rounded-small" autofocus type="number" min="1">
</div>
<div class="w3-section title">
Tier of the desired Mana Stones
</div>
<div class="w3-section">
<input id="manaStoneTierInput" class="w3-input border-rounded-small" type="number" min="1">
</div>
<div class="w3-section title">
Tier of the initial item¹
</div>
<div class="w3-section">
<input id="itemTierInput" class="w3-input border-rounded-small" type="number" value="3" min="1">
</div>
<div class="w3-section title">
Cost of one initial item¹
</div>
<div class="w3-section title">
<input id="itemPriceInput" class="w3-input border-rounded-small" type="number" value="1583" min="1">
</div>
<div class="w3-section title">
Cost of one Fusion Stone²
</div>
<div class="w3-section title">
<input id="fusiPriceInput" class="w3-input border-rounded-small" type="number" value="1980" min="1">
</div>
<div class="w3-section title">
Gold/Diamond Rate
</div>
<div class="w3-section title">
<input id="goldDiaRateInput" class="w3-input border-rounded-small" type="number" value="4000" min="1">
</div>
</div>
<div class="w3-section w3-card-4 my-dark-grey w3-border border-rounded-medium" id="arcane-charge">
<div class="w3-section title w3-center">
Currency used to acquire the Arcane Charges (Optional)
</div>
<div class="w3-section w3" id="charge-diamond">
<input id="chargesPriceInput" name="crb" class="w3-radio" type="radio" style="width:6%;display:inline;">
<input id="cpDiaCharges" size="3" class="w3-input border-rounded-small" type="number" min="1" style="width:24%;display:inline;">
<p style="width:22%;display:inline;">
Charges for
</p>
<input id="cpDiaPrice" size="3" class="w3-input border-rounded-small" type="number" min="1" style="width:24%;display:inline;">
<p style="width:24%;display:inline;">
Diamonds
</p>
</div>
<div class="w3-section" id="charge-phirius">
<input id="chargesPriceInput" name="crb" class="w3-radio" type="radio" checked style="width:6%;display:inline;">
<input id="cpPhiriusCharges" size="3" class="w3-input border-rounded-small" type="number" min="1" style="width:24%;display:inline;">
<p style="width:22%;display:inline;">
Charges for
</p>
<input id="cpPhiriusPrice" size="3" class="w3-input border-rounded-small" type="number" min="1" style="width:24%;display:inline;">
<p style="width:24%;display:inline;">
Phirius Token Coins
</p>
</div>
<div class="w3-section w3-center" id="charge-calc">
<div class="">
<input id="wholePackageInput" type="checkbox">
  Calculate Charges in complete packages³
</div>
</div>
</div>
<div class="w3-card-4 my-dark-grey w3-section w3-border border-rounded-medium w3-center lrpaddingsmall" id="calc">
<input class="w3-input border-rounded-small" id="calc-button" onclick="updateValues()" type="button" value="Calculate">
</div>
<div class="w3-section w3-center w3-border border-rounded-medium lrpaddingsmall" id="results" text-size="14px" style="display:none">
</div>
</form>
<p class="w3-center">
<br>
<br>
<br>
<span style="font-size: 12px;">¹ Default price and tier is of "Dress Uniform Belt" which can be bought in Obsidian Stronghold from clothing merchant "Pierdon"</span><br>
<!–– ¹ "Recall Belt" (cloth) from NPC "Cholman Hooktail" (Sarlo) or "Didide Spiderfoot" (Wailing Fjord) are 6124 (T5) ––>
<span style="font-size: 12px;">² Price of a <a href="http://www.runesdatabase.com/item/202999/" style="font-size: 10px;">Random Fusion Stone</a>. Empty this field if you are providing "Purified Fusion Stones" instead</span><br>
<span style="font-size: 12px;">³ Number of Charges is rounded up to the package size. That means if 126 Charges are required, price will be calculated for 150 Charges.</span><br>
<span class="my-dark-gold" style="font-size: 12px;">Javascript code on this page is a modified version of <a href="http://www.rom-welten.de/en/articles,id581,0,mana_stone_calculator.html">Manastone Calculator (RoM-Welten)</a> </span></p>
<script src="script.js" type="text/javascript"></script>
</body>
</html>