-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathset.html
More file actions
86 lines (80 loc) · 5.29 KB
/
Copy pathset.html
File metadata and controls
86 lines (80 loc) · 5.29 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Whole buff set — Does it stack?</title>
<meta name="description" content="Check a whole EverQuest buff set at once: which buffs cannot both be up, and which effects several of them carry where only one counts.">
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='6' fill='%2312141a'/%3E%3Crect x='7' y='18' width='18' height='4' rx='1' fill='%237cc4ff'/%3E%3Crect x='7' y='12' width='18' height='4' rx='1' fill='%235fd39a'/%3E%3Crect x='7' y='6' width='18' height='4' rx='1' fill='%23f2c35c'/%3E%3C/svg%3E">
<link rel="canonical" href="{{SITE_URL}}set.html">
<meta name="theme-color" content="#12141a">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Does it stack?">
<meta property="og:title" content="Whole buff set — Does it stack?">
<meta property="og:description" content="Check a whole EverQuest buff set at once: which buffs cannot both be up, and which effects several of them carry where only one counts.">
<meta property="og:url" content="{{SITE_URL}}set.html">
<meta property="og:image" content="{{SITE_URL}}og.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Does it stack? — slot-by-slot buff arbitration for EverQuest">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Whole buff set — Does it stack?">
<meta name="twitter:description" content="Check a whole EverQuest buff set at once: which buffs cannot both be up, and which effects several of them carry where only one counts.">
<meta name="twitter:image" content="{{SITE_URL}}og.png">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"WebApplication","name":"Does it stack?","alternateName":"EverQuest buff stacking checker","url":"{{SITE_URL}}","description":"Check a whole EverQuest buff set at once: which buffs cannot both be up, and which effects several of them carry where only one counts.","applicationCategory":"GameApplication","operatingSystem":"Any","browserRequirements":"Requires JavaScript","isAccessibleForFree":true,"offers":{"@type":"Offer","price":"0","priceCurrency":"USD"},"about":{"@type":"VideoGame","name":"EverQuest"}}</script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="top">
<div class="wrap">
<h1>Does it stack?</h1>
<nav class="views" aria-label="Views">
<a class="view" href="index.html">Compare two</a>
<a class="view on" href="set.html" aria-current="page">Whole buff set</a>
</nav>
<p class="tag">Everything you expect to have up at once — what fights, and what overlaps without adding.</p>
</div>
</header>
<main class="wrap">
<section class="picker set-picker">
<label class="picker-label" for="q">Add a buff, song, discipline or AA</label>
<input id="q" class="search" type="search" autocomplete="off" placeholder="Search by name or spell id…">
<div class="results" id="results" hidden></div>
</section>
<section class="filters">
<div class="frow">
<span class="flabel">Source</span>
<div class="chips" id="kinds"></div>
</div>
<div class="frow">
<span class="flabel">Class</span>
<div class="chips" id="classes"></div>
</div>
<div class="frow opts">
<label><input type="checkbox" id="f-buffs" checked> Only effects with a duration</label>
<label><input type="checkbox" id="f-benef"> Beneficial only</label>
<label class="lvl">Caster level <input type="number" id="lvl" min="1" max="130" value="130"></label>
<label><input type="checkbox" id="f-exact"> SPA names</label>
<button id="clear" class="chip wide" hidden>Clear the set</button>
</div>
</section>
<section id="saved" class="saved"></section>
<section id="setlist" class="setlist"></section>
<section id="report" class="report" hidden></section>
<section id="empty" class="empty">
<p>Add the buffs you expect to be carrying and this will tell you which of them cannot be up at once, and which effects several of them carry where only one counts.</p>
<details class="evidence">
<summary>It will not tell you which set is best — why not</summary>
<p class="src" id="why-no-score"></p>
</details>
</section>
</main>
<footer class="wrap foot">
<p id="build"></p>
<p id="stale" hidden></p>
<p>Spell data is read from the EverQuest client's own files — not scraped — but by whoever published this copy, so it is only as current as the build above. <a id="repo-link" href="https://github.com/fadwen/doesitstack" target="_blank" rel="noopener">Run your own copy</a> to check against your install. The stacking rules are ported from the <a href="https://github.com/EQEmu/Server" target="_blank" rel="noopener">EQEmu server</a> — the most complete public implementation of them, but a volunteer reimplementation targeting a 2013 client, not Daybreak's own account of how the game works. Every rule records where it came from, and most of them are unverified. Not affiliated with Daybreak Game Company.</p>
<p id="credits" class="credits"></p>
</footer>
<script type="module" src="set.js"></script>
</body>
</html>