import os, sys, random import time playerstartHP = 50 playerstartdamge = random.randint(1, 30) playerstartXP = 0 orcHP = 100 orcdamage = random.randint(1, 20) orcexperince = 50 goblinHP = 80 gobdamage = random.randint(1,18) gobexperience = 30 minotaurHP = 150 mindamage = random.randint(5, 35) nimexperience = 100 trollHP = 250 trolldamge = random.randint(8, 45) trollexperience = 300 dragonHP = 1000 dragbite = random.randint(5 , 50) dragclaw = random.randint(3, 30) dragfire = random.randint(10, 100) dragexperience = 1000 name = input("enter name:") print("are you ready for this", name,"?")