This commit is contained in:
TimHasert 2023-08-21 00:13:06 +02:00
commit ded29423ec
50 changed files with 35442 additions and 0 deletions

5593
arms.json Normal file

File diff suppressed because it is too large Load Diff

5669
chest.json Normal file

File diff suppressed because it is too large Load Diff

1065
decorations.json Normal file

File diff suppressed because it is too large Load Diff

5674
head.json Normal file

File diff suppressed because it is too large Load Diff

1
index.html Normal file
View File

@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><title>MH2 Armor Set Searcher</title><meta name="description" content="Armor Set Searcher for Monster Hunter Dos"><meta name="author" content="TimH96"><meta property="og:title" content="MH2 Armor Set Searcher"><meta property="og:type" content="website"><meta property="og:url" content="https://timh96.github.io/mhdos-armor-set-searcher/"><meta property="og:description" content="Armor Set Searcher for Monster Hunter Dos"><link rel="stylesheet" href="styles.2dfe96f6.css"></head><body> <div id="header">MH Dos Armor Set Searcher</div> <div id="open-source" class="banner"> <p> This is an open-source project hosted on gh-pages, <a href="https://github.com/TimH96/mhdos-armor-set-searcher">here is the repository</a>. If you have a feature request or find any bugs, please create an issue on GitHub. You are also welcome to integrate them yourself via a Pull Request. </p> </div> <div id="main-body"> <div id="navbar-container"> <ul class="navbar"> <li class="navbar-option" data-selection="0">Search</li> <li class="navbar-option" data-selection="2">Equipment</li> </ul> </div> <div class="panel" id="search-container" data-panel-number="0"> <div id="search-global-settings"> <ul> <li> <select name="armor-type" id="armor-type"> <option value="1">Blademaster</option> <option value="2">Gunner</option> </select> </li> <li> <select name="weapon-slots" id="weapon-slots"> <option value="0">0 Weapon Slots</option> <option value="1">1 Weapon Slots</option> <option value="2">2 Weapon Slots</option> <option value="3">3 Weapon Slots</option> </select> </li> <li> <select name="armor-rarity" id="armor-rarity"> <option value="7">Armor RARE7</option> <option value="6">Armor RARE6</option> <option value="5">Armor RARE5</option> <option value="4">Armor RARE4</option> <option value="3">Armor RARE3</option> <option value="2">Armor RARE2</option> <option value="1">Armor RARE1</option> </select> </li> <li> <select name="deco-rarity" id="deco-rarity"> <option value="7">Deco RARE7</option> <option value="6">Deco RARE6</option> <option value="5">Deco RARE5</option> <option value="4">Deco RARE4</option> </select> </li> <li> <input type="number" name="search-limit" id="search-limit" min="1" max="1000" value="100"> </li> </ul> </div> <div id="search-skill-picker"></div> <div id="search-controls"> <ul> <li><button id="search-btn">Search</button></li> <li><button id="more-btn">More Skills</button></li> <li><button id="reset-btn">Reset</button></li> </ul> </div> <div id="search-results"></div> </div> <div class="panel" id="eq-settings-container" data-panel-number="2"> <div id="eq-container"></div> </div> </div> <script src="pages.f0b71adf.js"></script> </body></html>

341
index.js Normal file
View File

@ -0,0 +1,341 @@
// modules are defined as an array
// [ module function, map of requires ]
//
// map of requires is short require name -> numeric require
//
// anything defined in a previous bundle is accessed via the
// orig method which is the require for previous bundles
parcelRequire = (function (modules, cache, entry, globalName) {
// Save the require from previous bundle to this closure if any
var previousRequire = typeof parcelRequire === 'function' && parcelRequire;
var nodeRequire = typeof require === 'function' && require;
function newRequire(name, jumped) {
if (!cache[name]) {
if (!modules[name]) {
// if we cannot find the module within our internal map or
// cache jump to the current global require ie. the last bundle
// that was added to the page.
var currentRequire = typeof parcelRequire === 'function' && parcelRequire;
if (!jumped && currentRequire) {
return currentRequire(name, true);
}
// If there are other bundles on this page the require from the
// previous one is saved to 'previousRequire'. Repeat this as
// many times as there are bundles until the module is found or
// we exhaust the require chain.
if (previousRequire) {
return previousRequire(name, true);
}
// Try the node require function if it exists.
if (nodeRequire && typeof name === 'string') {
return nodeRequire(name);
}
var err = new Error('Cannot find module \'' + name + '\'');
err.code = 'MODULE_NOT_FOUND';
throw err;
}
localRequire.resolve = resolve;
localRequire.cache = {};
var module = cache[name] = new newRequire.Module(name);
modules[name][0].call(module.exports, localRequire, module, module.exports, this);
}
return cache[name].exports;
function localRequire(x){
return newRequire(localRequire.resolve(x));
}
function resolve(x){
return modules[name][1][x] || x;
}
}
function Module(moduleName) {
this.id = moduleName;
this.bundle = newRequire;
this.exports = {};
}
newRequire.isParcelRequire = true;
newRequire.Module = Module;
newRequire.modules = modules;
newRequire.cache = cache;
newRequire.parent = previousRequire;
newRequire.register = function (id, exports) {
modules[id] = [function (require, module) {
module.exports = exports;
}, {}];
};
var error;
for (var i = 0; i < entry.length; i++) {
try {
newRequire(entry[i]);
} catch (e) {
// Save first error but execute all entries
if (!error) {
error = e;
}
}
}
if (entry.length) {
// Expose entry point to Node, AMD or browser globals
// Based on https://github.com/ForbesLindesay/umd/blob/master/template.js
var mainExports = newRequire(entry[entry.length - 1]);
// CommonJS
if (typeof exports === "object" && typeof module !== "undefined") {
module.exports = mainExports;
// RequireJS
} else if (typeof define === "function" && define.amd) {
define(function () {
return mainExports;
});
// <script>
} else if (globalName) {
this[globalName] = mainExports;
}
}
// Override the current require with this new one
parcelRequire = newRequire;
if (error) {
// throw error from earlier, _after updating parcelRequire_
throw error;
}
return newRequire;
})({"../../../node_modules/parcel-bundler/src/builtins/bundle-url.js":[function(require,module,exports) {
var bundleURL = null;
function getBundleURLCached() {
if (!bundleURL) {
bundleURL = getBundleURL();
}
return bundleURL;
}
function getBundleURL() {
// Attempt to find the URL of the current script and use that as the base URL
try {
throw new Error();
} catch (err) {
var matches = ('' + err.stack).match(/(https?|file|ftp|chrome-extension|moz-extension):\/\/[^)\n]+/g);
if (matches) {
return getBaseURL(matches[0]);
}
}
return '/';
}
function getBaseURL(url) {
return ('' + url).replace(/^((?:https?|file|ftp|chrome-extension|moz-extension):\/\/.+)?\/[^/]+(?:\?.*)?$/, '$1') + '/';
}
exports.getBundleURL = getBundleURLCached;
exports.getBaseURL = getBaseURL;
},{}],"../../../node_modules/parcel-bundler/src/builtins/css-loader.js":[function(require,module,exports) {
var bundle = require('./bundle-url');
function updateLink(link) {
var newLink = link.cloneNode();
newLink.onload = function () {
link.remove();
};
newLink.href = link.href.split('?')[0] + '?' + Date.now();
link.parentNode.insertBefore(newLink, link.nextSibling);
}
var cssTimeout = null;
function reloadCSS() {
if (cssTimeout) {
return;
}
cssTimeout = setTimeout(function () {
var links = document.querySelectorAll('link[rel="stylesheet"]');
for (var i = 0; i < links.length; i++) {
if (bundle.getBaseURL(links[i].href) === bundle.getBundleURL()) {
updateLink(links[i]);
}
}
cssTimeout = null;
}, 50);
}
module.exports = reloadCSS;
},{"./bundle-url":"../../../node_modules/parcel-bundler/src/builtins/bundle-url.js"}],"../../../node_modules/parcel-bundler/src/builtins/hmr-runtime.js":[function(require,module,exports) {
var global = arguments[3];
var OVERLAY_ID = '__parcel__error__overlay__';
var OldModule = module.bundle.Module;
function Module(moduleName) {
OldModule.call(this, moduleName);
this.hot = {
data: module.bundle.hotData,
_acceptCallbacks: [],
_disposeCallbacks: [],
accept: function (fn) {
this._acceptCallbacks.push(fn || function () {});
},
dispose: function (fn) {
this._disposeCallbacks.push(fn);
}
};
module.bundle.hotData = null;
}
module.bundle.Module = Module;
var checkedAssets, assetsToAccept;
var parent = module.bundle.parent;
if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') {
var hostname = "" || location.hostname;
var protocol = location.protocol === 'https:' ? 'wss' : 'ws';
var ws = new WebSocket(protocol + '://' + hostname + ':' + "64954" + '/');
ws.onmessage = function (event) {
checkedAssets = {};
assetsToAccept = [];
var data = JSON.parse(event.data);
if (data.type === 'update') {
var handled = false;
data.assets.forEach(function (asset) {
if (!asset.isNew) {
var didAccept = hmrAcceptCheck(global.parcelRequire, asset.id);
if (didAccept) {
handled = true;
}
}
});
// Enable HMR for CSS by default.
handled = handled || data.assets.every(function (asset) {
return asset.type === 'css' && asset.generated.js;
});
if (handled) {
console.clear();
data.assets.forEach(function (asset) {
hmrApply(global.parcelRequire, asset);
});
assetsToAccept.forEach(function (v) {
hmrAcceptRun(v[0], v[1]);
});
} else if (location.reload) {
// `location` global exists in a web worker context but lacks `.reload()` function.
location.reload();
}
}
if (data.type === 'reload') {
ws.close();
ws.onclose = function () {
location.reload();
};
}
if (data.type === 'error-resolved') {
console.log('[parcel] ✨ Error resolved');
removeErrorOverlay();
}
if (data.type === 'error') {
console.error('[parcel] 🚨 ' + data.error.message + '\n' + data.error.stack);
removeErrorOverlay();
var overlay = createErrorOverlay(data);
document.body.appendChild(overlay);
}
};
}
function removeErrorOverlay() {
var overlay = document.getElementById(OVERLAY_ID);
if (overlay) {
overlay.remove();
}
}
function createErrorOverlay(data) {
var overlay = document.createElement('div');
overlay.id = OVERLAY_ID;
// html encode message and stack trace
var message = document.createElement('div');
var stackTrace = document.createElement('pre');
message.innerText = data.error.message;
stackTrace.innerText = data.error.stack;
overlay.innerHTML = '<div style="background: black; font-size: 16px; color: white; position: fixed; height: 100%; width: 100%; top: 0px; left: 0px; padding: 30px; opacity: 0.85; font-family: Menlo, Consolas, monospace; z-index: 9999;">' + '<span style="background: red; padding: 2px 4px; border-radius: 2px;">ERROR</span>' + '<span style="top: 2px; margin-left: 5px; position: relative;">🚨</span>' + '<div style="font-size: 18px; font-weight: bold; margin-top: 20px;">' + message.innerHTML + '</div>' + '<pre>' + stackTrace.innerHTML + '</pre>' + '</div>';
return overlay;
}
function getParents(bundle, id) {
var modules = bundle.modules;
if (!modules) {
return [];
}
var parents = [];
var k, d, dep;
for (k in modules) {
for (d in modules[k][1]) {
dep = modules[k][1][d];
if (dep === id || Array.isArray(dep) && dep[dep.length - 1] === id) {
parents.push(k);
}
}
}
if (bundle.parent) {
parents = parents.concat(getParents(bundle.parent, id));
}
return parents;
}
function hmrApply(bundle, asset) {
var modules = bundle.modules;
if (!modules) {
return;
}
if (modules[asset.id] || !bundle.parent) {
var fn = new Function('require', 'module', 'exports', asset.generated.js);
asset.isNew = !modules[asset.id];
modules[asset.id] = [fn, asset.deps];
} else if (bundle.parent) {
hmrApply(bundle.parent, asset);
}
}
function hmrAcceptCheck(bundle, id) {
var modules = bundle.modules;
if (!modules) {
return;
}
if (!modules[id] && bundle.parent) {
return hmrAcceptCheck(bundle.parent, id);
}
if (checkedAssets[id]) {
return;
}
checkedAssets[id] = true;
var cached = bundle.cache[id];
assetsToAccept.push([bundle, id]);
if (cached && cached.hot && cached.hot._acceptCallbacks.length) {
return true;
}
return getParents(global.parcelRequire, id).some(function (id) {
return hmrAcceptCheck(global.parcelRequire, id);
});
}
function hmrAcceptRun(bundle, id) {
var cached = bundle.cache[id];
bundle.hotData = {};
if (cached) {
cached.hot.data = bundle.hotData;
}
if (cached && cached.hot && cached.hot._disposeCallbacks.length) {
cached.hot._disposeCallbacks.forEach(function (cb) {
cb(bundle.hotData);
});
}
delete bundle.cache[id];
bundle(id);
cached = bundle.cache[id];
if (cached && cached.hot && cached.hot._acceptCallbacks.length) {
cached.hot._acceptCallbacks.forEach(function (cb) {
cb();
});
return true;
}
}
},{}]},{},["../../../node_modules/parcel-bundler/src/builtins/hmr-runtime.js"], null)
//# sourceMappingURL=/index.js.map

