mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
Add presents symbol and lore
This commit is contained in:
parent
24c00d7e42
commit
14d29cd3ad
3 changed files with 8 additions and 4 deletions
|
@ -69,6 +69,7 @@
|
||||||
<div v-if="day >= 4" class="scene-bubble left" style="left: 64%; bottom: 37%">
|
<div v-if="day >= 4" class="scene-bubble left" style="left: 64%; bottom: 37%">
|
||||||
<img v-if="day >= 17" :src="toys" class="scene-item" />
|
<img v-if="day >= 17" :src="toys" class="scene-item" />
|
||||||
<img v-if="day >= 18" :src="advFactory" class="scene-item" />
|
<img v-if="day >= 18" :src="advFactory" class="scene-item" />
|
||||||
|
<img v-if="day >= 19" :src="presents" class="scene-item" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -93,6 +94,7 @@ import ribbons from "./symbols/ribbons.png";
|
||||||
import toys from "./symbols/truck.png";
|
import toys from "./symbols/truck.png";
|
||||||
import factory from "./symbols/gears.png";
|
import factory from "./symbols/gears.png";
|
||||||
import advFactory from "./symbols/teddyBear.png";
|
import advFactory from "./symbols/teddyBear.png";
|
||||||
|
import presents from "./symbols/presents.png";
|
||||||
|
|
||||||
defineProps<{
|
defineProps<{
|
||||||
day: number;
|
day: number;
|
||||||
|
|
|
@ -48,11 +48,12 @@ import metalSymbol from "./symbols/metal.png";
|
||||||
import oilSymbol from "./symbols/oil.png";
|
import oilSymbol from "./symbols/oil.png";
|
||||||
import paperSymbol from "./symbols/paperStacks.png";
|
import paperSymbol from "./symbols/paperStacks.png";
|
||||||
import plasticSymbol from "./symbols/plastic.png";
|
import plasticSymbol from "./symbols/plastic.png";
|
||||||
|
import presentsSymbol from "./symbols/presents.png";
|
||||||
import ribbonsSymbol from "./symbols/ribbons.png";
|
import ribbonsSymbol from "./symbols/ribbons.png";
|
||||||
import workshopSymbol from "./symbols/sws.png";
|
import workshopSymbol from "./symbols/sws.png";
|
||||||
|
import advFactorySymbol from "./symbols/teddyBear.png";
|
||||||
import treeSymbol from "./symbols/tree.png";
|
import treeSymbol from "./symbols/tree.png";
|
||||||
import toysSymbol from "./symbols/truck.png";
|
import toysSymbol from "./symbols/truck.png";
|
||||||
import advFactorySymbol from "./symbols/teddyBear.png";
|
|
||||||
import advManagementSymbol from "./symbols/workshopMansion.png";
|
import advManagementSymbol from "./symbols/workshopMansion.png";
|
||||||
import wrappingPaperSymbol from "./symbols/wrappingPaper.png";
|
import wrappingPaperSymbol from "./symbols/wrappingPaper.png";
|
||||||
|
|
||||||
|
@ -464,10 +465,11 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
createDay(() => ({
|
createDay(() => ({
|
||||||
day: 20,
|
day: 20,
|
||||||
shouldNotify: false,
|
shouldNotify: false,
|
||||||
layer: "factory", // "presents"
|
layer: "factory",
|
||||||
symbol: wrappingPaperSymbol,
|
symbol: presentsSymbol,
|
||||||
story: "Santa comes by again, and tells you that just toys may not be appealing enough. He tells you that you should probably wrap them in some wrapping paper so that it's more of a surprise. You try to argue that you've already done too much for him and deserve a day off, but Santa argues that it's for the benefit of everyone and that you'll get your vacation soon. Oh well, time to get back to the factory and expand it even more. Here we go again!",
|
story: "Santa comes by again, and tells you that just toys may not be appealing enough. He tells you that you should probably wrap them in some wrapping paper so that it's more of a surprise. You try to argue that you've already done too much for him and deserve a day off, but Santa argues that it's for the benefit of everyone and that you'll get your vacation soon. Oh well, time to get back to the factory and expand it even more. Here we go again!",
|
||||||
completedStory: "",
|
completedStory:
|
||||||
|
"That was a lot of work, but it certainly felt worth actually using all those decorative supplies you'd previously made. One more sleepless night down, just a handful more to go. Good Job!",
|
||||||
masteredStory: ""
|
masteredStory: ""
|
||||||
})),
|
})),
|
||||||
createDay(() => ({
|
createDay(() => ({
|
||||||
|
|
BIN
src/data/symbols/presents.png
Normal file
BIN
src/data/symbols/presents.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
Loading…
Reference in a new issue