print("\n\n!-------------------------------------------------WELCOME TO THE REAL LIFE RPG--------------------------------------------------------------------!")

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()
#We start with the title screen, complete with an introduction and a place to put your name. Gives the main character object a name in the process.
print(
    "\n\n!-------------------------------------------------WELCOME TO THE REAL LIFE RPG--------------------------------------------------------------------!"
)

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: ")

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

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

#A list both figurative and literal of locations and their options. WARNING; contents contain spoilers. Please play game before reading code, it possible.
Bed = Location(
    "Bed",
    "\nYou wake up home alone to the sound of your alarm clock. You are laying in bed and deciding what to do.",
    "Get up", "hit the snooze", "Check what time it is", "Stay in bed")

Room = Location(
    "Room",
    "\n\nYou slowly get out of bed with a groan. Streaching upright and punching the alarm clock, you see that the time is 6:30 AM. You need to get ready for work. ",
    "Go outside", "Go to the bathroom", "Get dressed", "Go back to bed")

Street = Location(
    "Street",
    "\n\nYou are now out on the street. It is up to you to get to work on time",