Documentation

Introduction

Duncheon is a procedural generation tool designed specifically for game developers who need high-quality, deterministic dungeon layouts without the overhead of manual design. Whether you are building a roguelike, an RPG, or a tactical strategy game, Duncheon provides the foundation for your levels.

Installation

Getting started with Duncheon is easy. Download the latest version, extract it to your preferred directory, and run the executable to start designing infinite dungeons instantly.

  • Download the application from Itch.io.
  • Extract the files to your preferred folder.
  • Run the executable and start generating dungeons immediately.

JSON Data Export

The JSON export provides a raw representation of the dungeon. This is the most powerful way to integrate Duncheon into your game engine.

{
  "version": "1.2.0",
  "seed": 83921,
  "config": {
    "width": 64,
    "height": 64,
    "density": 0.45
  },
  "rooms": [...],
  "corridors": [...]
}

PNG Map Export

Export high-resolution blueprint-style maps. These are perfect for level design references or can be used directly as background sprites in 2D games.

ZIP Package

The ZIP package contains both the JSON data and the PNG map, along with a metadata file explaining the generation parameters used.