From f44899ae96cc865d49293cd86b2e06e0fbd6a7a8 Mon Sep 17 00:00:00 2001 From: swee Date: Thu, 14 Nov 2024 19:16:49 -0800 Subject: [PATCH] I give up on dat command --- cc/dystopia | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 cc/dystopia diff --git a/cc/dystopia b/cc/dystopia deleted file mode 100644 index 4271db3..0000000 --- a/cc/dystopia +++ /dev/null @@ -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)) \ No newline at end of file