Aos Si (5e Subrace)

Riders of The Sidhe

Elven Subrace

Aos Sí are seen as fierce guardians of their abodes, whether a fairy hill/ring, a special tree (often a hawthorn), or a particular loch/wood. It is believed that infringing on these spaces will cause the Aos Sí to retaliate in an effort to remove the people/objects that invaded their homes. Many believe the Aos Sí kidnap trespassers and replace them with Changelings as a punishment for transgressing.

Ability Score Increase. Your Wisdom score increases by 1.
Cantrip. You can cast Druidcraft without using a spell slot. At 5th level, you also gain Faerie Fire. Your spellcasting modifier is Wisdom.
Elf Weapon Training. You have proficiency with the longsword, shortsword, shortbow, and longbow.
Language. You can read, write, and speak Sylvan.


Back to Main Page 5e Homebrew Character Options Subraces

gollark: It's in unsafe™ C, so you could make a mistake and doom all mankind.
gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.