mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-02-16 09:31:43 +00:00
Add wrapping paper and ribbons to scene
This commit is contained in:
parent
93038164e6
commit
5235dc924e
2 changed files with 6 additions and 1 deletions
|
@ -56,6 +56,8 @@
|
|||
<img v-if="day >= 5" :src="boxes" class="scene-item" />
|
||||
<img v-if="day >= 9" :src="plastic" class="scene-item" />
|
||||
<img v-if="day >= 10" :src="dyes" class="scene-item" />
|
||||
<img v-if="day >= 14" :src="wrappingPaper" class="scene-item" />
|
||||
<img v-if="day >= 15" :src="ribbons" class="scene-item" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -75,6 +77,8 @@ import dyes from "./symbols/dyes.png";
|
|||
import management from "./symbols/elfManagement.png";
|
||||
import advManagement from "./symbols/workshopMansion.png";
|
||||
import letters from "./symbols/letterbox.png";
|
||||
import wrappingPaper from "./symbols/wrappingPaper.png";
|
||||
import ribbons from "./symbols/ribbons.png";
|
||||
|
||||
defineProps<{
|
||||
day: number;
|
||||
|
|
|
@ -34,6 +34,7 @@ import workshopSymbol from "./symbols/sws.png";
|
|||
import treeSymbol from "./symbols/tree.png";
|
||||
import advManagementSymbol from "./symbols/workshopMansion.png";
|
||||
import wrappingPaperSymbol from "./symbols/wrappingPaper.png";
|
||||
import ribbonsSymbol from "./symbols/ribbons.png";
|
||||
import coal from "./layers/coal";
|
||||
import elves from "./layers/elves";
|
||||
import trees from "./layers/trees";
|
||||
|
@ -325,7 +326,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
day: 16,
|
||||
shouldNotify: false,
|
||||
layer: null, // "ribbons"
|
||||
symbol: "",
|
||||
symbol: ribbonsSymbol,
|
||||
story: "",
|
||||
completedStory: ""
|
||||
})),
|
||||
|
|
Loading…
Add table
Reference in a new issue