Initial commit
This commit is contained in:
parent
ed7b6f083b
commit
ddf609f958
37
revolverloader.py
Normal file
37
revolverloader.py
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
#! /bin/python
|
||||||
|
|
||||||
|
import random
|
||||||
|
|
||||||
|
pins = []
|
||||||
|
|
||||||
|
print("Sparrows⚿ Revolver Loadout Generator")
|
||||||
|
print("Generates lists of pins for filling the Sparrows⚿ Revolver")
|
||||||
|
print("Hard mode assumes you have the Check and Ammo pin sets from Sparrows⚿")
|
||||||
|
while (pins == []):
|
||||||
|
choice = input("Choose Difficulty (Stock), (E)asy, (M)edium, (H)ard: ")
|
||||||
|
|
||||||
|
ez = ["Std","Spl"]
|
||||||
|
md = ["Serr", "Mshrm"]
|
||||||
|
hd = md + ["Check", "Ammo"]
|
||||||
|
md = md + ez
|
||||||
|
|
||||||
|
if choice.upper() == "E":
|
||||||
|
pins = ez
|
||||||
|
elif choice.upper() == "M":
|
||||||
|
pins = md
|
||||||
|
elif choice.upper() == "H":
|
||||||
|
pins = hd
|
||||||
|
else:
|
||||||
|
print ("|\t1\t|\t2\t|\t3\t|\t4\t|\t5\t|\t6\t|")
|
||||||
|
print ("|\tStd\t|\tStd\t|\tStd\t|\tStd\t|\tStd\t|\tX\t|")
|
||||||
|
print ("|\tStd\t|\tSpl\t|\tStd\t|\tSpl\t|\tStd\t|\tX\t|")
|
||||||
|
print ("|\tStd\t|\tSerr\t|\tStd\t|\tSerr\t|\tStd\t|\tX\t|")
|
||||||
|
print ("|\tStd\t|\tMshrm\t|\tStd\t|\tMshrm\t|\tStd\t|\tX\t|")
|
||||||
|
print("Good Luck!")
|
||||||
|
quit()
|
||||||
|
|
||||||
|
print ("|\t1\t|\t2\t|\t3\t|\t4\t|\t5\t|\t6\t|")
|
||||||
|
for row in range (0, 4):
|
||||||
|
print("|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" + "|\t" + random.choice(pins) + "\t" "|\tX\t|")
|
||||||
|
print ("Good Luck!")
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user