Stone of Tymora

Stone of Tymora is a series of fantasy novels for teens, written by the SciFi and fantasy author, R. A. Salvatore and his son, Geno Salvatore. The series is R.A. Salvatore's first collaboration with his son, and has Salvatore's Dark Elf character, Drizzt Do'Urden. The first book in the series, is Stowaway. It was released in October, 2008.

Geno Salvatore at book signing

Stowaway

Plot

Barely a teen and already guarding a secret that could jeopardize his young life, Maimun is marked for death. With the help of a mysterious stranger, the boy escapes his village and flees out to sea, stowing away on the pirate hunting ship, Sea Sprite, where he comes across a most unlikely ally: the dark elf Drizzt Do'Urden. With a half-demon determined to destroy him, and a crew of sailors resentful of the trouble he's caused, Maimun must find the courage to prove his worth, both to his friends and to himself.

Reception

Science Letter gave the novel a positive review, writing, "The Stowaway features all the suspense, action, and compelling characters that Salvatore fans have come to expect."[1]

Kirkus Reviews states "Light on explicit violence, gore or death despite plenty of opportunities for all three, this makes sturdy fare for younger fans of D&D or sword-and-sorcery fantasy in general."[2]

Notes

  • The character of Maimun is featured in Salvatore's novel The Pirate King, released the same year as Stowaway.
gollark: I doubt the second part is true.
gollark: People that have iPhones: buy sensible phones.
gollark: Yes; it's *very hard* to go around editing the FS API such that other stuff isn't affected.
gollark: ```pythonfrom requests_futures.sessions import FuturesSessionimport concurrent.futures as futuresimport randomtry: import cPickle as pickleexcept ImportError: import pickletry: words_to_synonyms = pickle.load(open(".wtscache")) synonyms_to_words = pickle.load(open(".stwcache"))except: words_to_synonyms = {} synonyms_to_words = {}def add_to_key(d, k, v): d[k] = d.get(k, set()).union(set(v))def add_synonyms(syns, word): for syn in syns: add_to_key(synonyms_to_words, syn, [word]) add_to_key(words_to_synonyms, word, syns)def concat(list_of_lists): return sum(list_of_lists, [])def add_words(words): s = FuturesSession(max_workers=100) future_to_word = {s.get("https://api.datamuse.com/words", params={"ml": word}): word for word in words} future_to_word.update({s.get("https://api.datamuse.com/words", params={"ml": word, "v": "enwiki"}): word for word in words}) for future in futures.as_completed(future_to_word): word = future_to_word[future] try: data = future.result().json() except Exception as exc: print(f"{exc} fetching {word}") else: add_synonyms([w["word"] for w in data], word)def getattr_hook(obj, key): results = list(synonyms_to_words.get(key, set()).union(words_to_synonyms.get(key, set()))) if len(results) > 0: return obj.__getattribute__(random.choice(results)) else: raise AttributeError(f"Attribute {key} not found.")def wrap(obj): add_words(dir(obj)) obj.__getattr__ = lambda key: getattr_hook(obj, key)wrap(__builtins__)raise __builtins__.quibble()```
gollark: table.deepcopy, table.shallowcopy, table.slice, table.filter, table.map

References

  1. "Bestselling Author R.A. Salvatore and Son, Geno, Tour for New Mirrorstone Fantasy Series". Science Letter. September 9, 2008. Archived from the original on March 15, 2016. Retrieved June 21, 2013.  via HighBeam Research (subscription required)
  2. "THE STOWAWAY by R.A. Salvatore , Geno Salvatore | Kirkus Reviews" via www.kirkusreviews.com.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.