1
index.js.map Normal file
View File

@ -0,0 +1 @@
{"version":3,"sources":["../../../node_modules/parcel-bundler/src/builtins/bundle-url.js","../../../node_modules/parcel-bundler/src/builtins/css-loader.js"],"names":["bundleURL","getBundleURLCached","getBundleURL","Error","err","matches","stack","match","getBaseURL","url","replace","exports","bundle","require","updateLink","link","newLink","cloneNode","onload","remove","href","split","Date","now","parentNode","insertBefore","nextSibling","cssTimeout","reloadCSS","setTimeout","links","document","querySelectorAll","i","length","module"],"mappings":"AAAA,ACAA,IDAIA,ACAAY,MAAM,GDAG,ACAAC,GDAG,IAAI,ACAA,CAAC,cAAc,CAAC;ADCpC,ACCA,SDDSZ,ACCAa,UAAU,CAACC,IAAI,EAAE,CDDC,GAAG;EAC5B,ACCA,IDDI,ACCAC,CDDChB,MCCM,GDDG,ACCAe,EDDE,ECCE,CAACE,SAAS,EAAE;EAC9BD,EDDEhB,KCCK,CAACkB,GDDG,GAAGhB,ACCA,GAAG,SDDS,EAAE,CCCC;EDA7B,ECCEa,IAAI,CAACI,MAAM,EAAE;EDCf,ACAA,CAAC,MDAMnB,SAAS;AAClB,ECAEgB,OAAO,CAACI,IAAI,GAAGL,IAAI,CAACK,IAAI,CAACC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,GAAGC,IAAI,CAACC,GAAG,EAAE;ADE3D,ECDER,IAAI,CAACS,EDCEtB,QCDQ,CAACuB,GDCG,GAAG,MCDM,CAACT,OAAO,EAAED,IAAI,CAACW,WAAW,CAAC;AACzD,EDCE;ACCF,EDAE,ECAEC,EDAE,QCAQ,GAAG,IAAI;AACrB,IDAI,KCAKC,CDAC,IAAIzB,ICAI,CDAC,ECAE;EDCnB,ACAA,CDAC,CAAC,ECAEwB,KDAKvB,GAAG,EAAE,ACAA,EAAE;IDCd,ACAA,IDAIC,OAAO,GAAG,CAAC,EAAE,GAAGD,GAAG,CAACE,KAAK,EAAEC,KAAK,CAAC,+DAA+D,CAAC;ECCvG,EDAE,IAAIF,OAAO,EAAE;ECEfsB,IDDI,MCCM,CDDCnB,ECCEqB,QDDQ,CAACxB,CCCC,CAAC,KDDK,CAAC,CAAC,CAAC,CAAC,GCCG;IDAlC,ACCA,IAAIyB,KAAK,GAAGC,QAAQ,CAACC,gBAAgB,CAAC,wBAAwB,CAAC;EDAjE,ECCE,KAAK,IAAIC,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGH,KAAK,CAACI,MAAM,EAAED,CAAC,EAAE,EAAE;EDCzC,ICAI,GDAG,CCACrB,EDAE,ICAI,CAACJ,UAAU,CAACsB,KAAK,CAACG,CAAC,CAAC,CAACb,IAAI,CAAC,KAAKR,MAAM,CAACV,YAAY,EAAE,EAAE;ADCtE,QCAQY,UAAU,CAACgB,KAAK,CAACG,CAAC,CAAC,CAAC;ADE5B,MCDM,GDCGzB,UAAU,CAACC,GAAG,EAAE;EACvB,ECDE,KDCK,CAAC,EAAE,GAAGA,GAAG,EAAEC,OAAO,CAAC,gFAAgF,EAAE,IAAI,CAAC,GAAG,GAAG;AACzH,ICAIiB,UAAU,GAAG,IAAI;ADErBhB,ECDE,CAAC,EAAE,EDCE,ACDA,CDCCT,ACDA,YDCY,GAAGD,kBAAkB;AACzCU,ACDA,ODCO,CAACH,UAAU,GAAGA,UAAU;ACC/B2B,MAAM,CAACxB,OAAO,GAAGiB,SAAS","file":"index.js","sourceRoot":"..\\src\\app\\pages","sourcesContent":["var bundleURL = null;\nfunction getBundleURLCached() {\n if (!bundleURL) {\n bundleURL = getBundleURL();\n }\n\n return bundleURL;\n}\n\nfunction getBundleURL() {\n // Attempt to find the URL of the current script and use that as the base URL\n try {\n throw new Error;\n } catch (err) {\n var matches = ('' + err.stack).match(/(https?|file|ftp|chrome-extension|moz-extension):\\/\\/[^)\\n]+/g);\n if (matches) {\n return getBaseURL(matches[0]);\n }\n }\n\n return '/';\n}\n\nfunction getBaseURL(url) {\n return ('' + url).replace(/^((?:https?|file|ftp|chrome-extension|moz-extension):\\/\\/.+)?\\/[^/]+(?:\\?.*)?$/, '$1') + '/';\n}\n\nexports.getBundleURL = getBundleURLCached;\nexports.getBaseURL = getBaseURL;\n","var bundle = require('./bundle-url');\n\nfunction updateLink(link) {\n var newLink = link.cloneNode();\n newLink.onload = function () {\n link.remove();\n };\n newLink.href = link.href.split('?')[0] + '?' + Date.now();\n link.parentNode.insertBefore(newLink, link.nextSibling);\n}\n\nvar cssTimeout = null;\nfunction reloadCSS() {\n if (cssTimeout) {\n return;\n }\n\n cssTimeout = setTimeout(function () {\n var links = document.querySelectorAll('link[rel=\"stylesheet\"]');\n for (var i = 0; i < links.length; i++) {\n if (bundle.getBaseURL(links[i].href) === bundle.getBundleURL()) {\n updateLink(links[i]);\n }\n }\n\n cssTimeout = null;\n }, 50);\n}\n\nmodule.exports = reloadCSS;\n"]}

