590aa2269d
* Clean up logic for positive/negative rolls; fix customizer logical xor moment * ....why did I leave extra code in embarassing bug how did you not catch this before pushing anyway this should fix CI creator * unicorn horn (#255) * unicorn horn 50% rn in game * Update ingreds_clean.json * Update ingreds_compress.json * Bump ing db version * Add parry buff, and lifesteal lol offensive lifesteal reinforcing the stereotype * Bamboozle should be fire conversion thanks felixtape also I thought I fixed this ages ago * Update doc.html so it works missing lifesteal elem * Serve our own copies of bootstrap and autocomplete random npm outage wtf * Whoops... forgot to replace autocomplete.js, and macy --------- Co-authored-by: hppeng <hppeng> Co-authored-by: RawFish69 <108964215+RawFish69@users.noreply.github.com>
25 lines
1.2 KiB
HTML
25 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html scroll-behavior="smooth">
|
|
<head>
|
|
<meta name="HandheldFriendly" content="true" />
|
|
<meta name="MobileOptimized" content="320" />
|
|
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width, user-scalable=no" />
|
|
<!-- nunito font, copying wynndata -->
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=.45, user-scalable=no">
|
|
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
|
|
<link href="/thirdparty/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="../css/sq2bs.css">
|
|
<link rel="icon" href="../media/icons/new/crafter.png">
|
|
<link rel="manifest" href="manifest.json">
|
|
<title>WynnCrafter</title>
|
|
</head>
|
|
<body id = "body"></body>
|
|
<script type="text/javascript">
|
|
let getUrl = window.location;
|
|
let baseUrl = getUrl.protocol + "//" + getUrl.host + "/";
|
|
let hash = window.location.hash;
|
|
window.location.href = baseUrl + "custom/" + hash;
|
|
</script>
|
|
</html>
|