adds alone to scripts

This commit is contained in:
James Tomasino 2022-03-20 17:43:08 +00:00
parent 99a408c66a
commit 49cd9da06d
1 changed files with 96 additions and 0 deletions

96
bin/alone Executable file
View File

@ -0,0 +1,96 @@
#!/usr/bin/env python
import argparse
import string
import random
def living():
l=["people like or unlike you",
"fish",
"dinosaurs",
"wolves",
"birds",
"giant insects"]
return random.choice(l)
def plants():
l=["towering trees"
"carnivorous pitchers",
"giant ferns",
"glowing weeds",
"floating flowers",
"oozing mushrooms"]
return random.choice(l)
def ruins():
l=["mysterious obelisks",
"vine-covered temples",
"abandoned dwellings for people bigger than you",
"a wrecked spaceship, etc."]
return random.choice(l)
def nature():
l=["huge crystal formations",
"mirages",
"vividly colored lightning",
"strange clouds",
"rocks eroded in strange shapes",
"veins of precious metals"]
return random.choice(l)
what=[{ "label": "living beings", "example": living},
{ "label": "plants or other immobile forms of life", "example": plants},
{ "label": "ruins", "example": ruins },
{ "label": "natural phenomena", "example": nature}]
where=[
"In a field taller than you",
"Under the light of the moon(s)",
"By a gentle river",
"In a steep canyon",
"In a treetop",
"On the snowy peak of a mountain",
"Near a volcano",
"On a glacier",
"Deep underground",
"On a cliff face",
"In the desert",
"In deep water",
"Floating in the air"]
difficulty=["It was arduous to get to:", "You come upon it suddenly:", "You spot it as you are resting:"]
def main():
discoveries = random.choice(range(1, 6))
name = ''.join(random.choice(string.ascii_uppercase) for _ in range(3)) + ''.join(random.choice(string.digits) for _ in range(3)) + "-" + ''.join(random.choice(string.digits) for _ in range(1))
print("Planet " + name)
print("There are " + str(discoveries) + " discoveries to find on this planet.")
print("\n- - - - -\n")
for i in range(discoveries):
subject = random.choice(what)
diff = random.choice(difficulty)
print("Discovery " + str(i + 1) + ":")
print(diff + " " + random.choice(where) + " you discover " + subject["label"] + ", such as " + subject["example"]())
if (i < discoveries - 1):
print("")
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--about', action="store_true", help="About Alone Among the Stars")
args = parser.parse_args()
if args.about:
print """Alone Among the Stars
By Takuma Okada | noroadhome.itch.io
A solo roleplaying game about exploring fantastic planets
You are a solitary adventurer, hopping from planet to planet exploring. Each
world has unique features for you to discover and record.
In your ship's log, record a short description and your reaction in a few
sentences, and move on to the next discovery. Each time you complete a planet,
give it a name if it needs one, and find a new planet.
"""
else:
main()