-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
251 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<script lang="ts"> | ||
import EnemyIcon from "./EnemyIcon.svelte"; | ||
</script> | ||
|
||
<main> | ||
<div> | ||
<EnemyIcon name="bat" showDeaths={false} /> | ||
<EnemyIcon name="snake" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="spider" /> | ||
<EnemyIcon name="giant_spider" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="caveman" /> | ||
<EnemyIcon name="skeleton" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="zombie" showDeaths={false} /> | ||
<EnemyIcon name="vampire" showDeaths={false} /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="frog" /> | ||
<EnemyIcon name="monkey" showDeaths={false} /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="fire_frog" /> | ||
<EnemyIcon name="mantrap" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="piranha" /> | ||
<EnemyIcon name="megamouth" showDeaths={false} /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="yeti" /> | ||
<EnemyIcon name="yeti_king" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="alien" /> | ||
<EnemyIcon name="ufo" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="alien_boss" /> | ||
<EnemyIcon name="hawkman" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="tomb_lord" /> | ||
<EnemyIcon name="shopkeeper" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="magma_man" showKills={false} /> | ||
<EnemyIcon name="olmec" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="ghost" showKills={false} /> | ||
</div> | ||
</main> | ||
|
||
<style> | ||
main { | ||
padding: 0.1em; | ||
margin: 0 auto; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<script lang="ts"> | ||
import EnemyIcon from "./EnemyIcon.svelte"; | ||
</script> | ||
|
||
<main> | ||
<div> | ||
<EnemyIcon name="bat" showDeaths={false} /> | ||
<EnemyIcon name="snake" /> | ||
<EnemyIcon name="spider" /> | ||
<EnemyIcon name="giant_spider" /> | ||
<EnemyIcon name="caveman" /> | ||
</div> | ||
<div /> | ||
<div> | ||
<EnemyIcon name="zombie" showDeaths={false} /> | ||
<EnemyIcon name="vampire" showDeaths={false} /> | ||
<EnemyIcon name="frog" /> | ||
<EnemyIcon name="fire_frog" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="monkey" showDeaths={false} /> | ||
<EnemyIcon name="mantrap" /> | ||
<EnemyIcon name="piranha" /> | ||
<EnemyIcon name="megamouth" showDeaths={false} /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="yeti" /> | ||
<EnemyIcon name="yeti_king" /> | ||
<EnemyIcon name="alien" /> | ||
<EnemyIcon name="ufo" /> | ||
<EnemyIcon name="alien_boss" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="hawkman" /> | ||
<EnemyIcon name="tomb_lord" /> | ||
<EnemyIcon name="shopkeeper" /> | ||
<EnemyIcon name="magma_man" showKills={false} /> | ||
<EnemyIcon name="olmec" /> | ||
</div> | ||
<div> | ||
<EnemyIcon name="skeleton" /> | ||
<EnemyIcon name="ghost" showKills={false} /> | ||
</div> | ||
</main> | ||
|
||
<style> | ||
main { | ||
padding: 0.1em; | ||
margin: 0 auto; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<script lang="ts"> | ||
import StatIcon from "./StatIcon.svelte"; | ||
</script> | ||
|
||
<main> | ||
<div> | ||
<StatIcon collection="misc_deaths" name="rock" /> | ||
<StatIcon collection="misc_deaths" name="explosion" /> | ||
<StatIcon collection="misc_deaths" name="crushed" /> | ||
<StatIcon collection="misc_deaths" name="long_fall" /> | ||
<StatIcon collection="misc_deaths" name="spikes" /> | ||
<!-- <StatIcon collection="misc_deaths" name="boulder" /> --> | ||
</div> | ||
<div> | ||
<StatIcon collection="misc_deaths" name="arrow_trap" /> | ||
<StatIcon collection="misc_deaths" name="spear_trap" /> | ||
<StatIcon collection="misc_deaths" name="smash_trap" /> | ||
<StatIcon collection="misc_deaths" name="ceiling_trap" /> | ||
<StatIcon collection="misc_deaths" name="pit" /> | ||
<StatIcon collection="misc_deaths" name="lava" /> | ||
</div> | ||
</main> | ||
|
||
<style> | ||
main { | ||
padding: 0.1em; | ||
margin: 0 auto; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<script lang="ts"> | ||
import StatIcon from "./StatIcon.svelte"; | ||
</script> | ||
|
||
<main> | ||
<div> | ||
<StatIcon collection="misc_deaths" name="rock" /> | ||
<StatIcon collection="misc_deaths" name="explosion" /> | ||
<StatIcon collection="misc_deaths" name="crushed" /> | ||
<StatIcon collection="misc_deaths" name="long_fall" /> | ||
</div> | ||
<div> | ||
<StatIcon collection="misc_deaths" name="spikes" /> | ||
<StatIcon collection="misc_deaths" name="arrow_trap" /> | ||
<StatIcon collection="misc_deaths" name="spear_trap" /> | ||
<StatIcon collection="misc_deaths" name="smash_trap" /> | ||
</div> | ||
<div> | ||
<!-- <StatIcon collection="misc_deaths" name="boulder" /> --> | ||
<StatIcon collection="misc_deaths" name="ceiling_trap" /> | ||
<StatIcon collection="misc_deaths" name="pit" /> | ||
<StatIcon collection="misc_deaths" name="lava" /> | ||
</div> | ||
</main> | ||
|
||
<style> | ||
main { | ||
padding: 0.1em; | ||
margin: 0 auto; | ||
} | ||
</style> |
Oops, something went wrong.