Six rooms of band history: the 1979 basement (Portastudio, Mom, the Castle box), D.O.A. at UVic, the alley wall that named the band, Alternative Tentacles 1987 (Jello signs you), the Roskilde main stage 1994 (MODELBEAST flux matte painting quantized by the engine; ops paint only walkability + cycling footlights), and the Polish field 1997 (the $2,500 van ransom — with one fatal dialogue option to prove checkpoint mercy). 60 points, deterministic playthrough in tests/, zero engine forks: pure game data + rhai. Generated art via tools/gen_sprites.py + gen_rooms.py. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
24 lines
799 B
Plaintext
24 lines
799 B
Plaintext
// UVic, 1980: watch D.O.A., leave changed.
|
|
|
|
fn on_verb(verb, noun) {
|
|
if noun == "stage" && verb == "look" {
|
|
if once("inspired") {
|
|
play("alert");
|
|
say("Joey howls, the floor buckles, and something in your chest un-tightens after twenty-five years.");
|
|
say("You look at John. John looks at you. Neither of you says the obvious thing, because you are Canadian.");
|
|
points(5);
|
|
} else {
|
|
say("Still the loudest sermon you've ever attended. The collection plate is a merch table.");
|
|
}
|
|
return true;
|
|
}
|
|
false
|
|
}
|
|
|
|
fn on_trigger(name) {
|
|
if name == "pit" && once("pit_survived") {
|
|
say("The pit swallows you for eight bars and spits you out with someone else's shoe.");
|
|
play("scan");
|
|
}
|
|
}
|