hollow-knight-completion-check/index.html
2020-08-26 16:31:39 +02:00

120 lines
No EOL
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;700&display=swap" rel="stylesheet">
<link href="css/fontello.css" rel="stylesheet" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
<title>Hollow Knight Completion Check</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta property="og:title" content="Hollow Knight Completion Check">
<meta property="og:description" content="">
<meta property="og:image" content="http://reznortech.rf.gd/favicon.png">
<meta property="og:url" content="http://reznortech.rf.gd/hollow-knight-completion">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:site_name" content="rezno[R].tech">
<meta name="twitter:image:alt" content="Hollow Knight Completion Check">
<meta name="author" content="ReznoR Michael">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="icon" href="../favicon.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- <script src="loadJson.js"></script> -->
<script src="HKCheckCompletion.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136831794-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-136831794-2');
</script>
</head>
<body>
<!-- To do:
- Single Mask Shards locations
- Single Vessel Fragments locations
- Single Pale Ore locations?
-->
<div id="content">
<h1 id="h1-title">Hollow Knight Completion % Check</h1>
<p class="smalltext">Check what you have left for completion. <a href="https://bloodorca.github.io/hollow/" target="_blank">Github Source Code</a><br>
Use bloodorca's amazing <a href="https://bloodorca.github.io/hollow/" target="_blank">[ Online Hollow Knight Save Editor ]</a> to decode your save file.<br>
CTRL+A, CTRL+C the decoded save data and CTRL+V it into the text box below to analyze.<br>
This is a very early version. Some data is WIP and some data may be incorrect.
</p>
<div style="margin-bottom: 20px;"></div>
<div>
<textarea name="save-area" id="save-area"></textarea>
</div>
<div>
<button id="save-area-read" onclick="HKReadTextArea();">Analyze</button>
</div>
<div style="margin-bottom: 20px;"></div>
<h2>Game Completion Status</h2>
<div id="hk-intro"></div>
<h2>Bosses (WIP)</h2>
<div id="hk-bosses"></div>
<h2>Charms</h2>
<div id="hk-charms"></div>
<h2>Colosseum of Fools</h2>
<div id="hk-colosseum"></div>
<h2>Dreamers</h2>
<div id="hk-dreamers"></div>
<h2>Dream Nail and Essence</h2>
<div id="hk-dreamnail"></div>
<h2>Equipment</h2>
<div id="hk-equipment"></div>
<h2>Mask Shards (WIP, 6/16)</h2>
<div id="hk-maskshards"></div>
<h2>Nail Arts</h2>
<div id="hk-nailarts"></div>
<h2>Nail Upgrades</h2>
<div id="hk-nailupgrades"></div>
<h2>Spells</h2>
<div id="hk-spells"></div>
<h2>Vessel Fragments (WIP, 4/9)</h2>
<div id="hk-vesselfragments"></div>
<h2>Warrior Dreams</h2>
<div id="hk-warriordreams"></div>
<h2>Grimm Troupe Content Pack</h2>
<div id="hk-grimmtroupe"></div>
<h2>Lifeblood Content Pack</h2>
<div id="hk-lifeblood"></div>
<h2>Godmaster Content Pack</h2>
<div id="hk-godmaster"></div>
</div> <!-- end content -->
</body>
</html>