Golden Circle (Endhaven Supplement)

Flag of the Golden Circle

About

The Golden Circle was the great alliance of Good during the Crusade of Light. They fought the Shadow Lance.

History

The Magi of Glittering Vale fought a war against the Shadow Lance. Many of their best died early in that conflict. Desperate, they turned to the Mother of Storms for help. She told them to form an alliance with the other races. They did so, and they called this alliance the Golden Circle.

This alliance successfully defeated the Shadow Lance, ending the Crusade of Light on the side of good. With coffers empty, their unpaid mercenaries rebelled, and so they lost the empire that they strived to save.

The heirs to this alliance are the Teachers and the Alliance of the Sun.

The arms and armor of these days still appear and are valued by those who fight for good.


Back to Main Page 3.5e Homebrew Campaign Settings Endhaven Organizations (Endhaven))

gollark: Of course.
gollark: I'm not entirely sure how, but it seems to construct a tree/maybe deterministic finite automaton/finite state machine/I don't know theoretical CS which matches anagrams and unmatches unanagrams.
gollark: ```pythonimport collectionsdef do_thing(s): if len(s) == 1: return { s[0]: True } out = {} for i, c in enumerate(s): without = s[:i] + s[i + 1:] things = do_thing(without) out[c] = things return outdef match(r, s): print(r) c = r for i, x in enumerate(s): print(x) try: c = c[x] if c == True: if i + 1 == len(s): return True # full match else: return False # characters remain except KeyError: return False # no match return False # incomplete matchentry = lambda a, b: match(do_thing(a.lower().replace(" ", "")), b.lower().replace(" ", ""))```Here is my entry (pending a port to osmarkslisp™️). This is definitely my entry.
gollark: I wish to use Mathematica in my code. Please install it. DO NOT READ, ubq.
gollark: I have a "great" way to do this which I think takes O(n²) space-time-beeite.
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.