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": "(no description)",
    "pick-up": False,
    "open": False

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

    "name": "a hidden note",

    "description": "(no description)",
    "pick-up": True
}

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

    "description": "You found something hidden in the dust and spiderwebs it seems to be...a key! It's a bit rusty but it can still do the job.",
    "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": "(no description)",
    "pick-up": True

}

item_diary = {
    "id": "diary",

    "name": "a personal diary",

    "description": "(no description)",
    "pick-up": True,
    "open": False
}
item_screwdriver = {
    "id": "screwdriver",

    "name": "a screwdriver",

    "description": "()",
    "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
}