From 4d983932193ccb228515300919b0128d426a612c Mon Sep 17 00:00:00 2001 From: ana Date: Sun, 8 Aug 2021 18:03:01 +0200 Subject: feat: more things, almost finished --- public/index.css | 26 ++++++++- src/App.svelte | 165 +++++++++++++++++++++++++++++++++++++++---------------- src/bestiary.js | 1 - 3 files changed, 144 insertions(+), 48 deletions(-) diff --git a/public/index.css b/public/index.css index 2f5d6f1..b8d18c5 100644 --- a/public/index.css +++ b/public/index.css @@ -1,4 +1,28 @@ /* Add CSS styles here! */ body { - font-family: sans-serif; + font-family: Arial, Helvetica, sans-serif; +} + +header { + margin-top: 15px; + display: flex; + flex: 0 1 auto; + justify-content: space-between; + max-width: 40em; + border-bottom: 1px solid #ccc; + padding-bottom: 10px; +} +header ul { + list-style: none; + display: flex; + padding: 0; + margin: 0 10px; +} + +header ul li { + margin: 0px 10px; +} + +.container { + margin: 20px; } diff --git a/src/App.svelte b/src/App.svelte index a68b9ee..7402b73 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -1,5 +1,5 @@ -
-

- Level: -

- - Level is {$level}
- - Time is {currentEzTime}
- -
matches
- - -
regular enemies
+
    - {#each normalMatches as m (m.name)} -
  • (Lv{m.level}) {m.name}
  • - {/each} +
  • Eureka Mark Tracker
  • +
  • ET: {currentEzTime}
- -
special enemies that do not mutate/augment right now
-
    - {#each otherMatches as m (m.name)} -
  • - (Lv{m.level}) {m.name} - ({#if m.mutating}mutates{/if}{#if m.augmenting}augments{/if} - {formatNextUptime(m.uptime.futureUptime)}) -
  • - {/each} -
- - Pagos Weather is {pagosForecast[0].weatherName} -
+ +
+
+
+

+ Level: +

+ +
matches
+
    + {#each upMatches as m (m.name)} +
  • + (Lv{m.level}) {m.name} + ({#if m.mutating}mutates{/if}{#if m.augmenting}augments{/if} in {formatWeathers( + m.uptime.weathers + )}) +
  • + {/each} +
+ +
regular enemies
+
    + {#each normalMatches as m (m.name)} +
  • (Lv{m.level}) {m.name}
  • + {/each} +
+ +
special enemies that do not mutate/augment right now
+
    + {#each otherMatches as m (m.name)} +
  • + (Lv{m.level}) {m.name} + ({#if m.mutating}mutates{/if}{#if m.augmenting}augments{/if} + {formatNextUptime(m.uptime.futureUptime)}) +
  • + {/each} +
+
+
+
+
    +
  • + Anemos: {anemosForecast[0].weatherName} +
  • +
  • Pagos: {pagosForecast[0].weatherName}
  • +
  • Pyros: {pyrosForecast[0].weatherName}
  • +
  • + Hydatos: {hydatosForecast[0].weatherName} +
  • +
+
+

What is this?

+

+ This is a website to keep track of which monsters in Eureka are mutating + or augmenting right now. Mutating/augmenting massively increases the EXP + yield, and it is therefore preferrable to go after these monsters when + levelling in Eureka. +

+ Mutation/augmentation requirements are bound by weather, as well as time + of day. I created this so I didn't need to look through various google sheets + and cross-reference with weather forecasts. +

+
+

+ Created by Raiah Belse (Twintania)
+ Source +

+
+
+
diff --git a/src/bestiary.js b/src/bestiary.js index 0598abb..4a061be 100644 --- a/src/bestiary.js +++ b/src/bestiary.js @@ -18,7 +18,6 @@ export function getMatches(forecast, level) { }); } }); - console.log(res); return res; } -- cgit 1.4.1-2-gfad0