Add a modal for the option info
This commit is contained in:
parent
64fbf66e63
commit
52c6866817
1 changed files with 37 additions and 0 deletions
37
web-svelte/src/components/modals/OptionInfo.svelte
Normal file
37
web-svelte/src/components/modals/OptionInfo.svelte
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue