@kicell/blueprint
v0.1.1
Published
Blueprint system for creating text adventure game worlds with integrated compiler
Downloads
4
Maintainers
Readme
@kicell/blueprint
Blueprint system for creating text adventure game worlds with integrated compiler.
Installation
npm install @kicell/blueprintUsage
import { k } from "@kicell/blueprint";
const room = k
.room("start")
.name("Starting Room")
.description("A simple room to begin your adventure.");
const world = k.world("My Game").author("Your Name").add(room);
export default world;Features
- Fluent API for creating game worlds
- TypeScript support
- Integrated compiler
- Support for rooms, things, and characters
- Object type system (containers, supporters, vehicles, etc.)
For more information, visit the main repository.
