mirror of
https://github.com/chaoticbackup/chaoticbackup.github.io.git
synced 2026-09-10 09:35:46 -05:00
location displays loyality
This commit is contained in:
0
build/styles.css
Normal file
0
build/styles.css
Normal file
@@ -5,7 +5,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>Chaotic Backup</title>
|
<title>Chaotic Backup</title>
|
||||||
<meta name="description" content="Chaotic Backup">
|
<meta name="description" content="Chaotic Backup">
|
||||||
<link rel="stylesheet" type="text/css" href="public/style.css">
|
<link rel="stylesheet" type="text/css" href="/build/style.css">
|
||||||
<link rel="stylesheet" type="text/css" href="/src/css/legacy.css">
|
<link rel="stylesheet" type="text/css" href="/src/css/legacy.css">
|
||||||
<style>
|
<style>
|
||||||
html, body, div, span, a, p, ul, li, h1, code, nav {
|
html, body, div, span, a, p, ul, li, h1, code, nav {
|
||||||
|
|||||||
@@ -110,6 +110,7 @@ export default class SearchForm extends React.Component {
|
|||||||
<label><input type="checkbox" ref={(input) => this.stones.mirage = input}/>Mirage</label>
|
<label><input type="checkbox" ref={(input) => this.stones.mirage = input}/>Mirage</label>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
<label>Types:</label>
|
||||||
{card_types}
|
{card_types}
|
||||||
<br />
|
<br />
|
||||||
{card_tribes}
|
{card_tribes}
|
||||||
|
|||||||
@@ -37,6 +37,10 @@ export default class Creature extends React.Component {
|
|||||||
<Ability ability={creature.gsx$ability} tribe={creature.gsx$tribe} />
|
<Ability ability={creature.gsx$ability} tribe={creature.gsx$tribe} />
|
||||||
<Ability type="brainwashed" tribe={creature.gsx$tribe} ability={creature.gsx$brainwashed} />
|
<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}} />
|
<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>
|
<span className="flavortext">{creature.gsx$flavortext}</span>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<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>
|
||||||
<div className="right">
|
<div className="right">
|
||||||
<Ability ability={location.gsx$ability} />
|
<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>
|
<span className="flavortext">{location.gsx$flavortext}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -60,7 +60,8 @@
|
|||||||
color: black !important;
|
color: black !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flavortext {
|
.flavortext,
|
||||||
|
.chieftain {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ export default {
|
|||||||
comments: false,
|
comments: false,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
new ExtractTextPlugin('public/style.css', {
|
new ExtractTextPlugin('build/style.css', {
|
||||||
allChunks: true
|
allChunks: true
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user