#DARK FLOREST
import random
import pyfiglet
import time
import sys
import os
def clear():
os.system('cls' if os.name == 'nt' else 'clear')
# display
def delay_print(s):
for c in s:
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(0.002)
#MAP
rooms = {
"Campfire": {"East": "Woods1"},
This file has been truncated. show original