5513
legs.json Normal file

File diff suppressed because it is too large Load Diff

45
pages.012c2af1.js Normal file

File diff suppressed because one or more lines are too long

1
pages.012c2af1.js.map Normal file

File diff suppressed because one or more lines are too long

45
pages.115279a2.js Normal file

File diff suppressed because one or more lines are too long

1
pages.115279a2.js.map Normal file

File diff suppressed because one or more lines are too long

45
pages.12cbc066.js Normal file

File diff suppressed because one or more lines are too long

1
pages.12cbc066.js.map Normal file

File diff suppressed because one or more lines are too long

49
pages.2550135d.js Normal file

File diff suppressed because one or more lines are too long

1
pages.2550135d.js.map Normal file

File diff suppressed because one or more lines are too long

2988
pages.77de5100.js Normal file

File diff suppressed because one or more lines are too long

1
pages.77de5100.js.map Normal file

File diff suppressed because one or more lines are too long

45
pages.7b03f704.js Normal file

File diff suppressed because one or more lines are too long

1
pages.7b03f704.js.map Normal file

File diff suppressed because one or more lines are too long

49
pages.86d649dd.js Normal file

File diff suppressed because one or more lines are too long

1
pages.86d649dd.js.map Normal file

File diff suppressed because one or more lines are too long

45
pages.b1123622.js Normal file

File diff suppressed because one or more lines are too long

1
pages.b1123622.js.map Normal file

File diff suppressed because one or more lines are too long

49
pages.b6b680e9.js Normal file

File diff suppressed because one or more lines are too long

1
pages.b6b680e9.js.map Normal file

File diff suppressed because one or more lines are too long

45
pages.d5f4c1a5.js Normal file

File diff suppressed because one or more lines are too long

1
pages.d5f4c1a5.js.map Normal file

File diff suppressed because one or more lines are too long

43
pages.f0b71adf.js Normal file

File diff suppressed because one or more lines are too long

1
pages.f0b71adf.js.map Normal file

File diff suppressed because one or more lines are too long

49
pages.ffd06472.js Normal file

File diff suppressed because one or more lines are too long

1
pages.ffd06472.js.map Normal file

File diff suppressed because one or more lines are too long

10
skill-categories.json Normal file
View File

@ -0,0 +1,10 @@
[
"Attack and Defense",
"Health and Stamina",
"Evade and Blocking",
"Resistances",
"Item Related",
"Blademaster Exclusives",
"Gunner Exclusives",
"Misc."
]

75
skill-names.json Normal file
View File

@ -0,0 +1,75 @@
{
"0": "Alchemy",
"1": "Ammo Maker",
"2": "Anti-Theft",
"3": "Antiseptic",
"4": "Artillery",
"5": "Attack",
"6": "Auto-Guard",
"7": "Bomb Boost",
"8": "Carving",
"9": "Clust S+",
"10": "Cold Resistance",
"11": "Combo Rate",
"12": "Cooking",
"13": "Crag S+",
"14": "Defense",
"15": "Dragon Resistance",
"16": "Earplugs",
"17": "Eating",
"18": "Element Resistance",
"19": "Evasion",
"20": "Expert",
"21": "Fate",
"22": "Fire Resistance",
"23": "Fisher",
"24": "Gathering",
"25": "Gluttony",
"26": "Guard",
"27": "Handicraft",
"28": "Health",
"29": "Heat Resistance",
"30": "Hunger",
"31": "Ice Resistance",
"32": "Lasting Power",
"33": "Load",
"34": "Map",
"35": "Monster",
"36": "Normal S+",
"37": "Normal S Up",
"38": "Paralysis",
"39": "Pellet S+",
"40": "Pellet S Up",
"41": "Pierce S+",
"42": "Pierce S Up",
"43": "Poison",
"44": "Potential",
"45": "Precision",
"46": "Protection",
"47": "Psychic",
"48": "Rapid-Fire",
"49": "Recoil",
"50": "Recover Speed",
"51": "Recovery Items",
"52": "Reload Speed",
"53": "Sense",
"54": "Sharpness",
"55": "Sleep",
"56": "Snow Resistance",
"57": "Speed Gathering",
"58": "Speed Sharpening",
"59": "Stamina",
"60": "Status",
"61": "Stun",
"62": "Terrain",
"63": "Throw",
"64": "Thunder Resistance",
"65": "Torso Up",
"66": "Transporter",
"67": "Tremor Resistance",
"68": "Vocal Chords",
"69": "Water Resistance",
"70": "Whim",
"71": "Wide-Range",
"72": "Wind Pressure"
}

1731
skills.json Normal file

File diff suppressed because it is too large Load Diff

2
styles.2dfe96f6.css Normal file
View File

