forked from DQDamageCalc/DamageCalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (51 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Dungeon Quest Damage Calculator</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RZJP8CBPMX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RZJP8CBPMX');
</script>
</head>
<body>
<script src="script2.js"></script>
<h1>Dungeon Quest Damage Calculator</h1>
<h4>Enter your gear down below</h4>
<form>
<label for="wep">Weapon:</label><br>
<input type="text" id="wep" name="fwep" value=0><br>
<label for="arm">Armor:</label><br>
<input type="text" id="arm" name="farm" value=0><br>
<label for="hel">Helmet:</label><br>
<input type="text" id="hel" name="fhel" value=0><br>
<label for="skill">Skill Points:</label><br>
<input type="text" id="skill" name="fskill" value=0><br>
<button type="button" id="calc">Calculate!</button>
</form>
<p>
Without Inner<br>
Low: (0)<br>
Average: (1)<br>
High: (2)<br><br>
With Inner<br>
Low: (3)<br>
Average: (4)<br>
High: (5)<br><br>
With Enhanced Inner<br>
Low: (6)<br>
Average: (7)<br>
High: (8)<br><br>
</p>
<h4> Damage is representative of Level 180 Northern Land Spells</h4>
<h4> For Level 185 NL Spells, visit https://dqdamagecalc.github.io/DamageCalc/index.html</h4>
</body>
</html>