mirror of
https://github.com/chaoticbackup/chaoticbackup.github.io.git
synced 2026-09-15 20:15:46 -05:00
location displays loyality
This commit is contained in:
@@ -110,6 +110,7 @@ export default class SearchForm extends React.Component {
|
||||
<label><input type="checkbox" ref={(input) => this.stones.mirage = input}/>Mirage</label>
|
||||
</div>
|
||||
<br />
|
||||
<label>Types:</label>
|
||||
{card_types}
|
||||
<br />
|
||||
{card_tribes}
|
||||
|
||||
@@ -37,6 +37,10 @@ export default class Creature extends React.Component {
|
||||
<Ability ability={creature.gsx$ability} tribe={creature.gsx$tribe} />
|
||||
<Ability type="brainwashed" tribe={creature.gsx$tribe} ability={creature.gsx$brainwashed} />
|
||||
<Unique data={{unique: creature.gsx$unique, loyal: creature.gsx$loyal, legendary: creature.gsx$legendary, tribe: creature.gsx$tribe}} />
|
||||
{/*chieftain*/
|
||||
creature.gsx$types.includes("Chieftain") &&
|
||||
<span className="chieftain">(Minions use Brainwashed text. Minions may only play Generic Mugic.)<br /></span>
|
||||
}
|
||||
<span className="flavortext">{creature.gsx$flavortext}</span>
|
||||
</div>
|
||||
<br />
|
||||
@@ -51,3 +55,5 @@ export default class Creature extends React.Component {
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -22,6 +22,7 @@ export default class Location extends React.Component {
|
||||
</div>
|
||||
<div className="right">
|
||||
<Ability ability={location.gsx$ability} />
|
||||
<Unique data={{unique: location.gsx$unique, loyal: location.gsx$loyal, legendary: location.gsx$legendary}} /><br />
|
||||
<span className="flavortext">{location.gsx$flavortext}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -60,7 +60,8 @@
|
||||
color: black !important;
|
||||
}
|
||||
|
||||
.flavortext {
|
||||
.flavortext,
|
||||
.chieftain {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user