Skip to content

Instantly share code, notes, and snippets.

@heyajulia
Last active January 15, 2023 12:25
Show Gist options
  • Save heyajulia/c236e34f88ec27b41d7bc82ea7c2ec99 to your computer and use it in GitHub Desktop.
Save heyajulia/c236e34f88ec27b41d7bc82ea7c2ec99 to your computer and use it in GitHub Desktop.
A graph of all/most of the named characters of The Adventure Zone: Steeplechase.
// A graph of all/most of the named characters of The Adventure Zone: Steeplechase.
//
// One very notable omission is the creator of Steeplechase, Carmine Denton, who is technically connected to everyone,
// which would massively complicate the graph.
//
// P.S.: Whoever made the transcripts is a saint.
graph G {
node [shape=box];
// Characters grouped by episode, in order of appearance.
// Episode 0
bpunchley [label="Beef Punchley", style="filled"]; // Played by Travis McElroy.
mpretty [label="Montrose Pretty", style="filled"]; // Played by Griffin McElroy.
edreadway [label="Emerich Dreadway", style="filled"]; // Played by Clint McElroy.
pmervin [label="Poppy Mervin"]; // Owner of Poppy's Place, employer of the main characters.
eshabon [label="Eustace Shabon"]; // Hard light grandpa who works at Whittle Around.
vgold [label="Victrola Gold"]; // Owner of Anachroknickknacks.
// Episode 1
krystal [label="Krystal", style="dashed"]; // Played by Autumn Seavey Hicks.
gravel [label="Gravel"]; // Mission giver and former employee of Denton's.
slipper [label="Slipper"]; // Generic goon, one of Gravel's guys.
matchstick [label="Matchstick"]; // Generic goon, one of Gravel's guys.
trashbag [label="Trashbag"]; // Generic goon, one of Gravel's guys.
kevin [label="Kevin"]; // Guard at the Prize Pantry.
dan [label="Dan"]; // Employee at the Prize Pantry.
// Episode 2
weaver [label="The Weaver/Nanofather", style="dashed"]; // Unknown. Speaks through Justin McElroy.
// Episode 3
ppantry [label="Paul \"Sticky Fingers\" Pantry"]; // Owner of the Prize Pantry.
// Episode 4
bshookles [label="Bart Shookles", style="dashed"]; // The Weaver's cat.
sdoug [label="Short Doug"]; // A "friend" of Paul's.
ddavis [label="Darla Davis"]; // Private investigator.
ctouch [label="Chad Touch"]; // Employee at Sinnuendo.
dred [label="David Red"]; // A Sinnuendo client, a friend of Darla's.
chen [label="Chen"]; // Guard at Sinnuendo.
// Episode 9
kevekah [label="Kevekah", style="dashed"]; // Unknown. (Presumably:) granddaughter of the Nanofather.
subgraph episode0 {
bpunchley -- mpretty;
bpunchley -- edreadway;
mpretty -- edreadway;
{ rank=same; bpunchley; mpretty; edreadway; }
bpunchley -- pmervin;
mpretty -- pmervin;
edreadway -- pmervin;
edreadway -- eshabon;
bpunchley -- vgold; // ???
mpretty -- vgold; // ???
edreadway -- vgold; // ???
}
subgraph episode1 {
krystal;
bpunchley -- gravel;
mpretty -- gravel;
edreadway -- gravel;
gravel -- slipper;
gravel -- matchstick;
gravel -- trashbag;
mpretty -- kevin;
bpunchley -- dan;
mpretty -- matchstick;
}
subgraph episode3 {
ppantry -- bpunchley;
ppantry -- mpretty;
ppantry -- edreadway;
}
subgraph episode4 {
weaver -- bshookles;
ppantry -- sdoug;
sdoug -- ddavis;
ddavis -- ctouch;
ddavis -- dred;
ctouch -- dred;
ctouch -- chen;
}
subgraph episode9 {
weaver -- kevekah;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment