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>
25 lines
840 B
Plaintext
25 lines
840 B
Plaintext
// The alley: three words on brick.
|
|
|
|
fn on_enter() {
|
|
if once("seen_alley") {
|
|
say("Rain, brick, and a sentence someone needed the whole wall for.");
|
|
}
|
|
}
|
|
|
|
fn on_verb(verb, noun) {
|
|
if noun == "graffiti" && verb == "look" {
|
|
if !flag("inspired") {
|
|
say("White paint on brick: NO MEANS NO! Blunt. True. You file it away and think about dinner.");
|
|
} else if once("named") {
|
|
say("NO MEANS NO. You stand in the rain reading three words like they're a contract.");
|
|
say("It isn't a slogan to you anymore. It's a band name. It was always a band name.");
|
|
points(5);
|
|
play("confirm");
|
|
} else {
|
|
say("Your band name, still wet on somebody's wall. You should send this bricklayer a royalty.");
|
|
}
|
|
return true;
|
|
}
|
|
false
|
|
}
|