mirror of
https://github.com/thepaperpilot/Super-Auto-Coots.git
synced 2025-02-18 02:12:39 +00:00
Minor fixes
This commit is contained in:
parent
d230d2141c
commit
a422b297f2
2 changed files with 13 additions and 4 deletions
|
@ -128,6 +128,7 @@
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
image-rendering: pixelated;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stream-types .row > * {
|
.stream-types .row > * {
|
||||||
|
|
|
@ -432,8 +432,8 @@ export const characters: Record<string, CharacterInfo> = {
|
||||||
abilityDescription: char =>
|
abilityDescription: char =>
|
||||||
jsx(() => (
|
jsx(() => (
|
||||||
<>
|
<>
|
||||||
<i>Turn started</i>: Gain
|
<i>Turn started</i>: Gain {char.exp >= 6 ? 6 : char.exp >= 3 ? 4 : 2}{" "}
|
||||||
{char.exp >= 6 ? 6 : char.exp >= 3 ? 4 : 2} <img src={money_small} />
|
<img src={money_small} />
|
||||||
<span style="color: yellow">Moguls</span>
|
<span style="color: yellow">Moguls</span>
|
||||||
</>
|
</>
|
||||||
)),
|
)),
|
||||||
|
@ -1120,7 +1120,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
<img
|
<img
|
||||||
src={playAgain}
|
src={playAgain}
|
||||||
class="button"
|
class="button"
|
||||||
style="height: 20vmin; image-rendering: pixelated;"
|
style="height: 20vmin; image-rendering: pixelated; cursor: pointer"
|
||||||
onClick={() => location.reload()}
|
onClick={() => location.reload()}
|
||||||
/>
|
/>
|
||||||
{render(particles)}
|
{render(particles)}
|
||||||
|
@ -1462,7 +1462,15 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
</Row>
|
</Row>
|
||||||
</Row>
|
</Row>
|
||||||
<Row class="stream-types">
|
<Row class="stream-types">
|
||||||
<Tooltip display="Moguls persist (still gain 10 after battle)">
|
<Tooltip
|
||||||
|
display={jsx(() => (
|
||||||
|
<>
|
||||||
|
<img src={money_small} />
|
||||||
|
<span style="color: yellow">Moguls</span> persist (still gain 10
|
||||||
|
after battle)
|
||||||
|
</>
|
||||||
|
))}
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
class={{
|
class={{
|
||||||
"stream-type": true,
|
"stream-type": true,
|
||||||
|
|
Loading…
Add table
Reference in a new issue