()
| 406 | |
| 407 | # Player Location |
| 408 | def show_location(): |
| 409 | print("\n" + ("#" * (4 + len(player.location))) ) |
| 410 | print("# " + player.location.upper() + " #") |
| 411 | print("# " + ZONE_MAP[player.location]["DESCRIPTION"] + " #") |
| 412 | print("\n" + ("#" * (4 + len(player.location))) ) |
| 413 | |
| 414 | # Prompt for Player Input |
| 415 | def prompt(): |