| 123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>PrUn NV1</title>
- <link rel="stylesheet" type="text/css" href="style.css">
- <link rel="icon" href="https://www.raylu.net/hammer-man.svg" />
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="theme-color" content="#222">
- </head>
- <body>
- <a href="/">← back</a>
- <main class="production">
- <form>
- <label>PUNoted API key: <input type="password" size="30" id="api-key"></label>
- <input type="button" value="fetch" id="fetch">
- </form>
- <section id="loader"></section>
- <div id="nv1"></div>
- </main>
- <div id="popover" popover="hint"></div>
- <script type="module">
- import {setupProduction} from './production.js';
- const blueprint = {
- 'NV1': 2,
- };
- const buy = new Set([
- 'ROM', 'PE', 'MG', 'MB', 'HD', 'RAM', 'MPC', 'SEN', 'C', 'PG', 'FLX', 'WAI'
- ])
- setupProduction(blueprint, buy, 'IC1', 1, document.querySelector('#nv1'));
- </script>
- </body>
- </html>
|