2023-10-03 19:03:44 +02:00
<!DOCTYPE html> < html > < head > < title > Landing Troubles < / title > < link rel = "stylesheet" type = "text/css" href = "html_resources/style.css" > < / head > < body > < a href = "index.html" > < button class = "back" > < < / button > < / a >
2023-09-28 18:59:11 +02:00
< h1 > Landing Troubles< / h1 >
< p >
The escape pod < span class = "comment" > Is there a word that makes this sound
more like it' s the technical term?< / span > enters the atmosphere with
a jolt. < span class = "comment" > Honestly, I have no idea what it is like to
enter the atmosphere. Needs research.< / span > The displays on the control
panel flicker and start showing random symbols. Error messages start
2023-10-16 19:15:52 +02:00
scrolling over the screen. < span class = "quote speech" > Uh oh.< / span >
2023-09-28 18:59:11 +02:00
< / p >
< p >
Emily stares at the control panel for a moment trying to think. She grabs
her emergency notes and frantically searches for the relevant section.
After finally finding the right page, she presses a few buttons on the
keyboard. The screen clears and shows the word " HALTED" . Then,
she flips a bunch of switches to unlock the controls. Clicking and
clanging under the control panel. < span class = "comment" > Throttle lever and
position controls start floating< / span > Looking at the next page of her
notes, she realizes that the order has been messed up. Again, she
scrambles through the pages until she finds the next instructions.
" Wait until the external pressure gauge reads < xyz> and release
the heat shield." She looks at the analog gauges at the top of the
panel - there it ts. < less than xyz value> .
< / p >
< p >
The shield detaches with a bang. Emily flips the switch for the fuel
pumps, grabs the throttle lever, and pushes it all the way forward.
Nothing happens. She looks back at the notes - did she miss anything? She
flips the switch off and on again.
2023-10-16 19:15:52 +02:00
< span class = "quote speech" > Nononononooo...< / span >
2023-09-28 18:59:11 +02:00
< / p >
2023-10-17 16:37:46 +02:00
< p class = "copyright" > Copyright © 2023 Jan Danielzick (aka. BodgeMaster) – 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 ++ ) { result = result + spans [ j % 2 ] + lines [ j ] + " " . repeat ( 80 - lines [ j ] . length ) + "</span>\n" ; } pre _texts [ i ] . innerHTML = result ; } < / script > < / body > < / html >