2023-10-03 19:03:44 +02:00
<!DOCTYPE html> < html > < head > < title > Who died today? < / 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-04 18:47:53 +02:00
< h1 > Who Died Today?< / h1 >
< p class = "comment" >
If you are just here for reading, skip past the outline.
< / p >
< p class = "comment" >
Outline:
< / p >
< ul >
< li class = "comment" >
Emily wakes up
< ul >
< li class = "comment" >
Lena (her adult sister) is in the room, waiting for her to wake up,
silently crying
< / li >
< li class = "comment" >
the scene should make it immediately clear that this is in a base
on the moon
< ul >
< li class = "comment" >
large panorama window
< / li >
< / ul >
< / li >
< / ul >
< / li >
< li class = "comment" >
Dialog:
< ul >
< li class = "comment" >
2023-10-16 19:15:52 +02:00
Emily asks who died this time / who died today - preferably in a
more elegant way
2023-09-04 18:47:53 +02:00
< ul >
< li class = "comment" >
Lena' s spouse (?)
< / li >
< / ul >
< / li >
< li class = "comment" >
has to reveal that death is a common thing recently
< ul >
< li class = "comment" >
caused by a disease
< / li >
< li class = "comment" >
They were close to developing/discovering a cure but then Tony
died
< / li >
< / ul >
< / li >
< li class = "comment" >
optionally reveals that there are now 5 ppl left: 4 adults and Emily
< / li >
< / ul >
< / li >
< li class = "comment" >
Emily puts on / changes into day clothes
< / li >
< li class = "comment" >
They eat
< / li >
< li class = "comment" >
They put on space suits and go outside to bury the body
< ul >
< li class = "comment" >
Lena places some object of significance on the grave
< / li >
< / ul >
< / li >
< / ul >
< p >
Emily wakes up. She is laying in bed, facing the large panorama window.
Her eyes wander across the familiar gray moonscape outside before
fixating on the half-visible Earth ball for a moment. A noise - someone
is in her module.
< / p >
< p >
2023-10-07 16:18:07 +02:00
She turns around to find her older sister Lena sitting against the
2023-09-04 18:47:53 +02:00
wall - tears running down her face. After a moment to fully wake up and
2023-10-07 16:18:07 +02:00
grasp the situation, Emily asks:< br / >
2023-10-16 19:15:52 +02:00
< span class = "quote speech" > Who?< / span > < br / >
2023-09-04 18:47:53 +02:00
Lena snivels and points to the ring on her finger. < span class = "comment" >
Dictionary to the rescue! Is that the right word? ... < / span >
A grim but not uncommon way for days to begin lately. That leaves five
of them, and since Tony is gone there is no more hope for a cure.
< / p >
< p class = "comment" >
missing section
< / p >
< p >
The air hisses in the lines as the door closes behind them. The noise of
the vacuum pumps kicks in and begins to slowly fade.
< / 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 >