mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-06-05 04:18:28 +02:00
Added subclass descriptions
This commit is contained in:
@@ -7,27 +7,66 @@ from collections import defaultdict
|
||||
|
||||
# PHB
|
||||
class Hunter(SubClass):
|
||||
"""Emulating the Hunter archetype means accepting your place as a bulwark
|
||||
between civilization and the terrors of the wilderness. As you walk the
|
||||
Hunter’s path, you learn specialized techniques for fighting the threats
|
||||
you face, from rampaging ogres and hordes of orcs to towering giants and
|
||||
terrifying dragons.
|
||||
|
||||
"""
|
||||
name = "Hunter"
|
||||
features_by_level = defaultdict(list)
|
||||
|
||||
|
||||
class BeastMaster(SubClass):
|
||||
"""The Beast Master archetype embodies a friendship between the civilized
|
||||
races and the beasts of the world. United in focus, beast and ranger work
|
||||
as one to fight the monstrous foes that threaten civilization and the
|
||||
wilderness alike. Emulating the Beast Master archetype means committing
|
||||
yourself to this ideal, working in partnership with an animal as its
|
||||
companion and friend.
|
||||
|
||||
"""
|
||||
name = "Beast Master"
|
||||
features_by_level = defaultdict(list)
|
||||
|
||||
|
||||
# XGTE
|
||||
class GloomStalker(SubClass):
|
||||
"""Gloom Stalkers are at home in the darkest places: deep under the earth, in
|
||||
gloomy alleyways, in primeval forests, and wherever else the light
|
||||
dims. Most folk enter such places with trepidation, but a Gloom Stalker
|
||||
ventures boldly into the darkness, seeking to ambush threats before they
|
||||
can reach the broader world. Such rangers are often found in the Underdark,
|
||||
but they will go any place Where evil lurks in the shadows
|
||||
|
||||
"""
|
||||
name = "Gloom Stalker"
|
||||
features_by_level = defaultdict(list)
|
||||
|
||||
|
||||
class HorizonWalker(SubClass):
|
||||
"""Horizon Walkers guard the world against threats that originate from other
|
||||
planes or that seek to ravage the mortal realm with otherworldly
|
||||
magic. They seek out planar portals and keep watch over them, venturing to
|
||||
the Inner Planes and the Outer Planes as needed to pursue their foes. These
|
||||
rangers are also friends to any forces in the multiverse—especially
|
||||
benevolent dragons, fey, and elementals—that work to preserve life and the
|
||||
order of the planes
|
||||
|
||||
"""
|
||||
name = "Horizon Walker"
|
||||
features_by_level = defaultdict(list)
|
||||
|
||||
|
||||
class MonsterSlayer(SubClass):
|
||||
"""You have dedicated yourself to hunting down creatures of the night and
|
||||
wielders of grim magic. A Monster Slayer seeks out vampires, dragons, evil
|
||||
fey, fiends, and other magical threats. Trained in supernatural tech-
|
||||
niques to overcome such monsters, Slayers are experts at unearthing and
|
||||
defeating mighty, mystical foes.
|
||||
|
||||
"""
|
||||
name = "Monster Slayer"
|
||||
features_by_level = defaultdict(list)
|
||||
|
||||
@@ -77,19 +116,38 @@ class Ranger(CharClass):
|
||||
feature_choices=params.get('feature_choices', []))
|
||||
self.features_by_level[2].append(fighting_style)
|
||||
|
||||
|
||||
|
||||
# Revised Ranger
|
||||
class BeastConclave(SubClass):
|
||||
"""Many rangers are more at home in the wilds than in civilization, to the
|
||||
point where animals consider them kin. Rangers of the Beast Conclave
|
||||
develop a close bond with a beast, then further strengthen that bond
|
||||
through the use of magic.
|
||||
|
||||
"""
|
||||
name = "Beast Conclave"
|
||||
features_by_level = defaultdict(list)
|
||||
|
||||
|
||||
class HunterConclave(SubClass):
|
||||
"""Some rangers seek to master weapons to better protect civilization from the
|
||||
terrors of the wilderness. Members of the Hunter Conclave learn specialized
|
||||
fighting techniques for use against the most dire threats, from rampaging
|
||||
ogres and hordes of orcs to towering giants and terrifying dragons
|
||||
|
||||
"""
|
||||
name = "Hunter Conclave"
|
||||
features_by_level = defaultdict(list)
|
||||
|
||||
|
||||
class DeepStalkerConclave(SubClass):
|
||||
"""Most folk descend into the depths of the Underdark only under the most
|
||||
pressing conditions, undertaking some desperate quest or following the
|
||||
promise of vast riches. All too often, evil festers beneath the earth
|
||||
unnoticed, and rangers of the Deep Stalker Conclave strive to uncover and
|
||||
defeat such threats before they can reach the surface.
|
||||
|
||||
"""
|
||||
name = "Deep Stalker Conclave"
|
||||
features_by_level = defaultdict(list)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user