Adv 2.0 D&D Phase 10 SUB2d: Ranger subclasses (Hunter/Beast Master/Gloom Stalker)

L5/L7 abilities for the three Ranger subclasses, plus Gloom Stalker
Stealth advantage from Umbral Sight. Beast Master pet floors use a
max-style merge so the legacy adventure-pet path can still upgrade.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
prosolis
2026-05-08 10:56:57 -07:00
parent a733d52166
commit b56e53300e
4 changed files with 275 additions and 3 deletions

View File

@@ -194,6 +194,14 @@ func subclassSkillAdvantage(c *DnDCharacter, info dndSkillInfo) bool {
if c.Level >= 7 && info.Key == SkillStealth {
return true
}
case SubclassGloomStalker:
// L5 Umbral Sight: in 5e the player is invisible to creatures
// relying on darkvision while in darkness. Adventure zones don't
// track lighting, so we apply unconditionally — same approachability
// shortcut Thief Supreme Sneak takes.
if c.Level >= 5 && info.Key == SkillStealth {
return true
}
}
return false
}