print("\nWhat if your life was like a Role Playing Game? \n\nWouldn't it be fun? \n\nScary? \n\nExciting? \n\nThrilling? \n\nProbably not. \n\nTruth be told, when you strip the things that make a story exciting, you get something like this...")

name = input("\n\nPlease enter your name: ")#Name your character.

Game = Campaign("rlRPG") #kind of useless, but why not?

#Dicebag!
d8 = Dice(1,8,4)
d4 = Dice(1,4,0)
d3 = Dice(1,3,0)

#Roll your character sheet!
Player = Character(name)
Player.HP(10)
Player.AC(10)

#Monster for later. No spoilers!
Enemy = Character("Dude")
Enemy.HP(8)
Enemy.AC(10)

#Items for later

#Jazz hands! Equipped automatically
Hands = Item("Hands")
Hands.Weapon(0,3)
Hands.Taken(Player)
Hands.Equip()

#Find your briefcase!