mirror of
https://github.com/prosolis/gogobee.git
synced 2026-07-16 08:52:42 +00:00
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:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user