Orbal Gunner (5e Class)

This page was marked as abandoned on 19:26, 12 June 2020 (MDT) because: Issue(s) unaddressed for over a year. (discuss)

If you think you can improve this page please bring the page up to the level of other pages of its type, then remove this template. If this page is completely unusable as is and can't be improved upon based on the information given so far then replace this template with a {{delete}} template. If this page is not brought to playability within one year it will be proposed for deletion.

Edit this Page | All abandoned pages

5.00
(one vote)
This page is incomplete and/or lacking flavor. Reason: Almost no class page is in a finished state when it is first posted. For guidance, see the 5e Class Design Guide.


You can help D&D Wiki by finishing and/or adding flavor to this page. When the flavor has been changed so that this template is no longer applicable please remove this template. If you do not understand the idea behind this page please leave comments on this page's talk page before making any edits.
Edit this Page | All stubs

Orbal Gunner

Creating an Orbal Gunner


Quick Build

You can make a Orbal Gunner quickly by following these suggestions. First, Wisdom should be your highest ability score, followed by Dexterity. Second, choose the Folk Hero background. Third, choose Orbal Handcannon, Dungeoneer's Pack, 5 Flare Flowers

Class Features

As a Orbal Gunner you gain the following class features.

Hit Points

Hit Dice: 1d8 per Orbal Gunner level
Hit Points at 1st Level: 1d8 + Constitution modifier
Hit Points at Higher Levels: 1d8 (or 5) + Constitution modifier per Orbal Gunner level after 1st

Proficiencies

Armor: light
Weapons: Orbal guns
Tools: Orbal Engineer Kit
Saving Throws: Wisdom, Dexterity
Skills: Sleight of Hand, Choose two from Arcana, Deception, Stealth, Acrobatics, Investigation, Perception, Nature, Insight

Equipment

You start with the following equipment, in addition to the equipment granted by your background:

  • Orbal Handcannon
  • (a) Dungeoneer's Pack or (b) Orbal Engineer Kit
  • (a) 5 Flare Flowers or (b) 1 Simple Weapon
  • If you are using starting wealth, you have 10GP in funds.

Table: The Orbal Gunner

LevelProficiency
Bonus
Features—Spell Slots per Spell Level—
1st+2Quick Draw
2nd+2Weapon Expertise, Zoom and Enhance
3rd+2Eagle Eye
4th+2Ability Score Improvement
5th+3Double Tap
6th+3Expert Precision, Expertise Feature
7th+3Howling Bullet
8th+3Ability Score Improvement, Zoom and Enhance Improvement
9th+4
10th+4Ricochet
11th+4Expertise Feature
12th+4Ability Score Improvement, Happy Trigger
13th+5Triple Tap
14th+5Blanks
15th+5Expertise Feature
16th+5Ability Score Improvement, Zoom and Enhance Improvement
17th+6
18th+6Last Ditch
19th+6Ability Score Improvement, Roaring Bullet
20th+6Shooting Gallery

Quick Draw

Starting on 1st level, on your turn, before movement, use your action to shoot an enemy creature with your orbal gun. You may make additional attacks on any enemy creature within a 10ft radius of the initial target.

Weapon Expertise

At 2nd level choose a branch of orbal weaponry to dedicate your time as a marksman to.

Shotgun Expert

2nd level: Buckshot: Using an action and a bonus action, you are able to shoot a shot that scatters and may hit any enemy creature within a 10ft cone. 6th level: Knockback: Any time an enemy creature is hit by your orbment gun they are knocked back. (Medium and below: 15ft, large and above: 5ft) 11th level: Breaching: Your orbal gun is now able to destroy weaker material. 15th level: Explosive Shot: Any enemy creature hit by your orbal gun takes 2d10 additional blast damage and has its speed lowered by half.

Sniper Expert

2nd level: Increased Range: Maximum effective range is increased by 50 feet. 6th level: Piercing Shot: Your shots can now pierce up to 2 enemies. Any shot that pierces an enemy creatures vital spot results in an extra 1d6 piercing damage. 11th level: Combat Perception: When in combat, passive perception +4 15th level: High Ground: You gain advantage on all attacks on enemy creatures that you have more than 5ft elevation on.


Ability Score Increase

When you reach 4th level, and again at 8th, 12th, 16th and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.

Zoom and Enhance

Starting at 2nd level, twice per long rest, and increasing by 1 at 8th and 16th levels, you are able to use a bonus action to augment your orbal weapon with one of the following spells: Attack: 1(+ your level)d6 +2 fire damage Mind: 1(+ your level)d6 +2 ice damage Heal: Heal any friendly creature using any number of your hit die Perception: Gain perfect vision of all things up to your orbal gun's maximum effective range for 1 minute Trap: Any target creature hit by this must make a DC (10+ Wisdom Modifier) Constitution saving throw, on a failed throw roots grow from the creatures legs and attach themselves to the ground leaving the creature unable to move for 1 minute


Eagle Eye

At 3rd level, once per long rest, you can use your action to set up an overwatch reaction shot that will hit any enemy creature that moves in your line of sight until your next turn.

Double Tap

At 5th level, you are able to use an additional action to fire an additional shot on your turn. (Only one attacking ability can be used when using this ability)

Expert Precision

At 6th level, any shot aimed at an enemy creature's vital spot no longer has disadvantage.

Howling Bullet

At 7th level, once per long rest, you are able to fire a shot which explodes on impact, any creature within a 15ft must make a DC 13 Dexterity saving throw, on a failed throw creatures take 5d8 +4 blast damage.

Ricochet

At 10th level, your orbal bullets are now able to ricochet off of surfaces up to 2 times. This may be used as an attack, using an action and a bonus action resulting in no hit penalty.

Multiclassing


Prerequisites. To qualify for multiclassing into the <Orbal Gunner> class, you must meet these prerequisites: Wis: 10, Dex: 10


Back to Main Page 5e Homebrew Classes

gollark: Ah...
gollark: It should be okay with regexes or something non-turing-complete.
gollark: Hold on, I can probably make a much nicer one.
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
This article is issued from Dandwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.