Add a modal for the option info

This commit is contained in:
Oliver-Akins 2021-12-17 01:41:25 -06:00
parent 64fbf66e63
commit 52c6866817

View file

@ -0,0 +1,37 @@
<script lang="ts">
import BaseModal from "./BaseModal.svelte";
export let open: boolean = false;
</script>
<BaseModal {open} on:close>
<div class="foreground">
<h1>Option Info</h1>
<hr>
<h2>No Secrets</h2>
<p>
During the mining phase of each round, all cards remain face up,
this includes the piles that are available for choosing from and
the cards each player has chosen stay visible until the movement
phase begins.
</p>
<h2>Hardcore Mode</h2>
<p>
When Hardcore Mode is enabled, you can only use the emergency stop
card <b>one time</b> for the entire game!
</p>
<h2>Warp Gate Activated!</h2>
<p>
With this option enabled, when a spaceship enters the Warp Gate
space (#54), it is immediately removed from the board, but the warp
gate remains open. This allows more spaceships to enter the gate
before the end of the round, any additional spaceships that enter
the warp gate before the round ends share in the victory because
they escaped from
</p>
<h2>Chaos Theory</h2>
<p>
! ! ! ChAoS ! ! !
</p>
</div>
</BaseModal>