CLI tool to preview monologue/dialogue line selection for a given game state. 4 subcommands: dialogue (D-028 4-layer pipeline), monologue (trigger + prerequisite evaluation), coverage (dead conversation detection), sequence (walk-through simulation). Authoring tool for content team — tests line trigger logic without running the full game. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
382 B
TOML
17 lines
382 B
TOML
[package]
|
|
name = "line-previewer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "CLI tool to preview dialogue/monologue line selection for a given game state."
|
|
|
|
[[bin]]
|
|
name = "line-previewer"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
clap = { version = "4", features = ["derive"] }
|
|
rand = "0.9"
|
|
rand_chacha = "0.9"
|