mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
Oil icon
This commit is contained in:
parent
756bcdc54c
commit
87a36fd4e7
2 changed files with 10 additions and 2 deletions
|
@ -20,6 +20,12 @@
|
|||
class="scene-item"
|
||||
style="left: 72%; bottom: 8%; width: 40px; height: 40px"
|
||||
/>
|
||||
<img
|
||||
v-if="(day >= 8)"
|
||||
:src="oil"
|
||||
class="scene-item"
|
||||
style="left: 80%; bottom: 6%"
|
||||
/>
|
||||
<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%">
|
||||
<img v-if="day >= 4" :src="paper" class="scene-item" />
|
||||
|
@ -37,6 +43,7 @@ import paper from "./symbols/paperStacks.png";
|
|||
import boxes from "./symbols/cardboardBox.png";
|
||||
import metal from "./symbols/metal.png";
|
||||
import cloth from "./symbols/cloth.png";
|
||||
import oil from "./symbols/oil.png";
|
||||
|
||||
defineProps<{
|
||||
day: number;
|
||||
|
|
|
@ -28,6 +28,7 @@ import paperSymbol from "./symbols/paperStacks.png";
|
|||
import boxesSymbol from "./symbols/cardboardBox.png";
|
||||
import metalSymbol from "./symbols/metal.png";
|
||||
import clothSymbol from "./symbols/cloth.png";
|
||||
import oilSymbol from "./symbols/oil.png";
|
||||
import coal from "./layers/coal";
|
||||
import elves from "./layers/elves";
|
||||
import paper from "./layers/paper";
|
||||
|
@ -215,7 +216,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
"The sounds of drills and metal clanging join the already loud din as yet another piece of the puzzle fits into place. You're making solid progress, Good Job!"
|
||||
})),
|
||||
createDay(() => ({
|
||||
day: 8,
|
||||
day: 8,
|
||||
shouldNotify: false,
|
||||
layer: "cloth",
|
||||
symbol: clothSymbol,
|
||||
|
@ -227,7 +228,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
day: 9,
|
||||
shouldNotify: false,
|
||||
layer: "oil",
|
||||
symbol: "",
|
||||
symbol: oilSymbol,
|
||||
story: "Looks like you just need one more thing before the toy factory can get running: plastic! Every toy nowadays is made with plastic! But wait, how are you going to get plastic? What can make plastic? Wait that's right, oil! You figured out you might as well repurpose your coal and ore drills into something that can get you oil, unfortunately you'll need to mine much deeper that you're currently doing before, so let's get to work!",
|
||||
completedStory: "It took a while, but you finally got enough oil for the next step! You deserve a good rest after all these digging work - tomorrow will be a busy day! Good Job!"
|
||||
})),
|
||||
|
|
Loading…
Reference in a new issue