Master of Brutality
Master of Brutality is the debut studio album by the Japanese doom metal band Church of Misery, released in 2001 by Southern Lord Records.
Master of Brutality | ||||
---|---|---|---|---|
Studio album by | ||||
Released | 2001 | |||
Genre | Doom metal, stoner metal | |||
Length | 41:23 | |||
Label | Southern Lord | |||
Church of Misery chronology | ||||
|
Review scores | |
---|---|
Source | Rating |
AllMusic |
Five of the six tracks were based on and titled after infamous serial killers Edmund Kemper, Peter Sutcliffe, Herbert Mullin and John Wayne Gacy (portrayed on the cover). The instrumental track "Green River" was inspired by serial killer Gary Ridgway. The first track, "Killifornia", contains samples of Kemper speaking.[2] The artwork and booklet features pictures and sketches of Gacy; the back art depicts Gacy dressed as "Pogo the Clown".[2]
The album also contains a cover of "Cities on Flame With Rock and Roll" by Blue Öyster Cult.
Track listing
All lyrics are written by Tatsu Mikami (except where noted).
No. | Title | Lyrics | Music | Length |
---|---|---|---|---|
1. | "Killfornia (Ed Kemper)" | Mikami | 8:23 | |
2. | "Ripping Into Pieces (Peter Sutcliffe)" | Mikami | 7:46 | |
3. | "Megalomania (Herbert Mullin)" | Mikami | 5:26 | |
4. | "Green River" | (Instrumental) | Tomohiro Nishimura | 4:30 |
5. | "Cities on Flame With Rock and Roll" | Blue Öyster Cult | Blue Öyster Cult | 4:00 |
6. | "Master of Brutality (John Wayne Gacy)" | Mikami | 11:16 | |
Total length: | 41:23 |
Personnel
- Church of Misery
gollark: Yes.
gollark: More great "WHY WOULD YOU DO THIS":```go// A Context carries a deadline, cancelation signal, and request-scoped values// across API boundaries. Its methods are safe for simultaneous use by multiple// goroutines.type Context interface { // Done returns a channel that is closed when this Context is canceled // or times out. Done() <-chan struct{} // Err indicates why this context was canceled, after the Done channel // is closed. Err() error // Deadline returns the time when this Context will be canceled, if any. Deadline() (deadline time.Time, ok bool) // Value returns the value associated with key or nil if none. Value(key interface{}) interface{}}```
gollark: Basically, modems/rednet but more flexible, cross-server, and without actual modems.
gollark: It's a websocket-based inter-computer cross-server message relay.
gollark: ```rust#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Hash, Clone)]#[serde(untagged)]pub enum Channel { Numeric(i64), Named(String)}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct RawMsg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct Msg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value, pub timestamp: chrono::DateTime<chrono::Utc>}#[derive(Serialize, Deserialize, Debug)]#[serde(tag = "type")]enum MessageFromClient { #[serde(rename = "open")] Open { channel: skynet::Channel }, #[serde(rename = "close")] Close { channel: skynet::Channel }, #[serde(rename = "message")] Message(skynet::RawMsg)}#[derive(Serialize)]#[serde(tag = "type")]enum MessageToClient<'a> { #[serde(rename = "message")] Message(skynet::Msg), #[serde(rename = "channels")] OpenChannels { channels: &'a HashSet<skynet::Channel> }}```WIP Rust notreallyconversion of the Skynet protocol.
References
- Anderson, Jason. "Master of Brutality - Church of Misery". AllMusic. Retrieved 2012-03-01.
- "MOBback.jpg (image)". 2.bp.blogspot.com. Retrieved 2012-03-01.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.