<gs-doc-navigation></gs-doc-navigation>

# Skills by Character

<script>
import "./../units/__stats__.js";
import { loadingProxyFor } from "./utils.js";

const heroKeys = ['riesz', 'orcus', 'loren', 'melissa', 'incarnation', 'healing-totem'];

const [ heroes, enemies ] = Array.from(Object.keys(self.stats))
  .partition(::heroKeys.includes)
  .map(array => array.map(key => loadingProxyFor(<gs-doc-widget-unit full unit={key}></gs-doc-widget-unit>)));

<div>
  <h1>Heroes</h1>
  <ul>
    {...heroes}
  </ul>
  <h1>Enemies</h1>
  <ul>
    {...enemies}
  </ul>
</div>;
</script>
