-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/remove initiate situation (#522)
* Remove the initiate situation action * Clean up remaining traces of initiate situation * Update terms and action logs
- Loading branch information
Showing
20 changed files
with
207 additions
and
129 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
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
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,67 @@ | ||
import Image from "next/image" | ||
import { Avatar } from "@mui/material" | ||
import TaxFarmerIcon from "@/images/icons/taxFarmer.svg" | ||
import TermLayout from "@/components/TermLayout" | ||
import TermLink from "@/components/TermLink" | ||
|
||
// Description of the game term: Event | ||
const HarborFeesTerm = () => ( | ||
<TermLayout | ||
title="Event" | ||
icon={ | ||
<Avatar sx={{ height: 56, width: 56 }}> | ||
<Image | ||
src={TaxFarmerIcon} | ||
height={44} | ||
width={44} | ||
alt="Random event icon" | ||
/> | ||
</Avatar> | ||
} | ||
> | ||
<p> | ||
An <b>Event</b> is a random occurrence that happens at the beginning of a{" "} | ||
<TermLink name="Faction" displayName="Faction's" /> initiative during the{" "} | ||
<TermLink name="Forum Phase" />. Only the Fates hold the answers to what | ||
comes next, but the possibilities are confined to the following: | ||
</p> | ||
<h5 className="mt-3 font-bold">Common Events</h5> | ||
<ul> | ||
<li> | ||
New <TermLink name="Enemy Leader" /> | ||
</li> | ||
<li> | ||
New <TermLink name="Family" /> | ||
</li> | ||
<li> | ||
New <TermLink name="Secret" /> (gained by the initiating Faction) | ||
</li> | ||
<li> | ||
New <TermLink name="War" /> | ||
</li> | ||
</ul> | ||
<h5 className="mt-3 font-bold">Rare Events</h5> | ||
<ul> | ||
<li>Allied Enthusiasm</li> | ||
<li>Ally Deserts</li> | ||
<li>Barbarian Raids</li> | ||
<li>Enemy Ally Deserts</li> | ||
<li>Enemy Leader Dies</li> | ||
<li>Epidemic</li> | ||
<li>Evil Omens</li> | ||
<li>Famine</li> | ||
<li>Internal Disorder</li> | ||
<li>Manpower Shortage</li> | ||
<li>Natural Disaster</li> | ||
<li>New Alliance</li> | ||
<li>Mob Violence</li> | ||
<li>Pretender</li> | ||
<li>Refuge</li> | ||
<li>Rhodian Alliance</li> | ||
<li>Storm at Sea</li> | ||
<li>Trial of Verres</li> | ||
</ul> | ||
</TermLayout> | ||
) | ||
|
||
export default HarborFeesTerm |
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
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
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
Oops, something went wrong.