The Black Stone

"The Black Stone" is a horror short story by American writer Robert E. Howard, first published in the November 1931 issue of Weird Tales. The story introduces the mad poet Justin Geoffrey and the fictitious Unaussprechlichen Kulten by Friedrich von Junzt. The story is part of the Cthulhu Mythos, and follows the same pattern and has the same features as much of H. P. Lovecraft's classic work.

"The Black Stone"
AuthorRobert E. Howard
CountryUnited States
LanguageEnglish
SeriesCthulhu Mythos
Genre(s)Lovecraftian horror
Published inWeird Tales
Publication typePeriodical
Media typePulp magazine
Publication dateNovember 1931

Synopsis

The story opens with an unnamed narrator being gripped with curiosity by a brief reference to the Black Stone in the book Nameless Cults, aka The Black Book, by Friedrich von Junzt. He researches the artifact but finds little further information. The ancient (though its age is debated) monolith stands near to the village of Stregoicavar ("meaning something like Witch-Town") in the mountains of Hungary. There are many superstitions surrounding it, for instance anyone who sleeps nearby will suffer nightmares for the rest of their life and anyone who visits the stone on Midsummer Night will go insane and die. Though the Monolith is hated and disliked by all in the village, it is said by the Innskeeper that "Any man who lay hammer or maul to it die evilly", so that all of the villagers simply shun the stone.

The narrator decides to travel to Stregoicavar on vacation. Along the way he hears of the local history and sees the site of an old battlefield, where Count Boris Vladinoff fought the invading Suleiman the Magnificent in 1526. Local stories say that Vladinoff took shelter in a ruined castle and was brought a lacquered case that had been found near the body of Selim Bahadur, "the famous Turkish scribe and historian", who had died in a recent battle. The unnamed contents scared the Count but at that moment Turkish artillery destroyed a part of the castle and he got buried in the rubble, where his bones still remain till present day.

Reaching the village, the narrator interviews some of the villagers. The current inhabitants are not the original people of the village - they were all wiped out by the Turkish invasion in 1526. They are said to have been of a different, unknown, race than the Hungarians with a reputation for raiding their villages and kidnapping women and children. A school teacher reveals that according to legend, the original name for the village was Xuthltan and the stone was worshiped by pagans at one time (although they probably did not erect it themselves). The black stone is "octagonal in shape, some sixteen feet in height and about a foot and a half thick."

A week after arriving the narrator realizes that it is Midsummer Night and makes his way to the stone. He falls asleep an hour before midnight but wakes to find the chanting and dancing people around the stone. After much dancing, during which the narrator is unable to move or do anything but observe, a baby is killed in sacrifice. Shortly a giant toad-like monster appears at the top of the stone and a second sacrifice, a young girl, is offered to it. The narrator faints at this point and decides that it was a dream when he wakes again. But slowly, he realizes that it was no dream. He remembers that Selim Bahadur's case was still with the Count's bones which hadn't been disturbed. The narrator digs out the nobleman's bones and with them, the case belonging to the Turk Selim Bahadur. He translates the account written by the historian and is horrified by his account of what happened near the Black Stone, how the monstrous creature killed at least ten men before being killed by steel weapons blessed by Muhammad. He realizes that the cultist worshipers are ghosts who're bowing before a ghost. He flings the contents of the case into a river.

Characters

Justin Geoffrey

(18981926) A poet who wrote "The People of the Monolith" after visiting the village of Stregoicavar and died "screaming in a madhouse" five years before the events of the story. He is remembered by the villagers as acting in an odd manner, with a habit of mumbling to himself. The story opens with this stanza, which is attributed to him:

They say foul things of Old Times still lurk
In dark forgotten corners of the world.
And Gates still gape to loose, on certain nights.
Shapes pent in Hell.

Friedrich Wilhelm von Junzt

(17951840) An eccentric German poet and philosopher noted for his extensive travels and membership in myriad secret societies. He is mainly remembered as the author of the Unaussprechlichen Kulten (Nameless Cults or The Black Book), which was published shortly before his death. Six months after his return from an expedition to Mongolia, he was found dead in a locked and bolted chamber with taloned finger marks on his throat.

Robert M. Price compares the death of Von Junzt to the demise of Abdul Alhazred, author of the Necronomicon: "[In] Lovecraft's tongue-in-cheek 'History of the Necronomicon'...he recounts the doom of Abdul Alhazred. 'He is said by Ebn Khallikan ... to have been seized by an invisible monster in broad daylight and devoured horribly before a large number of fright-frozen witnesses.' ...And 'what of the monstrous hand that strangled out his life?' In both cases, the coroner reports the cause of death as a phantom monster suspiciously like the one that rent Lovecraft himself limb-from-limb in Robert Bloch's 'The Shambler from the Stars'."[1]

At the time of his death, von Junzt was working on a second book, the contents of which are unknown since it was burnt to ashes by his friend, the Frenchman Alexis Ladeau. Afterwards, Ladeau slit his own throat with a razor after having read the work. Von Junzt was one of the few people to have read the Greek version of the Necronomicon.

Narrator

Almost nothing is known about the story's anonymous narrator. He is very learned, with extensive knowledge of history and anthropology, and has read much on the subject of ancient religion, including obscure or bizarre authors like von Junzt. His tastes in poetry go to the obscure and weird too, such as Geoffrey.

Reception

Robert Weinberg and E. P. Berglund, in their 1973 book The Reader's Guide to the Cthulhu Mythos, stated that "The Black Stone" was "the best Mythos story not written by Lovecraft himself." [2]

gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
gollark: Are you less utilitarian with your names than <@125217743170568192> but don't really want to name your cool shiny robot with the sort of names used by *foolish organic lifeforms*? Care somewhat about storage space and have HTTP enabled to download name lists? Try OC Robot Name Thing! It uses the OpenComputers robot name list for your... CC computer? https://pastebin.com/PgqwZkn5
gollark: I wanted something to play varying music in my base, so I made this.https://pastebin.com/SPyr8jrh is the CC bit, which automatically loads random tapes from a connected chest into the connected tape drive and plays a random track. The "random track" bit works by using an 8KiB block of metadata at the start of the tape.Because I did not want to muck around with handling files bigger than CC could handle within CC, "tape images" are generated with this: https://pastebin.com/kX8k7xYZ. It requires `ffmpeg` to be available and `LionRay.jar` in the working directory, and takes one command line argument, the directory to load to tape. It expects a directory of tracks in any ffmpeg-compatible audio format with the filename `[artist] - [track].[filetype extension]` (this is editable if you particularly care), and outputs one file in the working directory, `tape.bin`. Please make sure this actually fits on your tape.I also wrote this really simple program to write a file from the internet™️ to tape: https://pastebin.com/LW9RFpmY. You can use this to write a tape image to tape.EDIT with today's updates: the internet→tape writer now actually checks if the tape is big enough, and the shuffling algorithm now actually takes into account tapes with different numbers of tracks properly, as well as reducing the frequency of a track after it's already been played recently.

References

  1. Price, "The Borrower Beneath (Howard's Debt to Lovecraft in 'The Black Stone')", Crypt of Cthulhu #3.)
  2. Dennis Rickard, "Through Black Boughs:The Supernatural in Howard's Fiction", in Don Herron, The Dark barbarian : the writings of Robert E. Howard : a critical anthology. Westport, Conn. : Greenwood Press, 1984. (pp. 73-4 ) ISBN 9780313232817.

Sources

  • Robert E. Howard (1998) [1931]. "The Black Stone". Tales of the Cthulhu Mythos (1st ed.). New York, NY: Random House. ISBN 0-345-42204-X.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.