9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
import { GameData } from "./data.ts";
|
|
|
|
export const hall: GameData = {
|
|
description:
|
|
"You are standing in a big hall. There's lots of nooks, crannies, and" +
|
|
"room for general testing. Aw yeah... sweet testing!",
|
|
items: [{ name: "flashlight" }],
|
|
};
|