mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-04-01 13:31:01 +00:00
Add metal to scene
This commit is contained in:
parent
3c890e003b
commit
01396a2ee2
1 changed files with 7 additions and 0 deletions
|
@ -8,6 +8,12 @@
|
||||||
class="scene-item"
|
class="scene-item"
|
||||||
style="left: 65%; bottom: 12%; width: 40px; height: 40px"
|
style="left: 65%; bottom: 12%; width: 40px; height: 40px"
|
||||||
/>
|
/>
|
||||||
|
<img
|
||||||
|
v-if="day >= 6"
|
||||||
|
:src="metal"
|
||||||
|
class="scene-item"
|
||||||
|
style="left: 72%; bottom: 8%; width: 40px; height: 40px"
|
||||||
|
/>
|
||||||
<img v-if="day >= 3" :src="elves" class="scene-item" style="left: 52%; bottom: 12%" />
|
<img v-if="day >= 3" :src="elves" class="scene-item" style="left: 52%; bottom: 12%" />
|
||||||
<div v-if="day >= 4" class="scene-bubble" style="left: 50%; bottom: 38%">
|
<div v-if="day >= 4" class="scene-bubble" style="left: 50%; bottom: 38%">
|
||||||
<img v-if="day >= 4" :src="paper" class="scene-item" />
|
<img v-if="day >= 4" :src="paper" class="scene-item" />
|
||||||
|
@ -23,6 +29,7 @@ import coal from "./symbols/coal.png";
|
||||||
import elves from "./symbols/elf.png";
|
import elves from "./symbols/elf.png";
|
||||||
import paper from "./symbols/paperStacks.png";
|
import paper from "./symbols/paperStacks.png";
|
||||||
import boxes from "./symbols/cardboardBox.png";
|
import boxes from "./symbols/cardboardBox.png";
|
||||||
|
import metal from "./symbols/metal.png";
|
||||||
|
|
||||||
defineProps<{
|
defineProps<{
|
||||||
day: number;
|
day: number;
|
||||||
|
|
Loading…
Add table
Reference in a new issue