@ -0,0 +1,2 @@
:root{--color-text:#444;--color-background:#fffdfd;--color-border:#b9b9b9;--color-highlight:#f3f3f3;--color-highlighted-background:#c2daff;--color-header-background:#252525;--color-tab-hover:#afafaf;--color-negative-skill:#ce0808;--color-more-skills:#4979ff}table{border-collapse:collapse}body{min-width:600px;background-color:var(--color-background);overflow-x:hidden;line-height:1.4;color:var(--color-text);margin:0 0 8em;font:12px/1.5 -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}ul>li{display:inline-block;list-style-type:none}ul{padding:0;margin:0}#header,td,th,tr{text-align:center}#header{color:var(--color-highlight);background-color:var(--color-header-background);font-size:1.6em;width:100%;padding:.6em 1em;margin:-.1em 0 3em}#open-source{max-width:1200px;margin:auto auto 3em;font-size:1.2em;text-align:center}#open-source p{padding:0 6em}#main-body{max-width:1200px;margin:auto}.banner{background-color:var(--color-highlight);border:1px solid var(--color-border);border-radius:6px}.def{color:#000}.fir{color:#eb4545}.wat{color:#365b92}.ice{color:#32cce0}.thn{color:#cfcc09}.drg{color:#7a31aa}.neg-skill{color:var(--color-negative-skill)}.hidden{display:none}.highlighted{background-color:var(--color-highlighted-background)}#navbar-container{font-size:1.6em;border-bottom:1px solid var(--color-border);margin-bottom:1.6em}.navbar-option{position:relative;top:1px;width:6em;padding:.4em 2em;text-align:center;margin-bottom:-1px}.navbar-selected{border:1px solid var(--color-border);border-bottom:2px solid var(--color-background);border-radius:.4em .4em 0 0;z-index:3}.navbar-hover{background-color:var(--color-tab-hover);border-radius:.4em .4em 0 0;z-index:3}#search-global-settings input,#search-global-settings select{font-size:1.4em;margin-right:.6em}#search-controls button{font-size:1.3em;min-width:8em;margin:.6em .6em 0 0}.search-picker-category-title{padding:.4em 1em;margin:1em 0;font-weight:600}.search-picker-activation{margin:.4em .7em;width:14em;display:inline-flex;white-space:nowrap;cursor:pointer;user-select:none}.search-picker-activation-name{padding:0 .4em}#eq-container{display:grid;grid-template-columns:repeat(5,1fr);gap:.5em}.eq-column{border:1px solid var(--color-border);border-radius:6px;justify-content:center;text-align:center}.eq-column-item{padding:1em}.eq-column-header{background-color:var(--color-highlight)}#search-results{padding-top:2em}.results-title{font-size:1.4em}.results-banner{margin-top:.2em;font-size:1.2em;padding:.4em 1em}.results-table{margin-top:1em;width:100%}.results-table th{font-size:1.4em;text-align:center;background-color:var(--color-highlight)}.result-set,.results-table th{border-color:var(--color-border);border-style:solid;border-width:1px 0}.result-set{cursor:pointer}.result-set-row p{display:inline-block;margin:.3em 1em .3em 0}.result-set-row2 td{text-align:left;padding-left:3em}.result-set-unrelated{margin-left:3em}.result-set-unrelated-skill{margin-left:2em}.result-set-details{width:100%}.result-set-details-container{cursor:default;margin:1em auto;display:grid;width:90%;gap:1em;grid-template-columns:1fr 3fr}.result-set-skill-table th{font-size:1em;border-color:var(--color-border);border-style:solid;border-width:1px 0;background-color:var(--color-highlight)}.result-set-skill-table td{font-size:.8em}.result-set-skill-table{table-layout:unset}.results-more-skills-act{font-size:1.4em;color:var(--color-more-skills)}.results-more-skills-act-content{cursor:pointer}.result-set-piece-table{height:fit-content}.result-set-piece-table td,.result-set-piece-table th{font-size:.8em}.result-set-piece-table tr{border-color:var(--color-border);border-style:solid;border-width:1px 0}.pin-highlighted{background-color:var(--color-highlighted-background)}.excl-highlighted{background-color:var(--color-negative-skill)}
/*# sourceMappingURL=styles.2dfe96f6.css.map */

1
styles.2dfe96f6.css.map Normal file

File diff suppressed because one or more lines are too long

2
styles.448af117.css Normal file
View File

@ -0,0 +1,2 @@
:root{--color-text:#444;--color-background:#fffdfd;--color-border:#b9b9b9;--color-highlight:#f3f3f3;--color-highlighted-background:#c2daff;--color-header-background:#252525;--color-tab-hover:#afafaf;--color-negative-skill:#ce0808;--color-more-skills:#4979ff}table{border-collapse:collapse}body{min-width:600px;background-color:var(--color-background);overflow-x:hidden;line-height:1.4;color:var(--color-text);margin:0 0 8em;font:12px/1.5 -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}ul>li{display:inline-block;list-style-type:none}ul{padding:0;margin:0}#header{color:var(--color-highlight);background-color:var(--color-header-background);font-size:1.6em;text-align:center;width:100%;padding:.6em 1em;margin:-.1em 0 3em}#open-source{max-width:1200px;margin:auto auto 3em;font-size:1.2em;text-align:center}#open-source p{padding:0 6em}#main-body{max-width:1200px;margin:auto}.banner{background-color:var(--color-highlight);border:1px solid var(--color-border);border-radius:6px}.def{color:#000}.fir{color:#eb4545}.wat{color:#365b92}.ice{color:#32cce0}.thn{color:#cfcc09}.drg{color:#7a31aa}.neg-skill{color:var(--color-negative-skill)}.hidden{display:none}.highlighted{background-color:var(--color-highlighted-background)}#navbar-container{font-size:1.6em;border-bottom:1px solid var(--color-border);margin-bottom:1.6em}.navbar-option{position:relative;top:1px;width:6em;padding:.4em 2em;text-align:center;margin-bottom:-1px}.navbar-selected{border:1px solid var(--color-border);border-bottom:2px solid var(--color-background);border-radius:.4em .4em 0 0;z-index:3}.navbar-hover{background-color:var(--color-tab-hover);border-radius:.4em .4em 0 0;z-index:3}#search-global-settings input,#search-global-settings select{font-size:1.4em;margin-right:.6em}#search-controls button{font-size:1.3em;min-width:8em;margin:.6em .6em 0 0}.search-picker-category-title{padding:.4em 1em;margin:1em 0;font-weight:600}.search-picker-activation{margin:.4em .7em;width:10em;display:inline-flex;white-space:nowrap;cursor:pointer;user-select:none}.search-picker-activation-name{padding:0 .4em}#charm-picker{padding-bottom:.4em;border:solid var(--color-border);border-width:0 0 1px}#charm-import{margin-left:2em}.charm-skill-pick{width:10em}.charm-points-pick{width:3em}#charm-table{margin-top:2em}#charm-table tr,td,th{width:6em;text-align:center;font-size:1.1em}#charm-table tr{border-color:var(--color-border);border-style:solid;border-width:1px 0}#charm-table th{background-color:var(--color-highlight)}.charm-delete{cursor:pointer;user-select:none}#eq-container{display:grid;grid-template-columns:repeat(5,1fr);gap:.5em}.eq-column{border:1px solid var(--color-border);border-radius:6px;justify-content:center;text-align:center}.eq-column-item{padding:1em}.eq-column-header{background-color:var(--color-highlight)}#search-results{padding-top:2em}.results-title{font-size:1.4em}.results-banner{margin-top:.2em;font-size:1.2em;padding:.4em 1em}.results-table{margin-top:1em;width:100%}.results-table th{font-size:1.4em;text-align:center;background-color:var(--color-highlight)}.result-set,.results-table th{border-color:var(--color-border);border-style:solid;border-width:1px 0}.result-set{cursor:pointer}.result-set-row p{display:inline-block;margin:.3em 1em .3em 0}.result-set-row2 td{text-align:left;padding-left:3em}.result-set-unrelated{margin-left:3em}.result-set-unrelated-skill{margin-left:2em}.result-set-details{width:100%}.result-set-details-container{cursor:default;margin:1em auto;display:grid;width:90%;gap:1em;grid-template-columns:1fr 3fr}.result-set-skill-table th{font-size:1em;border-color:var(--color-border);border-style:solid;border-width:1px 0;background-color:var(--color-highlight)}.result-set-skill-table td{font-size:.8em}.result-set-skill-table{table-layout:unset}.results-more-skills-act{font-size:1.4em;color:var(--color-more-skills)}.results-more-skills-act-content{cursor:pointer}.result-set-piece-table{height:fit-content}.result-set-piece-table td,.result-set-piece-table th{font-size:.8em}.result-set-piece-table tr{border-color:var(--color-border);border-style:solid;border-width:1px 0}.pin-highlighted{background-color:var(--color-highlighted-background)}.excl-highlighted{background-color:var(--color-negative-skill)}
/*# sourceMappingURL=styles.448af117.css.map */

1
styles.448af117.css.map Normal file

File diff suppressed because one or more lines are too long

339
styles.8986bff4.css Normal file
View File

@ -0,0 +1,339 @@
:root {
--color-text: #444;
--color-background: rgb(255, 253, 253);
--color-border: rgb(185, 185, 185);
--color-highlight: rgb(243, 243, 243);
--color-highlighted-background: rgb(194, 218, 255);
--color-header-background: rgb(37, 37, 37);
--color-tab-hover: rgb(175, 175, 175);
--color-negative-skill: rgb(206, 8, 8);
--color-more-skills: rgb(73, 121, 255);
}
/* global */
table {
border-collapse: collapse;
}
body {
min-width: 600px;
background-color: var(--color-background);
overflow-x: hidden;
line-height: 1.4;
color: var(--color-text);
margin: 0 0 8em 0;
font: 12px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
ul > li {
display: inline-block;
list-style-type: none;
}
ul {
padding: 0;
margin: 0;
}
tr, td, th {
text-align: center;
}
/* main sections */
#header {
color: var(--color-highlight);
background-color: var(--color-header-background);
font-size: 1.6em;
text-align: center;
width: 100%;
padding: 0.6em 1em;
margin: -0.1em 0em 3em 0em;
}
#open-source {
max-width: 1200px;
margin: auto;
margin-bottom: 3em;
font-size: 1.2em;
text-align: center;
}
#open-source p {
padding: 0em 6em;
}
#main-body {
max-width: 1200px;
margin: auto;
}
/* global classes */
.banner {
background-color: var(--color-highlight);
border-style: solid;
border-width: 1px;
border-color: var(--color-border);
border-radius: 6px;
}
.def {
color: rgb(0, 0, 0);
}
.fir {
color: rgb(235, 69, 69);
}
.wat {
color: rgb(54, 91, 146);
}
.ice {
color: rgb(50, 204, 224);
}
.thn {
color: rgb(207, 204, 9);
}
.drg {
color: rgb(122, 49, 170);
}
.neg-skill {
color: var(--color-negative-skill);
}
.hidden {
display: none;
}
.highlighted {
background-color: var(--color-highlighted-background);
}
/* navbar */
#navbar-container {
font-size: 1.6em;
border-bottom: 1px solid var(--color-border);
margin-bottom: 1.6em;
}
.navbar-option {
position: relative;
top: 1px;
width: 6em;
padding: 0.4em 2em;
text-align: center;
margin-bottom: -1px;
}
.navbar-selected {
border-style: solid;
border-width: 1px 1px 2px 1px;
border-color: var(--color-border) var(--color-border) var(--color-background);
border-radius: 0.4em 0.4em 0 0;
z-index: 3;
}
.navbar-hover {
background-color: var(--color-tab-hover);
border-radius: 0.4em 0.4em 0 0;
z-index: 3;
}
/* skill picker and search controls */
#search-global-settings select {
font-size: 1.4em;
margin-right: 0.6em;
}
#search-global-settings input {
font-size: 1.4em;
margin-right: 0.6em;
}
#search-controls button {
font-size: 1.3em;
min-width: 8em;
margin: 0.6em 0.6em 0 0;
}
.search-picker-category-title {
padding: 0.4em 1em;
margin: 1em 0;
font-weight: 600;
}
.search-picker-activation {
margin: 0.4em 0.7em;
width: 14em;
display: inline-flex;
white-space: nowrap;
cursor: pointer;
user-select: none;
}
.search-picker-activation-name {
padding: 0 0.4em;
}
/* eq-settings */
#eq-container {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 0.5em;
}
.eq-column {
border: var(--color-border) solid 1px;
border-radius: 6px;
justify-content: center;
text-align: center;
}
.eq-column-item {
padding: 1em;
}
.eq-column-header {
background-color: var(--color-highlight);
}
/* results */
#search-results {
padding-top: 2em;
}
.results-title {
font-size: 1.4em;
}
.results-banner {
margin-top: 0.2em;
font-size: 1.2em;
padding: 0.4em 1em;
}
.results-table {
margin-top: 1em;
width: 100%;
}
.results-table th {
font-size: 1.4em;
text-align: center;
background-color: var(--color-highlight);
border-width: 1px 0;
border-color: var(--color-border);
border-style: solid;
}
.result-set {
border-width: 1px 0;
border-color: var(--color-border);
border-style: solid;
cursor: pointer;
}
.result-set-row p {
display: inline-block;
margin: 0.3em 1em 0.3em 0;
}
.result-set-row2 td {
text-align: left;
padding-left: 3em;
}
.result-set-unrelated {
margin-left: 3em;
}
.result-set-unrelated-skill {
margin-left: 2em;
}
.result-set-details {
width: 100%;
}
.result-set-details-container {
cursor: default;
margin: 1em auto;
display: grid;
width: 90%;
gap: 1em;
grid-template-columns: 1fr 3fr;
}
.result-set-skill-table th {
font-size: 1em;
border-width: 1px 0;
border-color: var(--color-border);
border-style: solid;
background-color: var(--color-highlight);
}
.result-set-skill-table td {
font-size: 0.8em;
}
.result-set-skill-table {
table-layout: unset;
}
.results-more-skills-act {
font-size: 1.4em;
color: var(--color-more-skills);
}
.results-more-skills-act-content {
cursor: pointer;
}
.result-set-piece-table {
height: fit-content;
}
.result-set-piece-table th {
font-size: 0.8em;
}
.result-set-piece-table td {
font-size: 0.8em;
}
.result-set-piece-table tr {
border-width: 1px 0;
border-color: var(--color-border);
border-style: solid;
}
.pin-highlighted {
background-color: var(--color-highlighted-background);
}
.excl-highlighted {
background-color: var(--color-negative-skill);
}
/*# sourceMappingURL=/styles.8986bff4.css.map */

