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>
16 lines
416 B
Plaintext
16 lines
416 B
Plaintext
// Alternative Tentacles: the dialogue does the signing; this is flavor.
|
|
|
|
fn on_enter() {
|
|
if once("seen_at") {
|
|
say("A phone rings. Someone answers it 'ALTERNATIVE TENTACLES' like a war cry.");
|
|
}
|
|
}
|
|
|
|
fn on_verb(verb, noun) {
|
|
if noun == "Jello" && verb == "use:demo tape" {
|
|
say("Don't hand it over like a subpoena — TALK to him. Showmanship, Rob.");
|
|
return true;
|
|
}
|
|
false
|
|
}
|