Untitled

 avatar
unknown
plain_text
a year ago
300 B
3
Indexable
# Text-based Adventure Game

import random

def main():
    print("Welcome to the Adventure Game!")

    player_name = input("Enter your name: ")
    print(f"Welcome, {player_name}!")

    while True:
        print("\nChoose your action:")
        print("1. Explore")
        print("2.
Editor is loading...
Leave a Comment