post_apocalypse_story/ph-diesel_creek.html

131 lines
7.3 KiB
HTML

<!DOCTYPE html><html><head><title> Diesel Creek </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><svg class="hidden_filter"><filter id="crunchy_blur" x="0" y="0"><feFlood x="4" y="4" height="2" width="2"/><feComposite width="6" height="6" in2="SourceGraphic"/><feTile result="a"/><feComposite in="SourceGraphic" in2="a" operator="in"/><feMorphology operator="dilate" radius="1.4"/><feGaussianBlur stdDeviation="2.2"></feGaussianBlur></filter></svg><div class="home"><a href="index.html">&#8962;</a></div>
<h1> Diesel Creek </h1>
<!-- perspective: neutral / (weak) Jack -->
<p>
Michelle asks: <span class="quote speech">And you really expect to find
anything here that can be salvaged?</span><br />
The four are walking into a valley in a large forested area.<br />
Jack replies: <span class="quote speech">Right now, I&apos;m not even
sure this is the place &ndash; everything looks so different &ndash; but
if it is, we&apos;ll have plenty machines to choose from and a bunch
more for parts.</span><br />
James gestures to the side, saying:
<span class="quote speech">Look, over there.</span><br />
He points to a group of very rusty and completely overgrown machines.
<br />
Annie asks: <span class="quote speech">How did they get inbetween
the trees?</span><br />
Jack says: <span class="quote speech">They didn&apos;t. The machines
came first, the trees grew after. This area wasn&apos;t even a forest
back then.</span><br />
They make their way over to take a closer look.
</p>
<p>
Jack says: <span class="quote speech">Looks like these were already
out of order before they were abandoned.</span><br />
He turns to Annie and James:
<span class="quote speech">This is an excavator. We&apos;re looking for
a big one like this, maybe a bit smaller, but not as small as that one
over there &ndash; and preferably without trees growing out of
it...</span><br />
He points to a mini excavator sitting askew on a tree trunk that had
grown through its floor and out the side.<br />
James asks: <span class="quote speech">Why not just use this big one?
What&apos;s wrong with it?</span><br />
<span class="quote speech">This thing&apos;s just done for. It&apos;s
more rust than steel, missing its tracks and hydraulics for the bucket,
and it looks like someone got a bit carried away trying to remove the
cab.</span><br />
They take a quick look at the other machines around them. Apart from the
two excavators, there is a dump truck, a <span class="comment"> what's
the name of that machine with a conveyor belt that sorts large rocks and
rubble from sand?
<!--
ChatGPT says "screening plant" but also refers to it as a
"vibrating belt sorter". Research that.
It also gives a good description of what it does:
"splits rubble into chunks, fines, and dust."
-->
</span>, and two loaders. All of them
are rusted beyond repair and missing integral parts.<br />
</p>
<p>
A bit further down the valley, they find a much larger assortment of
machines, parked in long rows and parted out just like the first ones
they saw.<br />
Jack says: <span class="quote speech">Welcome to the machine graveyard.
If memory serves right, there should be a few buildings back there and
one of the main parking lots behind them.</span><br />
While they make their way through between the machines, Annie asks:<br />
<span class="quote speech">So these machines dug out the dome?</span>
<br />
<span class="quote speech">Well... no. That was mostly done using
explosives, conveyor belts, and trains. They used loaders to get the
stuff onto conveyors but most of the machines here were used in
construction after the digging was done.</span><br />
</p>
<p>
The buildings are in rough shape, some much worse than others. Most
don&apos;t have rooves, a few have been completely reduced to foundations
and piles of rubble. The four walk through a gap between them and find
themselves on the parking lot. Instead of a forest, they find it mostly
overgrown with bushes and young trees. They split up and start roaming
the area.
</p>
<p class="comment">
research that needs to be done:<br />
&rarr;When were hydraulic excavators invented?<br />
&rarr;When did they get the ability to use a jackhammer attachment?<br />
&rarr;When did cable shovels go out of fashion? (Apparently never,
depending on use case. From a quick image search, modern ones seem to be
huge industrial machines.)<br />
</p>
<p>
Annie calls the others over to one of the buildings.<br />
<span class="quote speech">Look what I found...</span><br />
Michelle arrives before Jack and she laughs. He arrives a moment
later and peeks inside. There sits a cable shovel, partially covered
in rubble from the <span class="comment">caved-in? fallen-in?</span>
roof &ndash; rusty but surprisingly intact.
<br />
Jack says: <span class="quote speech">That&apos;s ... uhhh ... kind of
a historical artifact.</span><br />
<!--
"I mean, everything here is a historical artifact."
"Fair enough, but this especially so."
There is also a kinda small hydraulic excavator.
They decide to make both work.
This is for another chapter but here is a list of things they might do:
- strip parts off of other machines
- modify or create parts at the Ivydale train yard
- swap out a beyond-repair engine - with a different one that
doesn't fit ofc
- weld things to the machines for botched but improved
structural integrity
- maybe come up with an alternative for hydraulic fluid if it isn't too
far fetched, alternatively scavenge it from other machines or trade
for it
- find a grabber attachment for the excavator
- DIY electronics
-->
</p>
<p>
<span class="comment">missing section</span>
</p>
<p>
<span class="comment">
Things that need research: Did early hydraulic excavators have starter
engines (what were they called again?) or was that a thing of the past
by then?<br />
Events:<br />
-> they take off some access panels<br />
-> they manage to get the starte engine going<br />
-> large engine won't start (why?)<br />
</span>
</p>
<p class="copyright">Copyright &#169; 2023-2026 Jan Danielzick (aka. BodgeMaster) &ndash; All rights reserved.</p><script>let spans=["<span class=\"paper green\">","<span>"];let pre_texts=document.getElementsByTagName("pre");for(let i=0;i<pre_texts.length;i++){if(pre_texts[i].className!="paper")continue;let lines=pre_texts[i].innerHTML.split("\n");let result="";for(let j=0;j<lines.length;j++){if(lines[j].length>=80)result=result+spans[j%2]+lines[j]+"</span>\n";else result=result+spans[j%2]+lines[j]+" ".repeat(80-lines[j].length)+"</span>\n";}pre_texts[i].innerHTML=result;}fetch("./chapters.json").then(function(result){return result.json();}).then(function(json){let chapters=json.pages;for(let i=0;i<chapters.length;i++){if(chapters[i]===document.URL.replace(/^.*\//,"./")){let prevdiv=document.createElement("div");prevdiv.className="prev";if(i>0){prevdiv.innerHTML="<a href=\""+chapters[i-1]+"\">&#9667;</a>";}else{prevdiv.innerHTML="<p>&#9667;</p>";}document.body.appendChild(prevdiv);let nextdiv=document.createElement("div");nextdiv.className="next";if(i<chapters.length-1){nextdiv.innerHTML="<a href=\""+chapters[i+1]+"\">&#9657;</a>";}else{nextdiv.innerHTML="<p>&#9657;</p>";}document.body.appendChild(nextdiv);}}});</script></body></html>