| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>PrUn WCB upgrade</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="wcb_upgrade"></div>
- </main>
- <div id="popover" popover="hint"></div>
- <script type="module">
- import {setupProduction} from './production.js';
- const blueprint = {
- 'LFE': 1,
- 'WCB': 1,
- 'MFL': 1,
- 'LHP': 64,
- 'SSC': 26,
- };
- const buy = new Set([
- // definitely buy
- 'C', 'FLX', 'H', 'H2O', 'HAL', 'HCP', 'HE', 'LST', 'MG', 'N', 'NA', 'NCS', 'NS', 'O', 'PE', 'PG', 'S', 'TCL', 'THF',
- // maybe buy
- 'AIR', 'AU', 'BE', 'BRM', 'BOR', 'BTS', 'CU', 'FAN', 'FC', 'FE', 'HCC', 'HD', 'LDI', 'LI', 'MFK', 'MWF', 'NFI',
- 'REA', 'RG', 'RGO', 'ROM', 'SFK', 'SI', 'STL', 'TCO', 'TPU',
- // import
- 'AAR', 'AWF', 'CAP', 'CF', 'RAD',
- ])
- setupProduction(blueprint, buy, 'IC1', 10, document.querySelector('#wcb_upgrade'));
- </script>
- </body>
- </html>
|