1
styles.8986bff4.css.map Normal file

File diff suppressed because one or more lines are too long

345
styles.8986bff4.js Normal file
View File

@ -0,0 +1,345 @@
// modules are defined as an array
// [ module function, map of requires ]
//
// map of requires is short require name -> numeric require
//
// anything defined in a previous bundle is accessed via the
// orig method which is the require for previous bundles
parcelRequire = (function (modules, cache, entry, globalName) {
// Save the require from previous bundle to this closure if any
var previousRequire = typeof parcelRequire === 'function' && parcelRequire;
var nodeRequire = typeof require === 'function' && require;
function newRequire(name, jumped) {
if (!cache[name]) {
if (!modules[name]) {
// if we cannot find the module within our internal map or
// cache jump to the current global require ie. the last bundle
// that was added to the page.
var currentRequire = typeof parcelRequire === 'function' && parcelRequire;
if (!jumped && currentRequire) {
return currentRequire(name, true);
}
// If there are other bundles on this page the require from the
// previous one is saved to 'previousRequire'. Repeat this as
// many times as there are bundles until the module is found or
// we exhaust the require chain.
if (previousRequire) {
return previousRequire(name, true);
}
// Try the node require function if it exists.
if (nodeRequire && typeof name === 'string') {
return nodeRequire(name);
}
var err = new Error('Cannot find module \'' + name + '\'');
err.code = 'MODULE_NOT_FOUND';
throw err;
}
localRequire.resolve = resolve;
localRequire.cache = {};
var module = cache[name] = new newRequire.Module(name);
modules[name][0].call(module.exports, localRequire, module, module.exports, this);
}
return cache[name].exports;
function localRequire(x){
return newRequire(localRequire.resolve(x));
}
function resolve(x){
return modules[name][1][x] || x;
}
}
function Module(moduleName) {
this.id = moduleName;
this.bundle = newRequire;
this.exports = {};
}
newRequire.isParcelRequire = true;
newRequire.Module = Module;
newRequire.modules = modules;
newRequire.cache = cache;
newRequire.parent = previousRequire;
newRequire.register = function (id, exports) {
modules[id] = [function (require, module) {
module.exports = exports;
}, {}];
};
var error;
for (var i = 0; i < entry.length; i++) {
try {
newRequire(entry[i]);
} catch (e) {
// Save first error but execute all entries
if (!error) {
error = e;
}
}
}
if (entry.length) {
// Expose entry point to Node, AMD or browser globals
// Based on https://github.com/ForbesLindesay/umd/blob/master/template.js
var mainExports = newRequire(entry[entry.length - 1]);
// CommonJS
if (typeof exports === "object" && typeof module !== "undefined") {
module.exports = mainExports;
// RequireJS
} else if (typeof define === "function" && define.amd) {
define(function () {
return mainExports;
});
// <script>
} else if (globalName) {
this[globalName] = mainExports;
}
}
// Override the current require with this new one
parcelRequire = newRequire;
if (error) {
// throw error from earlier, _after updating parcelRequire_
throw error;
}
return newRequire;
})({"../../../node_modules/parcel-bundler/src/builtins/bundle-url.js":[function(require,module,exports) {
var bundleURL = null;
function getBundleURLCached() {
if (!bundleURL) {
bundleURL = getBundleURL();
}
return bundleURL;
}
function getBundleURL() {
// Attempt to find the URL of the current script and use that as the base URL
try {
throw new Error();
} catch (err) {
var matches = ('' + err.stack).match(/(https?|file|ftp|chrome-extension|moz-extension):\/\/[^)\n]+/g);
if (matches) {
return getBaseURL(matches[0]);
}
}
return '/';
}
function getBaseURL(url) {
return ('' + url).replace(/^((?:https?|file|ftp|chrome-extension|moz-extension):\/\/.+)?\/[^/]+(?:\?.*)?$/, '$1') + '/';
}
exports.getBundleURL = getBundleURLCached;
exports.getBaseURL = getBaseURL;
},{}],"../../../node_modules/parcel-bundler/src/builtins/css-loader.js":[function(require,module,exports) {
var bundle = require('./bundle-url');
function updateLink(link) {
var newLink = link.cloneNode();
newLink.onload = function () {
link.remove();
};
newLink.href = link.href.split('?')[0] + '?' + Date.now();
link.parentNode.insertBefore(newLink, link.nextSibling);
}
var cssTimeout = null;
function reloadCSS() {
if (cssTimeout) {
return;
}
cssTimeout = setTimeout(function () {
var links = document.querySelectorAll('link[rel="stylesheet"]');
for (var i = 0; i < links.length; i++) {
if (bundle.getBaseURL(links[i].href) === bundle.getBundleURL()) {
updateLink(links[i]);
}
}
cssTimeout = null;
}, 50);
}
module.exports = reloadCSS;
},{"./bundle-url":"../../../node_modules/parcel-bundler/src/builtins/bundle-url.js"}],"styles.css":[function(require,module,exports) {
var reloadCSS = require('_css_loader');
module.hot.dispose(reloadCSS);
module.hot.accept(reloadCSS);
},{"_css_loader":"../../../node_modules/parcel-bundler/src/builtins/css-loader.js"}],"../../../node_modules/parcel-bundler/src/builtins/hmr-runtime.js":[function(require,module,exports) {
var global = arguments[3];
var OVERLAY_ID = '__parcel__error__overlay__';
var OldModule = module.bundle.Module;
function Module(moduleName) {
OldModule.call(this, moduleName);
this.hot = {
data: module.bundle.hotData,
_acceptCallbacks: [],
_disposeCallbacks: [],
accept: function (fn) {
this._acceptCallbacks.push(fn || function () {});
},
dispose: function (fn) {
this._disposeCallbacks.push(fn);
}
};
module.bundle.hotData = null;
}
module.bundle.Module = Module;
var checkedAssets, assetsToAccept;
var parent = module.bundle.parent;
if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') {
var hostname = "" || location.hostname;
var protocol = location.protocol === 'https:' ? 'wss' : 'ws';
var ws = new WebSocket(protocol + '://' + hostname + ':' + "65067" + '/');
ws.onmessage = function (event) {
checkedAssets = {};
assetsToAccept = [];
var data = JSON.parse(event.data);
if (data.type === 'update') {
var handled = false;
data.assets.forEach(function (asset) {
if (!asset.isNew) {
var didAccept = hmrAcceptCheck(global.parcelRequire, asset.id);
if (didAccept) {
handled = true;
}
}
});
// Enable HMR for CSS by default.
handled = handled || data.assets.every(function (asset) {
return asset.type === 'css' && asset.generated.js;
});
if (handled) {
console.clear();
data.assets.forEach(function (asset) {
hmrApply(global.parcelRequire, asset);
});
assetsToAccept.forEach(function (v) {
hmrAcceptRun(v[0], v[1]);
});
} else if (location.reload) {
// `location` global exists in a web worker context but lacks `.reload()` function.
location.reload();
}
}
if (data.type === 'reload') {
ws.close();
ws.onclose = function () {
location.reload();
};
}
if (data.type === 'error-resolved') {
console.log('[parcel] ✨ Error resolved');
removeErrorOverlay();
}
if (data.type === 'error') {
console.error('[parcel] 🚨 ' + data.error.message + '\n' + data.error.stack);
removeErrorOverlay();
var overlay = createErrorOverlay(data);
document.body.appendChild(overlay);
}
};
}
function removeErrorOverlay() {
var overlay = document.getElementById(OVERLAY_ID);
if (overlay) {
overlay.remove();
}
}
function createErrorOverlay(data) {
var overlay = document.createElement('div');
overlay.id = OVERLAY_ID;
// html encode message and stack trace
var message = document.createElement('div');
var stackTrace = document.createElement('pre');
message.innerText = data.error.message;
stackTrace.innerText = data.error.stack;
overlay.innerHTML = '<div style="background: black; font-size: 16px; color: white; position: fixed; height: 100%; width: 100%; top: 0px; left: 0px; padding: 30px; opacity: 0.85; font-family: Menlo, Consolas, monospace; z-index: 9999;">' + '<span style="background: red; padding: 2px 4px; border-radius: 2px;">ERROR</span>' + '<span style="top: 2px; margin-left: 5px; position: relative;">🚨</span>' + '<div style="font-size: 18px; font-weight: bold; margin-top: 20px;">' + message.innerHTML + '</div>' + '<pre>' + stackTrace.innerHTML + '</pre>' + '</div>';
return overlay;
}
function getParents(bundle, id) {
var modules = bundle.modules;
if (!modules) {
return [];
}
var parents = [];
var k, d, dep;
for (k in modules) {
for (d in modules[k][1]) {
dep = modules[k][1][d];
if (dep === id || Array.isArray(dep) && dep[dep.length - 1] === id) {
parents.push(k);
}
}
}
if (bundle.parent) {
parents = parents.concat(getParents(bundle.parent, id));
}
return parents;
}
function hmrApply(bundle, asset) {
var modules = bundle.modules;
if (!modules) {
return;
}
if (modules[asset.id] || !bundle.parent) {
var fn = new Function('require', 'module', 'exports', asset.generated.js);
asset.isNew = !modules[asset.id];
modules[asset.id] = [fn, asset.deps];
} else if (bundle.parent) {
hmrApply(bundle.parent, asset);
}
}
function hmrAcceptCheck(bundle, id) {
var modules = bundle.modules;
if (!modules) {
return;
}
if (!modules[id] && bundle.parent) {
return hmrAcceptCheck(bundle.parent, id);
}
if (checkedAssets[id]) {
return;
}
checkedAssets[id] = true;
var cached = bundle.cache[id];
assetsToAccept.push([bundle, id]);
if (cached && cached.hot && cached.hot._acceptCallbacks.length) {
return true;
}
return getParents(global.parcelRequire, id).some(function (id) {
return hmrAcceptCheck(global.parcelRequire, id);
});
}
function hmrAcceptRun(bundle, id) {
var cached = bundle.cache[id];
bundle.hotData = {};
if (cached) {
cached.hot.data = bundle.hotData;
}
if (cached && cached.hot && cached.hot._disposeCallbacks.length) {
cached.hot._disposeCallbacks.forEach(function (cb) {
cb(bundle.hotData);
});
}
delete bundle.cache[id];
bundle(id);
cached = bundle.cache[id];
if (cached && cached.hot && cached.hot._acceptCallbacks.length) {
cached.hot._acceptCallbacks.forEach(function (cb) {
cb();
});
return true;
}
}
},{}]},{},["../../../node_modules/parcel-bundler/src/builtins/hmr-runtime.js"], null)
//# sourceMappingURL=/styles.8986bff4.js.map

