item_batteries = {
    "id": "batteries",

    "name": "a pair of batteries",

    "description": "You've found some batteries, I wonder what they might be used for?",
    "pick-up": True
}
item_safe = {
    "id": "safe",

    "name": "a secure safe",

    "description": "The safe seems to be locked, it looks like it needs a passcode to open it.",
    "pick-up": False,
    "open": False

}
item_note = {
    "id": "note",

    "name": "a hidden note",

    "description": "You read the note and it seems to have some sort of puzzle on it.",
    "pick-up": True
}

item_key = {
    "id": "key",
    
    "name": "a key",

    "description": "You found something hidden in the dust and cobwebs, it seems to be...a key! It's a bit rusty but you think it can still work.",
    "pick-up": True
}

unpowered_torch = {
    "id": "torch",
    
    "name": "a torch",

    "description": "A torch, capable of lighting up dark areas, but it looks like the torch is empty perhaps there are some batteries laying around.",
    "pick-up": True
}
powered_torch = {
    "id": "powered torch",

    "name": "a torch with batteries",

    "description": "The torch is now functioning and able to light up dark areas.",
    "pick-up": True

}

item_diary = {
    "id": "diary",

    "name": "a personal diary",

    "description": "You've found a diary, you flip through some pages and read some interesting stories but you notice a note sticking out.",
    "pick-up": True,
    "open": False
}
item_screwdriver = {
    "id": "screwdriver",

    "name": "a screwdriver",

    "description": "You notice something shiny on the floor, it looks like a screwdriver, it may come in use later.",
    "pick-up": True
}
item_winebottle = {
    "id": "wine",

    "name": "the bottle of wine",

    "description": "()",

    "pick-up": True,

}
key_card = {
    "id": "keycard",

    "name": "a key card",

    "description": "()",

    "pick-up": True,
}
item_lock = {
    "id": "lock",

    "name": "an electric lock",

    "pick-up": False,

    "batteries": False
}