-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloot_discovery.py
11 lines (8 loc) · 1.4 KB
/
loot_discovery.py
1
2
3
4
5
6
7
8
9
10
11
import random
#declare variable lists
weapon_type = ['longsword','dagger','blade','spear','scimitar','khopesh','tentacles','knife','dildo','rapier','shortsword','broadsword','kukri','spork','thingy','toothpick','mace','bucket','rock','frying pan','bucket']
adjectives = ['glistening', 'flaming', 'dasterly','oozing', 'vibrating', 'vengeful','gloomy','questionable','corrupted','glowing','disenchanted','ultimate','ghostly yet still somehow physical all at the same time', 'blazing', 'burning','ordinary','','extraordinary','magical','depressing','overpowered','sexy','god','rapey','seemingly dangerous','plastic','twisted','bent', 'freezing', 'menacing','flimsy','useless','floppy','crude','broken']
finaladj = ['destruction','reckoning','avenging','the baneful','death(yours, not theirs...)','the void','death','failure','the... umm... oh god... omg, that fucking disgusting..(vomits furiously)','reaping','cursing','annihilation','ending','raping','stuff','terror','horror','maming','mysteriousness','the... umm... what the fuck is this thing?','things','eviceration','plastic','destiny','bludgeoning','uselessness','doom']
weapon = 'The ' + adjectives[random.randrange(0,len(adjectives))] + ' ' + weapon_type[random.randrange(0,len(weapon_type))] + ' of ' + finaladj[random.randrange(0,len(finaladj))]
#print "Wow. You walk into the room and find a weapon just lying on the floor. Talk about lucky.\n"
print "You acquire", weapon