Show an icon for each resource.
This commit is contained in:
parent
11bcbbc8a6
commit
d6f6a0bd00
BIN
public/img/icons/food.png
Normal file
BIN
public/img/icons/food.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 777 B |
BIN
public/img/icons/iron.png
Normal file
BIN
public/img/icons/iron.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 853 B |
BIN
public/img/icons/stone.png
Normal file
BIN
public/img/icons/stone.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 957 B |
BIN
public/img/icons/wood.png
Normal file
BIN
public/img/icons/wood.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 902 B |
@ -1,16 +1,33 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { getStorage } from "../utils";
|
import { getProduction, getStorage } from "../utils";
|
||||||
import village from "../village";
|
import village from "../village";
|
||||||
|
|
||||||
|
|
||||||
$: capacity = getStorage($village);
|
$: capacity = getStorage($village);
|
||||||
|
$: production = getProduction($village);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="resources">
|
<div class="resources">
|
||||||
<div>Wood: { Math.floor($village.resources.wood) } / { capacity.wood }</div>
|
<div>
|
||||||
<div>Stone: { Math.floor($village.resources.stone) } / { capacity.stone }</div>
|
<img src="/img/icons/wood.png" alt="Wood" />
|
||||||
<div>Iron: { Math.floor($village.resources.iron) } / { capacity.iron }</div>
|
{ Math.floor($village.resources.wood) } / { capacity.wood }
|
||||||
<div>Food: { Math.floor($village.resources.food) } / { capacity.food }</div>
|
({ production.wood >= 0 ? '+' : '' }{ production.wood })
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="/img/icons/stone.png" alt="Stone" />
|
||||||
|
{ Math.floor($village.resources.stone) } / { capacity.stone }
|
||||||
|
({ production.stone >= 0 ? '+' : '' }{ production.stone })
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="/img/icons/iron.png" alt="Iron" />
|
||||||
|
{ Math.floor($village.resources.iron) } / { capacity.iron }
|
||||||
|
({ production.iron >= 0 ? '+' : '' }{ production.iron })
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<img src="/img/icons/food.png" alt="Food" />
|
||||||
|
{ Math.floor($village.resources.food) } / { capacity.food }
|
||||||
|
({ production.food >= 0 ? '+' : '' }{ production.food })
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@ -18,4 +35,13 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.resources div {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.resources img {
|
||||||
|
height: 1.5em;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user