Bugbears

Bugbears were the lazy bullies of the Hordes, and the rest of Azgaarnoth is grateful that these physical specimens of might have generally chosen the easiest path rather than seek to assert themselves collectively as a race. The only members of the Hordes that might have challenged the minotaurs for primacy over the Hordes, bugbears instead chose to focus on their own indolence rather than leadership and control, and the average bugbear continues that tradition to this day.

name = 'Bugbear'
description = "***Race: Bugbear.*** Bugbears were the lazy bullies of the Hordes, and the rest of Azgaarnoth is grateful that these physical specimens of might have generally chosen the easiest path rather than seek to assert themselves collectively as a race. The only members of the Hordes that might have challenged the minotaurs for primacy over the Hordes, bugbears instead chose to focus on their own indolence rather than leadership and control, and the average bugbear continues that tradition to this day."
type = 'humanoid'

def level0(npc):
  • Ability Score Increase. Your Strength score increases by 2, and your Dexterity score increases by 1.
    npc.STR += 2
    npc.DEX += 1
  • Age. Bugbears reach adulthood at age 16 and live up to 80 years.

  • Alignment. Bugbears endure a harsh existence that demands each of them to remain self-sufficient, even at the expense of their fellows. They tend to be chaotic, and often their natural tendency is to selfishness (evil).

  • Size. Bugbears are between 6 and 8 feet tall and weigh between 250 and 350 pounds. Your size is Medium.

    npc.size = 'Medium'
  • Speed. Your base walking speed is 30 feet.
    npc.speed['walking'] = 30
  • Darkvision. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.
    npc.senses['darkvision'] = 60
  • Long-Limbed. When you make a melee attack on your turn, your reach for it is 5 feet greater than normal.
    npc.traits.append("***Long-Limbed.*** When you make a melee attack on your turn, your reach for it is 5 feet greater than normal.")
  • Powerful Build. You count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.
    npc.traits.append("***Powerful Build.*** You count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.")
  • Sneaky. You are proficient in the Stealth skill.
    npc.skills.append("Stealth")
  • Surprise Attack. If you surprise a creature and hit it with an attack on your first turn in combat, the attack deals an extra 2d6 damage to it. You can use this trait only once per combat.
    npc.traits.append("***Surprise Attack.*** If you surprise a creature and hit it with an attack on your first turn in combat, the attack deals an extra 2d6 damage to it. You can use this trait only once per combat.")
  • Languages. You can speak, read, and write Common and Goblin.
    npc.languages.append('Common')
    npc.languages.append('Goblin')

Bugbear Names

Rith, Nurrink, Zittuth, Chrivrar, Thank, Nadron, Zhun, Rurgunn, Breggor, Naddak, Tidrank, Thaghon, Nezzilk, Vurk, Khor, Tugalk, Bidir, Ditrimkk, Viggamkk, Ghagurk, Hrork, Gonk, Brighar, Zhaggolk, Vidrok, Gughann, Zhaddunn, Gozzath, Thetan, Tegron

def generate_name(npc):
    names = ['Rith', 'Nurrink', 'Zittuth', 'Chrivrar', 'Thank', 'Nadron', 'Zhun', 'Rurgunn', 'Breggor', 'Naddak', 'Tidrank', 'Thaghon', 'Nezzilk', 'Vurk', 'Khor', 'Tugalk', 'Bidir', 'Ditrimkk', 'Viggamkk', 'Ghagurk', 'Hrork', 'Gonk', 'Brighar', 'Zhaggolk', 'Vidrok', 'Gughann', 'Zhaddunn', 'Gozzath', 'Thetan', 'Tegron']
    return random(names)