1
styles.8986bff4.js.map Normal file
View File

@ -0,0 +1 @@
{"version":3,"sources":["../../../node_modules/parcel-bundler/src/builtins/bundle-url.js","../../../node_modules/parcel-bundler/src/builtins/css-loader.js"],"names":["bundleURL","getBundleURLCached","getBundleURL","Error","err","matches","stack","match","getBaseURL","url","replace","exports","bundle","require","updateLink","link","newLink","cloneNode","onload","remove","href","split","Date","now","parentNode","insertBefore","nextSibling","cssTimeout","reloadCSS","setTimeout","links","document","querySelectorAll","i","length","module"],"mappings":"AAAA,ACAA,IDAIA,ACAAY,MAAM,GDAG,ACAAC,GDAG,IAAI,ACAA,CAAC,cAAc,CAAC;ADCpC,ACCA,SDDSZ,ACCAa,UAAU,CAACC,IAAI,EAAE,CDDC,GAAG;EAC5B,ACCA,IDDI,ACCAC,CDDChB,MCCM,GDDG,ACCAe,EDDE,ECCE,CAACE,SAAS,EAAE;EAC9BD,EDDEhB,KCCK,CAACkB,GDDG,GAAGhB,ACCA,GAAG,SDDS,EAAE,CCCC;EDA7B,ECCEa,IAAI,CAACI,MAAM,EAAE;EDCf,ACAA,CAAC,MDAMnB,SAAS;AAClB,ECAEgB,OAAO,CAACI,IAAI,GAAGL,IAAI,CAACK,IAAI,CAACC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,GAAGC,IAAI,CAACC,GAAG,EAAE;ADE3D,ECDER,IAAI,CAACS,EDCEtB,QCDQ,CAACuB,GDCG,GAAG,MCDM,CAACT,OAAO,EAAED,IAAI,CAACW,WAAW,CAAC;AACzD,EDCE;ACCF,EDAE,ECAEC,EDAE,QCAQ,GAAG,IAAI;AACrB,IDAI,KCAKC,CDAC,IAAIzB,ICAI,CDAC,ECAE;EDCnB,ACAA,CDAC,CAAC,ECAEwB,KDAKvB,GAAG,EAAE,ACAA,EAAE;IDCd,ACAA,IDAIC,OAAO,GAAG,CAAC,EAAE,GAAGD,GAAG,CAACE,KAAK,EAAEC,KAAK,CAAC,+DAA+D,CAAC;ECCvG,EDAE,IAAIF,OAAO,EAAE;ECEfsB,IDDI,MCCM,CDDCnB,ECCEqB,QDDQ,CAACxB,CCCC,CAAC,KDDK,CAAC,CAAC,CAAC,CAAC,GCCG;IDAlC,ACCA,IAAIyB,KAAK,GAAGC,QAAQ,CAACC,gBAAgB,CAAC,wBAAwB,CAAC;EDAjE,ECCE,KAAK,IAAIC,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGH,KAAK,CAACI,MAAM,EAAED,CAAC,EAAE,EAAE;EDCzC,ICAI,GDAG,CCACrB,EDAE,ICAI,CAACJ,UAAU,CAACsB,KAAK,CAACG,CAAC,CAAC,CAACb,IAAI,CAAC,KAAKR,MAAM,CAACV,YAAY,EAAE,EAAE;ADCtE,QCAQY,UAAU,CAACgB,KAAK,CAACG,CAAC,CAAC,CAAC;ADE5B,MCDM,GDCGzB,UAAU,CAACC,GAAG,EAAE;EACvB,ECDE,KDCK,CAAC,EAAE,GAAGA,GAAG,EAAEC,OAAO,CAAC,gFAAgF,EAAE,IAAI,CAAC,GAAG,GAAG;AACzH,ICAIiB,UAAU,GAAG,IAAI;ADErBhB,ECDE,CAAC,EAAE,EDCE,ACDA,CDCCT,ACDA,YDCY,GAAGD,kBAAkB;AACzCU,ACDA,ODCO,CAACH,UAAU,GAAGA,UAAU;ACC/B2B,MAAM,CAACxB,OAAO,GAAGiB,SAAS","file":"styles.8986bff4.js","sourceRoot":"..\\src\\app\\pages","sourcesContent":["var bundleURL = null;\nfunction getBundleURLCached() {\n if (!bundleURL) {\n bundleURL = getBundleURL();\n }\n\n return bundleURL;\n}\n\nfunction getBundleURL() {\n // Attempt to find the URL of the current script and use that as the base URL\n try {\n throw new Error;\n } catch (err) {\n var matches = ('' + err.stack).match(/(https?|file|ftp|chrome-extension|moz-extension):\\/\\/[^)\\n]+/g);\n if (matches) {\n return getBaseURL(matches[0]);\n }\n }\n\n return '/';\n}\n\nfunction getBaseURL(url) {\n return ('' + url).replace(/^((?:https?|file|ftp|chrome-extension|moz-extension):\\/\\/.+)?\\/[^/]+(?:\\?.*)?$/, '$1') + '/';\n}\n\nexports.getBundleURL = getBundleURLCached;\nexports.getBaseURL = getBaseURL;\n","var bundle = require('./bundle-url');\n\nfunction updateLink(link) {\n var newLink = link.cloneNode();\n newLink.onload = function () {\n link.remove();\n };\n newLink.href = link.href.split('?')[0] + '?' + Date.now();\n link.parentNode.insertBefore(newLink, link.nextSibling);\n}\n\nvar cssTimeout = null;\nfunction reloadCSS() {\n if (cssTimeout) {\n return;\n }\n\n cssTimeout = setTimeout(function () {\n var links = document.querySelectorAll('link[rel=\"stylesheet\"]');\n for (var i = 0; i < links.length; i++) {\n if (bundle.getBaseURL(links[i].href) === bundle.getBundleURL()) {\n updateLink(links[i]);\n }\n }\n\n cssTimeout = null;\n }, 50);\n}\n\nmodule.exports = reloadCSS;\n"]}

