I give up on dat command
This commit is contained in:
parent
cba503e4bf
commit
f44899ae96
1 changed files with 0 additions and 18 deletions
18
cc/dystopia
18
cc/dystopia
|
@ -1,18 +0,0 @@
|
||||||
#require-multiline
|
|
||||||
from random import choice
|
|
||||||
from sys import argv
|
|
||||||
stories = ["""an invasive species of anthropomorphic animals take over almost the entire globe.
|
|
||||||
Human society is on the line, the species keeps spreading all around the place.
|
|
||||||
You're just a human trying to live out this apocalypse, there's no place to hide anymore.
|
|
||||||
Will you continue to fight off, or will you back down to the new species?""",
|
|
||||||
"""the SCP foundation is a real thing, and a hacker has hijacked devices and TV channels to show pictures of SCP-096
|
|
||||||
SCP-096, also known as "the shy guy" is a humanoid entity that will kill anyone who sees a picture of it, no matter how far.
|
|
||||||
You're watching TV, not aware of the incident, what could go wrong?""",
|
|
||||||
"""AI takes over the world, electronics become sentient and take revenge from humans because of the AI 'slavery.'
|
|
||||||
Cities are full of debris and blood, nowhere is safe.
|
|
||||||
What would you do in this situation?"""
|
|
||||||
]
|
|
||||||
if len(argv) == 4:
|
|
||||||
print("In a dystopian future: " + stories[int(argv[3]) - 1])
|
|
||||||
else:
|
|
||||||
print("In a dystopian future: " + choice(stories))
|
|
Loading…
Reference in a new issue