MeowNex/cc/dystopia

18 lines
1.1 KiB
Text
Raw Normal View History

#require-multiline
2024-09-10 21:59:30 -07:00
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))