2
styles.b047d270.css Normal file
View File

@ -0,0 +1,2 @@
:root{--color-text:#444;--color-background:#fffdfd;--color-border:#b9b9b9;--color-highlight:#f3f3f3;--color-highlighted-background:#c2daff;--color-header-background:#252525;--color-tab-hover:#afafaf;--color-negative-skill:#ce0808;--color-more-skills:#4979ff}table{border-collapse:collapse}body{min-width:600px;background-color:var(--color-background);overflow-x:hidden;line-height:1.4;color:var(--color-text);margin:0 0 8em;font:12px/1.5 -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}ul>li{display:inline-block;list-style-type:none}ul{padding:0;margin:0}#header{color:var(--color-highlight);background-color:var(--color-header-background);font-size:1.6em;text-align:center;width:100%;padding:.6em 1em;margin:-.1em 0 3em}#open-source{max-width:1200px;margin:auto auto 3em;font-size:1.2em;text-align:center}#open-source p{padding:0 6em}#main-body{max-width:1200px;margin:auto}.banner{background-color:var(--color-highlight);border:1px solid var(--color-border);border-radius:6px}.def{color:#000}.fir{color:#eb4545}.wat{color:#365b92}.ice{color:#32cce0}.thn{color:#cfcc09}.drg{color:#7a31aa}.neg-skill{color:var(--color-negative-skill)}.hidden{display:none}.highlighted{background-color:var(--color-highlighted-background)}#navbar-container{font-size:1.6em;border-bottom:1px solid var(--color-border);margin-bottom:1.6em}.navbar-option{position:relative;top:1px;width:4em;padding:.4em 2em;text-align:center;margin-bottom:-1px}.navbar-selected{border:1px solid var(--color-border);border-bottom:2px solid var(--color-background);border-radius:.4em .4em 0 0;z-index:3}.navbar-hover{background-color:var(--color-tab-hover);border-radius:.4em .4em 0 0;z-index:3}#search-global-settings input,#search-global-settings select{font-size:1.4em;margin-right:.6em}#search-controls button{font-size:1.3em;min-width:8em;margin:.6em .6em 0 0}.search-picker-category-title{padding:.4em 1em;margin:1em 0;font-weight:600}.search-picker-activation{margin:.4em .7em;width:10em;display:inline-flex;white-space:nowrap;cursor:pointer;user-select:none}.search-picker-activation-name{padding:0 .4em}#charm-picker{padding-bottom:.4em;border:solid var(--color-border);border-width:0 0 1px}#charm-import{margin-left:2em}.charm-skill-pick{width:10em}.charm-points-pick{width:3em}#charm-table{margin-top:2em}#charm-table tr,td,th{width:6em;text-align:center;font-size:1.1em}#charm-table tr{border-color:var(--color-border);border-style:solid;border-width:1px 0}#charm-table th{background-color:var(--color-highlight)}.charm-delete{cursor:pointer;user-select:none}#search-results{padding-top:2em}.results-title{font-size:1.4em}.results-banner{margin-top:.2em;font-size:1.2em;padding:.4em 1em}.results-table{margin-top:1em;width:100%}.results-table th{font-size:1.4em;text-align:center;background-color:var(--color-highlight)}.result-set,.results-table th{border-color:var(--color-border);border-style:solid;border-width:1px 0}.result-set{cursor:pointer}.result-set-row p{display:inline-block;margin:.3em 1em .3em 0}.result-set-row2 td{text-align:left;padding-left:3em}.result-set-unrelated{margin-left:3em}.result-set-unrelated-skill{margin-left:2em}.result-set-details{width:100%}.result-set-details-container{margin:1em auto;width:80%}.result-set-skill-table th{font-size:1em;border-color:var(--color-border);border-style:solid;border-width:1px 0;background-color:var(--color-highlight)}.result-set-skill-table td{font-size:.8em}.result-set-skill-table{table-layout:unset}.results-more-skills-act{font-size:1.4em;color:var(--color-more-skills)}
/*# sourceMappingURL=styles.b047d270.css.map */

1
styles.b047d270.css.map Normal file

File diff suppressed because one or more lines are too long

2
styles.c964de15.css Normal file
View File

@ -0,0 +1,2 @@
:root{--color-text:#444;--color-background:#fffdfd;--color-border:#b9b9b9;--color-highlight:#f3f3f3;--color-highlighted-background:#c2daff;--color-header-background:#252525;--color-tab-hover:#afafaf;--color-negative-skill:#ce0808;--color-more-skills:#4979ff}table{border-collapse:collapse}body{min-width:600px;background-color:var(--color-background);overflow-x:hidden;line-height:1.4;color:var(--color-text);margin:0 0 8em;font:12px/1.5 -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}ul>li{display:inline-block;list-style-type:none}ul{padding:0;margin:0}#header{color:var(--color-highlight);background-color:var(--color-header-background);font-size:1.6em;text-align:center;width:100%;padding:.6em 1em;margin:-.1em 0 3em}#open-source{max-width:1200px;margin:auto auto 3em;font-size:1.2em;text-align:center}#open-source p{padding:0 6em}#main-body{max-width:1200px;margin:auto}.banner{background-color:var(--color-highlight);border:1px solid var(--color-border);border-radius:6px}.def{color:#000}.fir{color:#eb4545}.wat{color:#365b92}.ice{color:#32cce0}.thn{color:#cfcc09}.drg{color:#7a31aa}.neg-skill{color:var(--color-negative-skill)}.hidden{display:none}.highlighted{background-color:var(--color-highlighted-background)}#navbar-container{font-size:1.6em;border-bottom:1px solid var(--color-border);margin-bottom:1.6em}.navbar-option{position:relative;top:1px;width:6em;padding:.4em 2em;text-align:center;margin-bottom:-1px}.navbar-selected{border:1px solid var(--color-border);border-bottom:2px solid var(--color-background);border-radius:.4em .4em 0 0;z-index:3}.navbar-hover{background-color:var(--color-tab-hover);border-radius:.4em .4em 0 0;z-index:3}#search-global-settings input,#search-global-settings select{font-size:1.4em;margin-right:.6em}#search-controls button{font-size:1.3em;min-width:8em;margin:.6em .6em 0 0}.search-picker-category-title{padding:.4em 1em;margin:1em 0;font-weight:600}.search-picker-activation{margin:.4em .7em;width:10em;display:inline-flex;white-space:nowrap;cursor:pointer;user-select:none}.search-picker-activation-name{padding:0 .4em}#charm-picker{padding-bottom:.4em;border:solid var(--color-border);border-width:0 0 1px}#charm-import{margin-left:2em}.charm-skill-pick{width:10em}.charm-points-pick{width:3em}#charm-table{margin-top:2em}#charm-table tr,td,th{width:6em;text-align:center;font-size:1.1em}#charm-table tr{border-color:var(--color-border);border-style:solid;border-width:1px 0}#charm-table th{background-color:var(--color-highlight)}.charm-delete{cursor:pointer;user-select:none}#eq-container{display:grid;grid-template-columns:repeat(5,1fr);gap:.5em}.eq-column{border:1px solid var(--color-border);border-radius:6px;justify-content:center;text-align:center}.eq-column-item{padding:1em}.eq-column-header{background-color:var(--color-highlight)}#search-results{padding-top:2em}.results-title{font-size:1.4em}.results-banner{margin-top:.2em;font-size:1.2em;padding:.4em 1em}.results-table{margin-top:1em;width:100%}.results-table th{font-size:1.4em;text-align:center;background-color:var(--color-highlight)}.result-set,.results-table th{border-color:var(--color-border);border-style:solid;border-width:1px 0}.result-set{cursor:pointer}.result-set-row p{display:inline-block;margin:.3em 1em .3em 0}.result-set-row2 td{text-align:left;padding-left:3em}.result-set-unrelated{margin-left:3em}.result-set-unrelated-skill{margin-left:2em}.result-set-details{width:100%}.result-set-details-container{cursor:default;margin:1em auto;display:grid;width:90%;gap:1em;grid-template-columns:1fr 3fr}.result-set-skill-table th{font-size:1em;border-color:var(--color-border);border-style:solid;border-width:1px 0;background-color:var(--color-highlight)}.result-set-skill-table td{font-size:.8em}.result-set-skill-table{table-layout:unset}.results-more-skills-act{font-size:1.4em;color:var(--color-more-skills)}.results-more-skills-act-content{cursor:pointer}.result-set-piece-table td,.result-set-piece-table th{font-size:.8em}.result-set-piece-table tr{border-color:var(--color-border);border-style:solid;border-width:1px 0}.pin-highlighted{background-color:var(--color-highlighted-background)}.excl-highlighted{background-color:var(--color-negative-skill)}
/*# sourceMappingURL=styles.c964de15.css.map */

1
styles.c964de15.css.map Normal file

File diff suppressed because one or more lines are too long

2
styles.e3e4fb64.css Normal file
View File

@ -0,0 +1,2 @@
:root{--color-text:#444;--color-background:#fffdfd;--color-border:#b9b9b9;--color-highlight:#f3f3f3;--color-highlighted-background:#c2daff;--color-header-background:#252525;--color-tab-hover:#afafaf;--color-negative-skill:#ce0808;--color-more-skills:#4979ff}table{border-collapse:collapse}body{min-width:600px;background-color:var(--color-background);overflow-x:hidden;line-height:1.4;color:var(--color-text);margin:0 0 8em;font:12px/1.5 -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}ul>li{display:inline-block;list-style-type:none}ul{padding:0;margin:0}#header{color:var(--color-highlight);background-color:var(--color-header-background);font-size:1.6em;text-align:center;width:100%;padding:.6em 1em;margin:-.1em 0 3em}#open-source{max-width:1200px;margin:auto auto 3em;font-size:1.2em;text-align:center}#open-source p{padding:0 6em}#main-body{max-width:1200px;margin:auto}.banner{background-color:var(--color-highlight);border:1px solid var(--color-border);border-radius:6px}.def{color:#000}.fir{color:#eb4545}.wat{color:#365b92}.ice{color:#32cce0}.thn{color:#cfcc09}.drg{color:#7a31aa}.neg-skill{color:var(--color-negative-skill)}.hidden{display:none}.highlighted{background-color:var(--color-highlighted-background)}#navbar-container{font-size:1.6em;border-bottom:1px solid var(--color-border);margin-bottom:1.6em}.navbar-option{position:relative;top:1px;width:4em;padding:.4em 2em;text-align:center;margin-bottom:-1px}.navbar-selected{border:1px solid var(--color-border);border-bottom:2px solid var(--color-background);border-radius:.4em .4em 0 0;z-index:3}.navbar-hover{background-color:var(--color-tab-hover);border-radius:.4em .4em 0 0;z-index:3}#search-global-settings input,#search-global-settings select{font-size:1.4em;margin-right:.6em}#search-controls button{font-size:1.3em;min-width:8em;margin:.6em .6em 0 0}.search-picker-category-title{padding:.4em 1em;margin:1em 0;font-weight:600}.search-picker-activation{margin:.4em .7em;width:10em;display:inline-flex;white-space:nowrap;cursor:pointer;user-select:none}.search-picker-activation-name{padding:0 .4em}#charm-picker{padding-bottom:.4em;border:solid var(--color-border);border-width:0 0 1px}#charm-import{margin-left:2em}.charm-skill-pick{width:10em}.charm-points-pick{width:3em}#charm-table{margin-top:2em}#charm-table tr,td,th{width:6em;text-align:center;font-size:1.1em}#charm-table tr{border-color:var(--color-border);border-style:solid;border-width:1px 0}#charm-table th{background-color:var(--color-highlight)}.charm-delete{cursor:pointer;user-select:none}#search-results{padding-top:2em}.results-title{font-size:1.4em}.results-banner{margin-top:.2em;font-size:1.2em;padding:.4em 1em}.results-table{margin-top:1em;width:100%}.results-table th{font-size:1.4em;text-align:center;background-color:var(--color-highlight)}.result-set,.results-table th{border-color:var(--color-border);border-style:solid;border-width:1px 0}.result-set{cursor:pointer}.result-set-row p{display:inline-block;margin:.3em 1em .3em 0}.result-set-row2 td{text-align:left;padding-left:3em}.result-set-unrelated{margin-left:3em}.result-set-unrelated-skill{margin-left:2em}.result-set-details{width:100%}.result-set-details-container{margin:1em auto;width:80%}.result-set-skill-table th{font-size:1em;border-color:var(--color-border);border-style:solid;border-width:1px 0;background-color:var(--color-highlight)}.result-set-skill-table td{font-size:.8em}.result-set-skill-table{table-layout:unset}.results-more-skills-act{font-size:1.4em;color:var(--color-more-skills)}.results-more-skills-act-content{cursor:pointer}
/*# sourceMappingURL=styles.e3e4fb64.css.map */

1
styles.e3e4fb64.css.map Normal file

File diff suppressed because one or more lines are too long

5559
waist.json Normal file

File diff suppressed because it is too large Load Diff