From e1c45c5f7e3b6c2cb7a0a5ce40824ae184d1580e Mon Sep 17 00:00:00 2001 From: Jacob Lucas Date: Sat, 5 Jun 2021 13:49:45 +0100 Subject: [PATCH] Added experimental automation for classes Added automation for saving throws and skills, prepared for adding item proficiencies and class feats. Only class setup for this is sentinel --- module/actor/entity.js | 52 ++++++++++++++++++++++++++++ module/actor/sheets/newSheet/base.js | 19 ++++++---- packs/packs/classes.db | 2 +- template.json | 50 ++++++++++++++++++++++---- 4 files changed, 109 insertions(+), 14 deletions(-) diff --git a/module/actor/entity.js b/module/actor/entity.js index 228b08d4..9561d51c 100644 --- a/module/actor/entity.js +++ b/module/actor/entity.js @@ -98,11 +98,17 @@ export default class Actor5e extends Actor { } } + // Class features + if (this.data.type === "character") this._prepareClassFeatures(); + // Ability modifiers and saves const dcBonus = Number.isNumeric(data.bonuses?.power?.dc) ? parseInt(data.bonuses.power.dc) : 0; const saveBonus = Number.isNumeric(bonuses.save) ? parseInt(bonuses.save) : 0; const checkBonus = Number.isNumeric(bonuses.check) ? parseInt(bonuses.check) : 0; for (let [id, abl] of Object.entries(data.abilities)) { + // Either proficient because the class says so, or the user has set it + abl.proficient = abl?.classProficient || abl.proficientOverride; + abl.mod = Math.floor((abl.value - 10) / 2); abl.prof = (abl.proficient || 0) * data.attributes.prof; abl.saveBonus = saveBonus; @@ -362,6 +368,49 @@ export default class Actor5e extends Actor { /* -------------------------------------------- */ + /** + * Prepares the derived data from the character's classes + * @private + */ + _prepareClassFeatures() { + let data = this.data.data; + // Automatic class data + for (let theClass of Object.values(this.classes)) { + // Only the original class provides the saving throws, skills, and most item proficiencies + if (theClass.data._id === data.details.originalClass) { + // Saving throws + for (let save of theClass.data.data.saves) { + data.abilities[save].classProficient = 1; + } + + // Skills + for (let skill of theClass.data.data.skills.value) { + data.skills[skill].classValue = 1 + } + + // OG Item Proficiencies + // Armour + for (let item of theClass.data.data.itemProficiencies.armour) { + + } + + // Weapons + for (let item of theClass.data.data.itemProficiencies.weapons) { + + } + + // Items + for (let item of theClass.data.data.itemProficiencies.tools) { + + } + } else { + // Multiclass Item Proficiencies + } + } + } + + /* -------------------------------------------- */ + /** * Prepare skill checks. * @param actorData @@ -383,6 +432,9 @@ export default class Actor5e extends Actor { const observant = flags.observantFeat; const skillBonus = Number.isNumeric(bonuses.skill) ? parseInt(bonuses.skill) : 0; for (let [id, skl] of Object.entries(data.skills)) { + // Use the highest out of the value provided by the class, and the value provided by the user + skl.value = (skl?.classValue > skl.valueOverride ? skl?.classValue : skl.valueOverride); + skl.value = Math.clamped(Number(skl.value).toNearest(0.5), 0, 2) ?? 0; let round = Math.floor; diff --git a/module/actor/sheets/newSheet/base.js b/module/actor/sheets/newSheet/base.js index 938601b7..ca0dce60 100644 --- a/module/actor/sheets/newSheet/base.js +++ b/module/actor/sheets/newSheet/base.js @@ -538,22 +538,27 @@ export default class ActorSheet5e extends ActorSheet { */ _onCycleSkillProficiency(event) { event.preventDefault(); - const field = $(event.currentTarget).siblings('input[type="hidden"]'); + // Like _onToggleAbilityProficiency + // const field = $(event.currentTarget).siblings('input[type="hidden"]'); + const field = event.currentTarget.previousElementSibling; // Get the current level and the array of levels - const level = parseFloat(field.val()); - const levels = [0, 1, 0.5, 2]; + const level = parseFloat(field.value); + const levels = [0, 0.5, 1, 2]; let idx = levels.indexOf(level); // Toggle next level - forward on click, backwards on right if ( event.type === "click" ) { - field.val(levels[(idx === levels.length - 1) ? 0 : idx + 1]); + field.value = (levels[(idx === levels.length - 1) ? 0 : idx + 1]); } else if ( event.type === "contextmenu" ) { - field.val(levels[(idx === 0) ? levels.length - 1 : idx - 1]); + field.value = (levels[(idx === 0) ? levels.length - 1 : idx - 1]); } // Update the field value and save the form - this._onSubmit(event); + + // I've no idea why onsubmit was used, but it doesn't work if we want it to set a different value, thus we replace it with an actor update statement + // this._onSubmit(event); + return this.actor.update({[field.name + "Override"]: parseFloat(field.value)}); } /* -------------------------------------------- */ @@ -922,7 +927,7 @@ _onItemCollapse(event) { _onToggleAbilityProficiency(event) { event.preventDefault(); const field = event.currentTarget.previousElementSibling; - return this.actor.update({[field.name]: 1 - parseInt(field.value)}); + return this.actor.update({[field.name + "Override"]: 1 - parseInt(field.value)}); } /* -------------------------------------------- */ diff --git a/packs/packs/classes.db b/packs/packs/classes.db index 1814efaa..036464e7 100644 --- a/packs/packs/classes.db +++ b/packs/packs/classes.db @@ -1,4 +1,4 @@ -{"_id":"1KSGcLL9HvLEkanx","name":"Sentinel","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

\n

Clad in black robes, the rattataki pulls his hood forward and steps into the shadowy alcove, only to reappear further down the hall. As his quarry walks past, he presses the hilt of his lightsaber to the back of their head, quickly toggling it on-and-off. He is gone before the corpse hits the ground.

\n

The togruta dashes across the battlefield, doublesaber deflecting blaster shots to the ground. She pulls her wounded padawan to her feet, and guides her away from the warzone.

\n

Green-bladed lightsaber a blur, the cathar ferociously presses the attack. With each strike, she guides her opponent closer to the ravine’s edge. A flurry of blows followed by a quick force push and her foe tumbles over the edge.

\n

Sentinels are the masters of blending force powers with weapon attacks. They weave the two together so expertly that their foes have trouble predicting them.

\n

The Middle of the Road

\n

The sentinel uses stealth and subterfuge to accomplish the will of the Force. Where the consular focuses on mastery of the Force and the guardian focuses on the mastery of the lightsaber, the sentinel focuses on merging the two.

\n

Solitary Action

\n

Sentinels are notoriously independent, most comfortable acting alone and without backup; where some use a team to make up for their weaknesses, the sentinel uses the Force to overcome theirs. While some take this independent streak to the extreme, they are usually accepting of authority, as long as they are allowed to carry out directions using their preferred methods.

\n

While creating your sentinel, consider your personal philosophy in regards to the Force and its most famous practitioners - the Jedi and the Sith. Are you a member of one of the two orders, or do you walk a different path? Are you an operative tapping into a latent Force-sensitivity? Were you trained in the force from a young age, or did you discover it as an adult? How do you treat those weaker than you? What was your family like? Do you see the Force as light and dark, or an impartial river of gray?

\n

Quick Build

\n

You can make a sentinel quickly by following these suggestions. First, make Dexterity your highest ability score, followed by Wisdom or Charisma. Second, choose the @Compendium[sw5e.backgrounds.8WMQJLQ6JqRcTZUc]{Jedi} or @Compendium[sw5e.backgrounds.eOpE0XX7z0jx8lwI]{Sith} background.

","chat":"","unidentified":""},"source":"PHB","levels":1,"archetype":"","hitDice":"d8","hitDiceUsed":0,"skills":{"number":3,"choices":[],"value":[]},"attributes":{"spelldc":10},"damage":{"parts":[]},"archetypes":{"value":""},"powercasting":{"progression":"sentinel","ability":""},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"levelsTable":{"value":"

Test

"},"classFeatures":{"value":"
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
The Sentinel
LevelProficiency BonusFeaturesForce Powers KnownForce PointsMax Power LevelKinetic Combat
1st+2Forcecasting, Led by the Force731st-
2nd+2Force-Empowered Self, Sentinel Ideals961std4
3rd+2Sentinel Calling1192ndd4
4th+2Ability Score Improvement13122ndd4
5th+3Extra Attack15152ndd6
6th+3Sentinel Ideals (three ideals)17183rdd6
7th+3Calling feature18213rdd6
8th+3Ability Score Improvement19243rdd6
9th+4Sentinel Ideals (three manifestations)21274thd8
10th+4Battle Readiness22304thd8
11th+4Sentinel Ideals (four ideals)24335thd8
12th+4Ability Score Improvement25365thd8
13th+5Calling feature26395thd10
14th+5-28426thd10
15th+5Enlightened Evasion29456thd10
16th+5Ability Score Improvement30486thd10
17th+6Sentinel Ideals (four manifestations)32517thd12
18th+6Calling feature33547thd12
19th+6Ability Score Improvement34577thd12
20th+6Center of the Force35607thd12
\n
\n
\n

Class Features

\n

As a Sentinel, you gain the following class features.

\n

Hit Points

\n

Hit Dice: 1d8 per Sentinel level

\n

Hit Points at 1st Level: 8 + your Constitution modifier

\n

Hit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per sentinel level after 1st

\n

Proficiencies

\n

Armor: Light armor

\n

Weapons: Simple vibroweapons, simple lightweapons, chakram, doubleblade, doublesaber, doubleshoto, doublesword, hidden blade, lightfoil, light ring, saberwhip, vibrorapier, vibrowhip

\n

Tools: One specialist's kit of your choice

\n

Saving Throws: Dexterity, Charisma

\n

Skills: Choose three from Acrobatics, Animal Handling, Insight, Intimidation, Perception, Persuasion, Piloting, Stealth, and Technology

\n

Equipment

\n

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

\n\n

Variant: Starting Wealth

\n

In lieu of the equipment granted by your class and background, you can elect to purchase your starting gear. If you do so, you receive no equipment from your class and background, and instead roll for your starting wealth using the criteria below:

\n\n\n\n\n\n\n\n\n\n\n\n
ClassFunds
Sentinel1,000 + 3d4 x 100 cr
\n

Forcecasting

\n

Beginning at 1st level, In your meditations on the force, you have learned powers, fragments of knowledge that imbue you with an abiding force ability. See chapter 10 for the general rules of forcecasting and chapter 11 for the force powers list.

\n

Force Powers Known

\n

You learn 7 force powers of your choice, and you learn more at higher levels, as shown in the Force Powers Known column of the sentinel class table. You may not learn a force power of a level higher than your Max Power Level, and you may learn a force power at the same time you learn its prerequisite.

\n

Force Points

\n

You have a number of force points equal to your sentinel level x 3, as shown in the Force Points column of the sentinel class table, + your Wisdom or Charisma modifier (your choice). You use these force points to cast force powers. You regain all expended force points when you finish a long rest.

\n

Max Power Level

\n

Many force powers can be overpowered, consuming more force points to create a greater effect. You can overpower these abilities to a maximum level, which increases at higher levels, as shown in the Max Power Level column of the sentinel class table.

\n

You may only cast force powers at 5th, 6th, and 7th-level once. You regain the ability to do so after a long rest.

\n

Forcecasting Ability

\n

Your forcecasting ability varies based on the alignment of the powers you cast. You use your Wisdom for light side powers, Charisma for dark side powers, and Wisdom or Charisma for universal powers (your choice). You use this ability score modifier whenever a power refers to your forcecasting ability. In addition, you use this ability score modifier when setting the saving throw DC for a force power you cast and when making an attack roll with one.

\n

Force save DC = 8 + your proficiency bonus + your forcecasting ability modifier

\n

Force attack modifier = your proficiency bonus + your forcecasting ability modifier

\n

Led by the Force

\n

Also at 1st level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn’t already include your proficiency bonus.

\n

Force-Empowered Self

\n

Starting at 2nd level, your training allows you to harness the mystical energy of the Force throughout your body. When you hit a creature with a melee weapon attack, you can spend 1 force point to use a Force-Empowered Self effect. Each effect uses a d4, which changes as you gain sentinel levels, as shown in the Kinetic Combat column of the sentinel table. You have three such effects: Deflection, Double Strike, and Slow Time. You can only use each effect once per turn, and you can only use one effect per hit.

\n

Deflection

\n

You can roll a Kinetic Combat die and add it to your AC against one attack before the start of your next turn.

\n

Double Strike

\n

You can roll a Kinetic Combat die and deal additional damage equal to the amount rolled.

\n

Slow Time

\n

You can roll a Kinetic Combat die to increase your speed by 5 x the amount rolled until the end of your turn.

\n

Sentinel Ideals

\n

Also at 2nd level, you adopt ideals that exemplify your bond with the Force. You adopt two ideals of your choice, as detailed at the end of the class description. You adopt an additional ideal at 6th and 11th level. When you manifest your Sentinel Ideals, you choose which effect to create.

\n

You can manifest your ideals twice. You gain an additional use at 9th and 17th level. You regain all expended uses when you finish a long rest.

\n

Sentinel Calling

\n

When you reach 3rd level, you choose a sentinel calling, which is detailed at the end of the class description. Your calling grants you features at 3rd level and again at 7th, 13th, and 18th level.

\n

Ability Score Improvement

\n

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. Alternatively, you can choose a feat (see Chapter 6 for a list of feats).

\n

Extra Attack

\n

At 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.

\n

Battle Readiness

\n

Starting at 10th level, you have fully learned how to meld your physical self with the Force. When you take the Dodge or Disengage actions, or use your action to cast a force power, you can make one melee weapon attack as a bonus action.

\n

Enlightened Evasion

\n

When you reach 15th level, when you are subjected to a damage-dealing effect that forces you to make a saving throw, you can spend 2 force points to add your Wisdom or Charisma modifier (your choice, minimum of one) to the saving throw if doesn’t already include that modifier. If you do so, you instead take no damage if you succeed on the saving throw, and only half damage if you fail. You can wait until after you roll the d20 to use this feature, but you must decide before the GM says whether the roll succeeds or fails.

\n

Center of the Force

\n

At 20th level, you are perfectly centered with the Force. Your Dexterity and Wisdom or Charisma scores (your choice) increase by 2. Your maximum for those scores increases by 2.

\n

Additionally, once per turn, when you would roll a Kinetic Combat die, you can instead choose the maximum.

\n

Sentinel Ideals

\n

The ideals are presented in alphabetical order. You can’t benefit from a Sentinel Ideal option more than once, even if you later get to choose again.

\n

Ideal of the Agile

\n

You gain a swimming speed and a climbing speed equal to your walking speed. When you make a long jump, you can cover a number of feet up to twice your Wisdom or Charisma score (your choice). When you make a high jump, you can leap a number of feet up into the air equal to 3 + twice your Wisdom or Charisma modifier (your choice).

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, opportunity attacks against you are made with disadvantage.

\n

Ideal of the Artisan

\n

Choose one of your skill or tool proficiencies. When you make an ability check with the chosen skill or tool, you can add half your Wisdom or Charisma modifier (your choice, minimum of one) to any check you make that doesn’t already include that modifier.

\n

Additionally, as an action, you can manifest this ideal in a brief surge of energy. For the next 10 minutes, the bonus increases to your Wisdom or Charisma modifier, and you can choose a second skill or tool to extend this feature to.

\n

Ideal of the Contender

\n

You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes, and your unarmed strike damage increases by one step (from 1 to d4, d4 to d6, or d6 to d8).

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, your unarmed strikes count as enhanced for the purpose of overcoming resistance and immunity to unenhanced attacks and damage, and you can use your Wisdom or Charisma modifier (your choice) instead of Strength for checks made to grapple a target or escape a grapple.

\n

Ideal of the Fighter

\n

You adopt a particular style of fighting as your specialty. Choose one of the fighting style options, detailed in Chapter 6. You can’t take a fighting style option more than once, even if you later get to choose again.

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, you know the fighting mastery that corresponds with the fighting style you chose with this feature. If you already know that fighting mastery, you instead learn another of your choice for the duration.

\n

Ideal of the Hunter

\n

You gain darkvision out to a range of 60 feet. If you already have darkvision, this ideal increases its range by 30 feet.

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, you can see normally in enhanced darkness, and you gain blindsight to 10 feet.

\n

Ideal of the Steadfast

\n

When you would make a melee weapon attack roll, you can instead force the target to make a Dexterity saving throw (DC = 8 + your bonus to attacks with the weapon). If you would have advantage on your attack roll, the creature instead has disadvantage on their saving throw, and if you would have disadvantage on your attack roll, the creature instead has advantage on their saving throw. On a failed save, the target takes normal weapon damage and is subjected to any additional effects that would occur on a hit.

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, when a creature succeeds on the saving throw, they take half the normal weapon damage, and when a creature rolls a 1 on the saving throw, they treat the damage as if you had rolled the maximum.

\n

Ideal of the Titan

\n

You gain proficiency in medium armor.

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, you have advantage on ability checks and attack rolls that would forcefully move another creature, and the distance they would be moved increases by 5 feet.

\n

Ideal of the Tranquil

\n

When you finish a short or long rest, you gain a number of temporary force points equal to half your Wisdom or Charisma modifier (rounded up, your choice, minimum of one). When you would spend a force point while you have temporary force points, the temporary force points are spent first. All temporary force points are lost at the end of your next short or long rest.

\n

Additionally, as an action, you can manifest this ideal in a brief surge of energy. You regain a number of force points equal to half your Wisdom or Charisma modifier (rounded up, your choice, minimum of one).

\n

Ideal of the Vigorous

\n

When you roll a Hit Die to regain hit points, you may use your Wisdom or Charisma modifier in place of your Constitution modifier when determining the number of hit points you regain.

\n

Additionally, as an action, you can manifest this ideal in a brief surge of energy. You gain a number of temporary hit points equal to half your sentinel level (rounded down) + your Wisdom or Charisma modifier (your choice, minimum of one).

"},"className":{"value":"Sentinel"},"atFlavorText":{"value":"

Sentinel Callings

\n

Different sentinels select different callings, called Paths, to follow as they hone their powers. Your calling grants you features at 3rd, 7th, 13th, and 18th level.

\n

@Compendium[sw5e.archetypes.3GmBJl9h0FpyIKFg]{Path of Aggression}

\n

@Compendium[sw5e.archetypes.qlg4myujDRxt6FXB]{Path of Communion}

\n

@Compendium[sw5e.archetypes.9AQImD6JBpd9c1UK]{Path of the Corsair}

\n

@Compendium[sw5e.archetypes.pnWaHtbho4xgFpIU]{Path of Etherealness}

\n

@Compendium[sw5e.archetypes.xIgy4jaHPhmry1Ub]{Path of Focus}

\n

@Compendium[sw5e.archetypes.4afEpKVpPAUq3lMe]{Path of the Forceblade}

\n

@Compendium[sw5e.archetypes.L6wU6YEYKHOJH9AX]{Path of Meditation}

\n

@Compendium[sw5e.archetypes.X3FsoSbXFXkvJvZO]{Path of Shadows}

\n

@Compendium[sw5e.archetypes.tND6Q1akd5unb3jf]{Path of Synthesis}

\n

@Compendium[sw5e.archetypes.BtUr8K0noVfAE11J]{Path of Tenacity}

\n

@Compendium[sw5e.archetypes.VRfBQKAhumWExGiy]{Path of Witchcraft}

"}},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.armorProf.value","value":"lgt","mode":"+","targetSpecific":false,"id":1,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Armor Prof"},{"modSpecKey":"data.traits.weaponProf.custom","value":"simple vibroweapons","mode":"+","targetSpecific":false,"id":2,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.abilities.cha.proficient","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Abilities Charisma Proficiency"},{"modSpecKey":"data.abilities.dex.proficient","value":"1","mode":"+","targetSpecific":false,"id":4,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Abilities Dexterity Proficiency"},{"modSpecKey":"data.traits.weaponProf.custom","value":"simple lightweapons","mode":"+","targetSpecific":false,"id":5,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"chakram","mode":"+","targetSpecific":false,"id":6,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"doubleblade","mode":"+","targetSpecific":false,"id":7,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"doublesaber","mode":"+","targetSpecific":false,"id":8,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"doubleshoto","mode":"+","targetSpecific":false,"id":9,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"doublesword","mode":"+","targetSpecific":false,"id":10,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"hidden blade","mode":"+","targetSpecific":false,"id":11,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"lightfoil","mode":"+","targetSpecific":false,"id":12,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"light ring","mode":"+","targetSpecific":false,"id":13,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"saberwhip","mode":"+","targetSpecific":false,"id":14,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"vibrorapier","mode":"+","targetSpecific":false,"id":15,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"vibrowhip","mode":"+","targetSpecific":false,"id":16,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Classes/Sentinel.webp","effects":[]} +{"_id":"1KSGcLL9HvLEkanx","name":"Sentinel","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

\n

Clad in black robes, the rattataki pulls his hood forward and steps into the shadowy alcove, only to reappear further down the hall. As his quarry walks past, he presses the hilt of his lightsaber to the back of their head, quickly toggling it on-and-off. He is gone before the corpse hits the ground.

\n

The togruta dashes across the battlefield, doublesaber deflecting blaster shots to the ground. She pulls her wounded padawan to her feet, and guides her away from the warzone.

\n

Green-bladed lightsaber a blur, the cathar ferociously presses the attack. With each strike, she guides her opponent closer to the ravine’s edge. A flurry of blows followed by a quick force push and her foe tumbles over the edge.

\n

Sentinels are the masters of blending force powers with weapon attacks. They weave the two together so expertly that their foes have trouble predicting them.

\n

The Middle of the Road

\n

The sentinel uses stealth and subterfuge to accomplish the will of the Force. Where the consular focuses on mastery of the Force and the guardian focuses on the mastery of the lightsaber, the sentinel focuses on merging the two.

\n

Solitary Action

\n

Sentinels are notoriously independent, most comfortable acting alone and without backup; where some use a team to make up for their weaknesses, the sentinel uses the Force to overcome theirs. While some take this independent streak to the extreme, they are usually accepting of authority, as long as they are allowed to carry out directions using their preferred methods.

\n

While creating your sentinel, consider your personal philosophy in regards to the Force and its most famous practitioners - the Jedi and the Sith. Are you a member of one of the two orders, or do you walk a different path? Are you an operative tapping into a latent Force-sensitivity? Were you trained in the force from a young age, or did you discover it as an adult? How do you treat those weaker than you? What was your family like? Do you see the Force as light and dark, or an impartial river of gray?

\n

Quick Build

\n

You can make a sentinel quickly by following these suggestions. First, make Dexterity your highest ability score, followed by Wisdom or Charisma. Second, choose the @Compendium[sw5e.backgrounds.8WMQJLQ6JqRcTZUc]{Jedi} or @Compendium[sw5e.backgrounds.eOpE0XX7z0jx8lwI]{Sith} background.

","chat":"","unidentified":""},"source":"PHB","levels":1,"archetype":"","hitDice":"d8","hitDiceUsed":0,"skills":{"number":3,"choices":["acr","ani","ins","itm","prc","per","pil","ste","tec"],"value":["itm","prc","ste"]},"saves":["dex","cha"],"proficiencies":{"armour":["lgt"],"weapons":["svb","slw","chk","dbb","dbs","dsh","dsw","hid","lfl","lrg","swh","vbr","vbw"],"tools":[]},"multiclassProficiencies":{"armour":[],"weapons":[],"tools":[]},"attributes":{"spelldc":10},"damage":{"parts":[]},"archetypes":{"value":""},"powercasting":{"progression":"sentinel","ability":""},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"levelsTable":{"value":"

Test

"},"classFeatures":{"value":"
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
The Sentinel
LevelProficiency BonusFeaturesForce Powers KnownForce PointsMax Power LevelKinetic Combat
1st+2Forcecasting, Led by the Force731st-
2nd+2Force-Empowered Self, Sentinel Ideals961std4
3rd+2Sentinel Calling1192ndd4
4th+2Ability Score Improvement13122ndd4
5th+3Extra Attack15152ndd6
6th+3Sentinel Ideals (three ideals)17183rdd6
7th+3Calling feature18213rdd6
8th+3Ability Score Improvement19243rdd6
9th+4Sentinel Ideals (three manifestations)21274thd8
10th+4Battle Readiness22304thd8
11th+4Sentinel Ideals (four ideals)24335thd8
12th+4Ability Score Improvement25365thd8
13th+5Calling feature26395thd10
14th+5-28426thd10
15th+5Enlightened Evasion29456thd10
16th+5Ability Score Improvement30486thd10
17th+6Sentinel Ideals (four manifestations)32517thd12
18th+6Calling feature33547thd12
19th+6Ability Score Improvement34577thd12
20th+6Center of the Force35607thd12
\n
\n
\n

Class Features

\n

As a Sentinel, you gain the following class features.

\n

Hit Points

\n

Hit Dice: 1d8 per Sentinel level

\n

Hit Points at 1st Level: 8 + your Constitution modifier

\n

Hit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per sentinel level after 1st

\n

Proficiencies

\n

Armor: Light armor

\n

Weapons: Simple vibroweapons, simple lightweapons, chakram, doubleblade, doublesaber, doubleshoto, doublesword, hidden blade, lightfoil, light ring, saberwhip, vibrorapier, vibrowhip

\n

Tools: One specialist's kit of your choice

\n

Saving Throws: Dexterity, Charisma

\n

Skills: Choose three from Acrobatics, Animal Handling, Insight, Intimidation, Perception, Persuasion, Piloting, Stealth, and Technology

\n

Equipment

\n

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

\n\n

Variant: Starting Wealth

\n

In lieu of the equipment granted by your class and background, you can elect to purchase your starting gear. If you do so, you receive no equipment from your class and background, and instead roll for your starting wealth using the criteria below:

\n\n\n\n\n\n\n\n\n\n\n\n
ClassFunds
Sentinel1,000 + 3d4 x 100 cr
\n

Forcecasting

\n

Beginning at 1st level, In your meditations on the force, you have learned powers, fragments of knowledge that imbue you with an abiding force ability. See chapter 10 for the general rules of forcecasting and chapter 11 for the force powers list.

\n

Force Powers Known

\n

You learn 7 force powers of your choice, and you learn more at higher levels, as shown in the Force Powers Known column of the sentinel class table. You may not learn a force power of a level higher than your Max Power Level, and you may learn a force power at the same time you learn its prerequisite.

\n

Force Points

\n

You have a number of force points equal to your sentinel level x 3, as shown in the Force Points column of the sentinel class table, + your Wisdom or Charisma modifier (your choice). You use these force points to cast force powers. You regain all expended force points when you finish a long rest.

\n

Max Power Level

\n

Many force powers can be overpowered, consuming more force points to create a greater effect. You can overpower these abilities to a maximum level, which increases at higher levels, as shown in the Max Power Level column of the sentinel class table.

\n

You may only cast force powers at 5th, 6th, and 7th-level once. You regain the ability to do so after a long rest.

\n

Forcecasting Ability

\n

Your forcecasting ability varies based on the alignment of the powers you cast. You use your Wisdom for light side powers, Charisma for dark side powers, and Wisdom or Charisma for universal powers (your choice). You use this ability score modifier whenever a power refers to your forcecasting ability. In addition, you use this ability score modifier when setting the saving throw DC for a force power you cast and when making an attack roll with one.

\n

Force save DC = 8 + your proficiency bonus + your forcecasting ability modifier

\n

Force attack modifier = your proficiency bonus + your forcecasting ability modifier

\n

Led by the Force

\n

Also at 1st level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn’t already include your proficiency bonus.

\n

Force-Empowered Self

\n

Starting at 2nd level, your training allows you to harness the mystical energy of the Force throughout your body. When you hit a creature with a melee weapon attack, you can spend 1 force point to use a Force-Empowered Self effect. Each effect uses a d4, which changes as you gain sentinel levels, as shown in the Kinetic Combat column of the sentinel table. You have three such effects: Deflection, Double Strike, and Slow Time. You can only use each effect once per turn, and you can only use one effect per hit.

\n

Deflection

\n

You can roll a Kinetic Combat die and add it to your AC against one attack before the start of your next turn.

\n

Double Strike

\n

You can roll a Kinetic Combat die and deal additional damage equal to the amount rolled.

\n

Slow Time

\n

You can roll a Kinetic Combat die to increase your speed by 5 x the amount rolled until the end of your turn.

\n

Sentinel Ideals

\n

Also at 2nd level, you adopt ideals that exemplify your bond with the Force. You adopt two ideals of your choice, as detailed at the end of the class description. You adopt an additional ideal at 6th and 11th level. When you manifest your Sentinel Ideals, you choose which effect to create.

\n

You can manifest your ideals twice. You gain an additional use at 9th and 17th level. You regain all expended uses when you finish a long rest.

\n

Sentinel Calling

\n

When you reach 3rd level, you choose a sentinel calling, which is detailed at the end of the class description. Your calling grants you features at 3rd level and again at 7th, 13th, and 18th level.

\n

Ability Score Improvement

\n

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. Alternatively, you can choose a feat (see Chapter 6 for a list of feats).

\n

Extra Attack

\n

At 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.

\n

Battle Readiness

\n

Starting at 10th level, you have fully learned how to meld your physical self with the Force. When you take the Dodge or Disengage actions, or use your action to cast a force power, you can make one melee weapon attack as a bonus action.

\n

Enlightened Evasion

\n

When you reach 15th level, when you are subjected to a damage-dealing effect that forces you to make a saving throw, you can spend 2 force points to add your Wisdom or Charisma modifier (your choice, minimum of one) to the saving throw if doesn’t already include that modifier. If you do so, you instead take no damage if you succeed on the saving throw, and only half damage if you fail. You can wait until after you roll the d20 to use this feature, but you must decide before the GM says whether the roll succeeds or fails.

\n

Center of the Force

\n

At 20th level, you are perfectly centered with the Force. Your Dexterity and Wisdom or Charisma scores (your choice) increase by 2. Your maximum for those scores increases by 2.

\n

Additionally, once per turn, when you would roll a Kinetic Combat die, you can instead choose the maximum.

\n

Sentinel Ideals

\n

The ideals are presented in alphabetical order. You can’t benefit from a Sentinel Ideal option more than once, even if you later get to choose again.

\n

Ideal of the Agile

\n

You gain a swimming speed and a climbing speed equal to your walking speed. When you make a long jump, you can cover a number of feet up to twice your Wisdom or Charisma score (your choice). When you make a high jump, you can leap a number of feet up into the air equal to 3 + twice your Wisdom or Charisma modifier (your choice).

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, opportunity attacks against you are made with disadvantage.

\n

Ideal of the Artisan

\n

Choose one of your skill or tool proficiencies. When you make an ability check with the chosen skill or tool, you can add half your Wisdom or Charisma modifier (your choice, minimum of one) to any check you make that doesn’t already include that modifier.

\n

Additionally, as an action, you can manifest this ideal in a brief surge of energy. For the next 10 minutes, the bonus increases to your Wisdom or Charisma modifier, and you can choose a second skill or tool to extend this feature to.

\n

Ideal of the Contender

\n

You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes, and your unarmed strike damage increases by one step (from 1 to d4, d4 to d6, or d6 to d8).

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, your unarmed strikes count as enhanced for the purpose of overcoming resistance and immunity to unenhanced attacks and damage, and you can use your Wisdom or Charisma modifier (your choice) instead of Strength for checks made to grapple a target or escape a grapple.

\n

Ideal of the Fighter

\n

You adopt a particular style of fighting as your specialty. Choose one of the fighting style options, detailed in Chapter 6. You can’t take a fighting style option more than once, even if you later get to choose again.

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, you know the fighting mastery that corresponds with the fighting style you chose with this feature. If you already know that fighting mastery, you instead learn another of your choice for the duration.

\n

Ideal of the Hunter

\n

You gain darkvision out to a range of 60 feet. If you already have darkvision, this ideal increases its range by 30 feet.

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, you can see normally in enhanced darkness, and you gain blindsight to 10 feet.

\n

Ideal of the Steadfast

\n

When you would make a melee weapon attack roll, you can instead force the target to make a Dexterity saving throw (DC = 8 + your bonus to attacks with the weapon). If you would have advantage on your attack roll, the creature instead has disadvantage on their saving throw, and if you would have disadvantage on your attack roll, the creature instead has advantage on their saving throw. On a failed save, the target takes normal weapon damage and is subjected to any additional effects that would occur on a hit.

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, when a creature succeeds on the saving throw, they take half the normal weapon damage, and when a creature rolls a 1 on the saving throw, they treat the damage as if you had rolled the maximum.

\n

Ideal of the Titan

\n

You gain proficiency in medium armor.

\n

Additionally, as a bonus action, you can manifest this ideal in a brief surge of energy. For the next minute, you have advantage on ability checks and attack rolls that would forcefully move another creature, and the distance they would be moved increases by 5 feet.

\n

Ideal of the Tranquil

\n

When you finish a short or long rest, you gain a number of temporary force points equal to half your Wisdom or Charisma modifier (rounded up, your choice, minimum of one). When you would spend a force point while you have temporary force points, the temporary force points are spent first. All temporary force points are lost at the end of your next short or long rest.

\n

Additionally, as an action, you can manifest this ideal in a brief surge of energy. You regain a number of force points equal to half your Wisdom or Charisma modifier (rounded up, your choice, minimum of one).

\n

Ideal of the Vigorous

\n

When you roll a Hit Die to regain hit points, you may use your Wisdom or Charisma modifier in place of your Constitution modifier when determining the number of hit points you regain.

\n

Additionally, as an action, you can manifest this ideal in a brief surge of energy. You gain a number of temporary hit points equal to half your sentinel level (rounded down) + your Wisdom or Charisma modifier (your choice, minimum of one).

"},"className":{"value":"Sentinel"},"atFlavorText":{"value":"

Sentinel Callings

\n

Different sentinels select different callings, called Paths, to follow as they hone their powers. Your calling grants you features at 3rd, 7th, 13th, and 18th level.

\n

@Compendium[sw5e.archetypes.3GmBJl9h0FpyIKFg]{Path of Aggression}

\n

@Compendium[sw5e.archetypes.qlg4myujDRxt6FXB]{Path of Communion}

\n

@Compendium[sw5e.archetypes.9AQImD6JBpd9c1UK]{Path of the Corsair}

\n

@Compendium[sw5e.archetypes.pnWaHtbho4xgFpIU]{Path of Etherealness}

\n

@Compendium[sw5e.archetypes.xIgy4jaHPhmry1Ub]{Path of Focus}

\n

@Compendium[sw5e.archetypes.4afEpKVpPAUq3lMe]{Path of the Forceblade}

\n

@Compendium[sw5e.archetypes.L6wU6YEYKHOJH9AX]{Path of Meditation}

\n

@Compendium[sw5e.archetypes.X3FsoSbXFXkvJvZO]{Path of Shadows}

\n

@Compendium[sw5e.archetypes.tND6Q1akd5unb3jf]{Path of Synthesis}

\n

@Compendium[sw5e.archetypes.BtUr8K0noVfAE11J]{Path of Tenacity}

\n

@Compendium[sw5e.archetypes.VRfBQKAhumWExGiy]{Path of Witchcraft}

"}},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.armorProf.value","value":"lgt","mode":"+","targetSpecific":false,"id":1,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Armor Prof"},{"modSpecKey":"data.traits.weaponProf.custom","value":"simple vibroweapons","mode":"+","targetSpecific":false,"id":2,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.abilities.cha.proficient","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Abilities Charisma Proficiency"},{"modSpecKey":"data.abilities.dex.proficient","value":"1","mode":"+","targetSpecific":false,"id":4,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Abilities Dexterity Proficiency"},{"modSpecKey":"data.traits.weaponProf.custom","value":"simple lightweapons","mode":"+","targetSpecific":false,"id":5,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"chakram","mode":"+","targetSpecific":false,"id":6,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"doubleblade","mode":"+","targetSpecific":false,"id":7,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"doublesaber","mode":"+","targetSpecific":false,"id":8,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"doubleshoto","mode":"+","targetSpecific":false,"id":9,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"doublesword","mode":"+","targetSpecific":false,"id":10,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"hidden blade","mode":"+","targetSpecific":false,"id":11,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"lightfoil","mode":"+","targetSpecific":false,"id":12,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"light ring","mode":"+","targetSpecific":false,"id":13,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"saberwhip","mode":"+","targetSpecific":false,"id":14,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"vibrorapier","mode":"+","targetSpecific":false,"id":15,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"vibrowhip","mode":"+","targetSpecific":false,"id":16,"itemId":"1KSGcLL9HvLEkanx","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Classes/Sentinel.webp","effects":[]} {"_id":"2femmWtRKWpl2VAl","name":"Operative","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

\n

A Bothan spy takes a moment to adjust her infrared goggles. Nimbly sidestepping the laser grid in the room, she slips to the computer at the far end. Counting down the seconds in her head, she slices the mainframe. Twenty seconds. Ten seconds. A handful of soldiers bursts into the room, but she is already gone—with the data in hand.

\n

With a wary eye on the door, a scruffy-looking Duros plays pazaak in a seedy cantina. When two city guards appear at the exit, he smiles and reaches under the table. Before they can move in, the smuggler flips the table and opens fire. The crowd scatters in panic, giving him just enough cover to escape.

\n

A gorgeous young human dances before an intoxicated senator in his parlor. She winks enticingly through her golden blonde hair as she sways closer. Leaning in for a kiss, the senator is instead surprised by the barrel of a hold-out blaster pistol shoved into his mouth. He has no time to shout before the assassin pulls the trigger.

\n

Operatives, whether good, bad, or neutral, are those who focus on a specific practice and utilize it to get the upper hand. They can come from any world or region in the galaxy, with origins from the lowliest scoundrel to the once social elite.

\n

Evading Danger

\n

Operatives have a knack for getting out of trouble. They have an instinct for self-preservation that keeps them alive, but it’s usually tempered with a need to experience the thrills that their profession has to offer, and many adventurous operatives are also saddled with a sense of honor that sometimes makes them go against their natural inclinations. No matter what their immediate concerns may be, survival is the name of the game.

\n

Outside the Law

\n

Operatives don’t often start out seeking to defy authority and break the law. Some are thrust into the profession as a means of rebellion. Others wind up on the wrong side of the law due to bad luck, poor decisions, or circumstances beyond their control. The skills they pick up along the way make them great members of any mission team.

\n

While creating your operative character, consider how you first started on your path. Maybe you were raised on the street and fell into the criminal element as a means of survival. You could be a simple trader who decided to strike against the Sith Empire when it encroached on your business. What would you say is your greatest skill set? What is your core, the truest essence about yourself that keeps you focused? Why would society treat you as a criminal, yet your allies hold you as a loyal companion?

\n

Quick Build

\n

You can make an operative quickly by following these suggestions. First, make Dexterity your highest ability score, followed by Intelligence or Charisma. Second, choose the @Compendium[sw5e.backgrounds.IgvB3RMSetUpL1l0]{Gambler} background.

","chat":"","unidentified":""},"source":"PHB","levels":1,"archetype":"","hitDice":"d8","hitDiceUsed":0,"skills":{"number":4,"choices":[],"value":[]},"attributes":{"spelldc":10},"damage":{"parts":[]},"archetypes":{"value":""},"powercasting":{"progression":"none","ability":""},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"levelsTable":{"value":"

Test

"},"classFeatures":{"value":"
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
The Operative
LevelProficiency BonusFeaturesSneak AttackOperative Exploits
1st+2Expertise, Sneak Attack1d6-
2nd+2Cunning Action, Operative Exploits1d62
3rd+2Bad Feeling, Operative Practice2d62
4th+2Ability Score Improvement2d62
5th+3Uncanny Dodge3d62
6th+3Expertise3d62
7th+3Evasion4d63
8th+3Ability Score Improvement4d63
9th+4Practice feature5d63
10th+4Ability Score Improvement5d63
11th+4Reliable Talent6d63
12th+4Ability Score Improvement6d63
13th+5Practice feature7d64
14th+5Blindsense7d64
15th+5Slippery Mind8d64
16th+5Ability Score Improvement8d64
17th+6Practice feature9d65
18th+6Elusive9d65
19th+6Ability Score Improvement10d65
20th+6Stroke of Luck10d65
\n
\n
\n

Class Features

\n

As a Operative, you gain the following class features.

\n

Hit Points

\n

Hit Dice: 1d8 per Operative level

\n

Hit Points at 1st Level: 8 + your Constitution modifier

\n

Hit Points at Higher Levels: 1d8 (or 5) + your Constitution modifier per operative level after 1st

\n

Proficiencies

\n

Armor: Light armor

\n

Weapons: Simple blasters, simple vibroweapons, blaster pistol, hidden blade, techblade, vibrorapier

\n

Tools: One specialist's kit of your choice

\n

Saving Throws: Dexterity, Intelligence

\n

Skills: Choose any four

\n

Equipment

\n

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

\n\n

Variant: Starting Wealth

\n

In lieu of the equipment granted by your class and background, you can elect to purchase your starting gear. If you do so, you receive no equipment from your class and background, and instead roll for your starting wealth using the criteria below:

\n\n\n\n\n\n\n\n\n\n\n\n
ClassFunds
Operative7d4 x 100 cr
\n

Expertise

\n

Beginning at 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and one of your tool proficiencies, or two of your tool proficiencies. You gain expertise in those skills or tools.

\n

At 6th level, you can choose two more of your proficiencies (in skills or tools) to gain this benefit.

\n

Sneak Attack

\n

Also at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.

\n

You don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.

\n

The amount of the extra damage increases as you gain levels in this class, as shown in the Sneak Attack column of the operative class table.

\n

Cunning Action

\n

At 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.

\n

Operative Exploits

\n

Also at 2nd level, you’ve adopted two exploits, as detailed at the end of the class description. You adopt an additional exploit at 7th, 13th, and 17th level.

\n

Bad Feeling

\n

Starting at 3rd level, you have a wary eye, bordering on paranoia. When you roll for initiative, you can move up to your speed. This movement happens before the initiative order is determined.

\n

Once you've used this feature, you can't use it again until you finish a long rest.

\n

Operative Practice

\n

Also at 3rd level, you choose a practice that you emulate in the exercise of your operative abilities, which is detailed at the end of the class description. Your practice choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.

\n

Ability Score Improvement

\n

When you reach 4th level, and again at 8th, 10th, 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. Alternatively, you can choose a feat (see Chapter 6 for a list of feats).

\n

Uncanny Dodge

\n

Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.

\n

Evasion

\n

Beginning at 7th level, when you are subjected to an effect, such as a consular's force storm or an engineer's explosion, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on a saving throw, and only half damage if you fail.

\n

Reliable Talent

\n

By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.

\n

Blindsense

\n

Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.

\n

Slippery Mind

\n

By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.

\n

Elusive

\n

Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.

\n

Stroke of Luck

\n

At 20th level, you have an uncanny knack for succeeding when you need to. Your Dexterity and Intelligence scores increase by 2. Your maximum for those scores increases by 2. Additionally, if your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.

\n

Once you’ve used this feature, you can’t use it again until you finish a short or long rest.

\n

Operative Exploits

\n

The exploits are presented in alphabetical order. If an exploit has prerequisites, you must meet them to learn it. You can learn an exploit at the same time you meet its prerequisites.

\n

Commander’s Exploit

\n

You gain proficiency in medium armor.

\n

Explorer’s Exploit

\n

You can hold your breath twice as long as you are normally able to, and take half as much damage from fall damage.

\n

Fate’s Exploit

\n

Prerequisite: 7th level
When you finish a short or long rest, roll a d20 and record the number rolled. Once before your next short or long rest, you can replace any attack roll, saving throw, or ability check made by you or a creature within 5 feet of you with this roll. You must choose to do so before the roll.

\n

Fighter’s Exploit

\n

You adopt a particular style of fighting as your specialty. Choose one of the fighting Style options, detailed in Chapter 6. You can’t take a fighting Style option more than once, even if you later get to choose again.

\n

Freedom’s Exploit

\n

You ignore unenhanced difficult terrain, and when you would use your action to break free of an effect that is grappling or restraining you, you can instead use your bonus action.

\n

Guerrilla’s Exploit

\n

You only need 4 hours of sleep to gain the benefit of a long rest.

\n

Additionally, you have advantage on saving throws against exhaustion.

\n

Learner’s Exploit

\n

You gain proficiency in a skill and a tool, or two tools.

\n

You can select this discovery multiple times, each time choosing a new skill and a tool, or two new tools.

\n

Mentor’s Exploit

\n

Prerequisite: 13th level
Once per turn, whenever both you and a friendly creature within 60 feet that can see and hear you both have to make a saving throw to resist the same effect, you can choose to have disadvantage on the save. If you do so, the friendly creature gains advantage on the save. You can use this feature before or after you both make the saving throw, but you must do so before the GM says whether the save succeeds or fails.

\n

Skill’s Exploit

\n

You learn an exploit that enhances your ability to apply your knowledge to combat situations. You can take this exploit multiple times.

\n

When you take the Attack action, you can use one of your skill exploits granted by this feature. You can use these features a combined number of times equal to your Intelligence modifier (a minimum of once). You regain any expended uses when you finish a long rest.

\n

Choose from the following. You must be proficient in the skill in order to take that skill’s exploit.

\n

Aim (Stealth). You attempt to line up a strike against a creature you can see that you are hidden from. Make a Dexterity (Stealth) check contested by the target’s Wisdom (Perception) check. If your check succeeds, you gain a +10 bonus to the first attack roll you make against the target before the end of your next turn. If your check fails, you are no longer hidden from the target.

\n

Angle (Perception). You attempt to predict the behavior of a humanoid you can see within 30 feet. Make a Wisdom (Perception) check contested by the target’s Dexterity (Sleight of Hand) check. If your check succeeds, the first attack roll the target makes before the start of your next turn has disadvantage, and the first saving throw the creature makes before the start of your next turn has disadvantage. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Battle Cry (Intimidation). You attempt to demoralize one humanoid you can see within 30 feet of you that can see and hear you. Make a Charisma (Intimidation) check contested by the target’s Wisdom (Insight) check. If your check succeeds, the target is frightened until the end of your next turn. If the target was already frightened of you, it must immediately drop whatever it is holding. On its next turn, if it is still frightened of you, it must take the Dash action and move away from you by the safest available route on its turn, unless there is nowhere to move. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Charm (Persuasion). You attempt to convince one humanoid you can see within 30 feet that can hear and understand you. Make a Charisma (Persuasion) check contested by the target’s Wisdom (Insight) check. If you have dealt damage to the creature in the last hour, it has advantage on the check. If your check succeeds, the target is charmed by you until the start of your next turn, and it has disadvantage on the first attack roll it makes against a creature before the end of its next turn. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Confuse Beast (Animal Handling). You attempt to confuse one beast on the battlefield. Make a Wisdom (Animal Handling) check contested by the target’s Wisdom (Insight) check. If your check succeeds, the beast cannot take actions or reactions until the end of your next turn. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Distract (Performance). You attempt to distract one beast or humanoid you can see within 30 feet of you that can see and hear you. Make a Charisma (Performance) check contested by the target’s Wisdom (Insight) check. If your check succeeds, the next attack roll made against the target before the start of its next turn has advantage. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Emulate Predator (Nature). You attempt to emulate the sounds of a natural predator of a beast or plant you can see within 30 feet. Make an Intelligence (Nature) check contested by the target’s Wisdom (Insight) check. If your check succeeds, the target must take the Dash action and move away from you by the safest available route on its turn, unless there is nowhere to move. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Feint (Deception). You attempt to divert the attention of a target you can see within 30 feet. Make a Charisma (Deception) check contested by the target’s Wisdom (Insight) check. If your check succeeds, the first attack roll made against the target before the start of your next turn by someone other than you has advantage, and the target has disadvantage on the first saving throw they make against an effect caused by a creature other than you before the start of your next turn. If your check fails, the target can’t be deceived by you in this way for 1 hour.

\n

Hacktivate (Technology). You attempt to determine the weaknesses in a droid you can see within 30 feet. Make an Intelligence (Technology) check contested by the target’s Intelligence (Technology) check. If your check succeeds, you have advantage on the next attack roll you make against the target before the end of your turn, and if you hit, you deal additional damage equal to your Intelligence modifier. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Instruct (Investigation). You attempt to find a weakness in your target. Make an Intelligence (Investigation) check contested by the target’s Charisma (Deception) check. If your check succeeds, if a friendly creature makes an attack roll against the target and they can see and hear you, you can use your reaction to grant them advantage on the roll. If you do so, and they hit, they deal additional damage equal to your bonus to Investigation checks. This damage is the same type as the attack’s damage. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Intuit (Insight). You attempt to determine the motivations of one humanoid you can see within 30 feet. Make a Wisdom (Insight) check contested by the target’s Charisma (Deception) check. If your check succeeds, the target can’t have advantage on ability checks, attack rolls, or saving throws against you until the end of your next turn. If your check fails, the target instead can’t have disadvantage on ability checks, attack rolls, or saving throws against you until the end of your next turn.

\n

Tumble (Acrobatics). You attempt to make a quick tumble, immediately moving 10 feet. If you begin or end this movement within a creature’s reach, make a Dexterity (Acrobatics) check contested by it’s Strength (Athletics) or Dexterity (Acrobatics) check (the target chooses the ability to use). If your check succeeds, this movement does not provoke opportunity attacks from it, and you have advantage on the first attack roll you make against it before the end of your turn. If your check fails, you immediately fall prone.

\n

Pocket Sand (Sleight of Hand). You attempt to blind one beast or humanoid you can see within 15 feet of you. Make a Dexterity (Sleight of Hand) check contested by the target’s Wisdom (Perception) check. If your check succeeds, the target is blinded until the end of your turn. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Precision Strike (Medicine). You attempt to strike a pressure point in one humanoid within your reach. Make a Wisdom (Medicine) check contested by the target’s Strength (Athletics) or Dexterity (Acrobatics) check (the target chooses the ability to use). If your check succeeds, they are incapacitated until the end of their next turn. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Snare (Survival). You attempt to cause a creature within 30 feet of you to stumble. Make a Wisdom (Survival) check contested by the target’s Wisdom (Perception) check. If your check succeeds, and the target moves towards you before the start of your next turn, it gains 1 slowed level, and you can use your reaction to cause it to fall prone. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Spin (Piloting). You attempt to confound a piloted construct you can see within 30 feet. Make an Intelligence (Piloting) check contested by the target’s Intelligence (Piloting) check. If your check succeeds, the target has disadvantage on attack rolls against you, and you have advantage on Dexterity saving throws against the target, until the start of your next turn. If your check fails, the target instead has advantage on attack rolls against you, and you have disadvantage on Dexterity saving throws against the target, until the start of your next turn.

\n

Study (Lore). You attempt to anticipate your target’s action. Make an Intelligence (Lore) check contested by the target’s Charisma (Deception) check. If your check succeeds, you have advantage on the first ability check, attack roll or saving throw you make against that creature before the end of your next turn. Alternatively, before the end of your next turn, you can use your reaction to grant disadvantage on the first ability check, attack roll, or saving throw the target makes against you. If your check fails, you instead have disadvantage on the first ability check, attack roll or saving throw you make against that creature before the end of your next turn.

\n

Wrestle (Athletics). You attempt to grab and pin a creature within 5 feet of you with at least one free hand. The target must be no more than one size larger than you. Make a Strength (Athletics) check contested by the target’s Strength (Athletics) or Dexterity (Acrobatics) check (the target chooses the ability to use). If your check succeeds, the target is both grappled and restrained by you. If the target stops being grappled, it also stops being restrained. If your check fails, you can’t use this feature on this target again for 1 hour.

\n

Technologist’s Exploit

\n

Choose one 1st-level tech power. You learn that power and can cast it at its lowest level without expending tech points and without the use of a wristpad. Once you cast it in this way, you must finish a long rest before you can cast it again. Your techcasting ability for this power is Intelligence.

\n

You can select this exploit multiple times. Each time you do so, you must choose a different power.

\n

Weaponmaster’s Exploit

\n

You gain proficiency in three blasters or vibroweapons that lack the heavy and strength properties.

\n

You can select this exploit multiple times. Each time you do so, you must choose different weapons.

"},"className":{"value":"Operative"},"atFlavorText":{"value":"

Operative Practices

\n

Operatives have many features in common, including their emphasis on perfecting their skills, their precise and deadly approach to combat, and their increasingly quick reflexes. But different operatives steer those talents in varying directions, embodied by the different operative practices. Your practice grants you features at 3rd, 9th, 13th, and 17th level.

\n

@Compendium[sw5e.archetypes.uKs4nEUZxYJ6iAd7]{Acquisitions Practice}

\n

@Compendium[sw5e.archetypes.xUUk8lINd1wpQrIh]{Beguiler Practice}

\n

@Compendium[sw5e.archetypes.KXH9dZsv2CAXAa6X]{Disabling Practice}

\n

@Compendium[sw5e.archetypes.HAbjFjbdRHO3mBss]{Gunslinger Practice}

\n

@Compendium[sw5e.archetypes.G1F7NBAvLma5Aot4]{Lethality Practice}

\n

@Compendium[sw5e.archetypes.owhXRBD1NnGWXdr6]{Performance Practice}

\n

@Compendium[sw5e.archetypes.A3MyNIRoyvE9fP64]{Ruffian Practice}

\n

@Compendium[sw5e.archetypes.lETcZuQWPZg3n2u0]{Saboteur Practice}

\n

@Compendium[sw5e.archetypes.TgUiU6MrAP7Xyj3H]{Sawbones Practice}

\n

@Compendium[sw5e.archetypes.RulD3rQZqDk5H0Pl]{Scrapper Practice}

\n

@Compendium[sw5e.archetypes.YByrgf4R9lfeVVBQ]{Sharpshooter Practice}

"}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Classes/Operative.webp","effects":[]} {"_id":"MN79cDvuWQ2YGjNA","name":"Scout","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

\n

Rough and grizzled looking, a human stalks alone through the shadows of trees, hunting the quarry he knows is planning a raid on a nearby settlement. Clutching a techblade in each hand, he becomes a whirlwind of steel, cutting down one enemy after another.

\n

After tumbling away from the shrapnel of a missile’s explosion, a bothan finds her feet and quick-fires two shots from her carbine at the oncoming tank. Shrugging off the wave of fear that threatens to permeate her entire being, she strafes around her foe, firing shot after shot to try to penetrate the tank’s thick armor.

\n

Glancing at his wristpad, a sullustan looks through the eyes of his tracker droid. Transmitting instructions, he sends his droid to distract the houk he’s been tracking while he readies his sniper rifle for the shot.

\n

Scouts are the first on the trail and the last to lose it, tracking their quarry for miles unimpeded. They are adaptable, wielding both tech powers and their weaponry to overcome their foes.

\n

Deadly Hunters

\n

Warriors in their own right, scouts specialize in tracking and hunting the monsters that threaten civilization—humanoid raiders, rampaging beasts and monstrosities, terrible Force-wielders, and renegade droids. They learn to track their quarry as a predator does, moving stealthily through any terrain and hiding themselves in brush and rubble. Scouts focus their combat training on techniques that are particularly useful against their specific favored foes.

\n

Scouts acquire the ability to cast tech powers through utilization of a wristpad. Their powers, like their combat abilities, emphasize speed, stealth, and the hunt. A scout’s talents and abilities are honed with deadly focus on the grim task of protecting the civilization.

\n

Independent Adventurers

\n

Though a scout might make a living as a bounty hunter, a guide, or a tracker, a scout’s true calling is to defend civilization from the ravages of monsters and humanoid hordes that press in. In some places, scouts gather in secretive orders, though many scouts are independent almost to a fault, knowing that, when a rancor or a band of pirates attacks, a scout might be the first—and possibly the last—line of defense. This fierce independence makes scouts well suited to adventuring, since they are accustomed to life far from the comforts of a dry bed and a hot bath. Faced with city-bred adventurers who grouse and whine about the hardships of the wild, scouts respond with some mixture of amusement, frustration, and compassion. But they quickly learn that other adventurers who can carry their own weight in a fight against civilization’s foes are worth any extra burden. Coddled city folk might not know how to feed themselves or find fresh water in the wild, but they make up for it in other ways.

\n

As you create your scout character, consider the nature of the training that gave you your particular capabilities. Did you train with a single mentor, tracking together until you mastered the scout's ways? Did you leave your apprenticeship, or was your mentor slain-perhaps by some kind of bestial monstrosity on which you've sworn revenge? Or perhaps you learned your skills as part of a band of mercenaries. What's the source of your particular hatred of a certain kind of enemy? Did a monster kill someone you loved or destroy your home village? Or did you see too much of the destruction these monsters cause and commit yourself to reining in their depredations? Is your adventuring career a continuation of your work, or a significant change? What made you join up with a band of adventurers? Do you find it challenging to teach new allies the ways of the wild, or do you welcome the relief from solitude that they offer?

\n

Quick Build

\n

You can make a scout quickly by following these suggestions. First, make Strength or Dexterity your highest ability modifier, depending on whether you want to focus on melee combat or on ranged weapons (or finesse weapons). Your next-highest score should be Intelligence. Second, choose the @Compendium[sw5e.backgrounds.wjFDb34eLfyjff1k]{Bounty Hunter} background.

","chat":"","unidentified":""},"source":"PHB","levels":1,"archetype":"","hitDice":"d10","hitDiceUsed":0,"skills":{"number":3,"choices":[],"value":[]},"attributes":{"spelldc":10},"damage":{"parts":[]},"archetypes":{"value":""},"powercasting":{"progression":"scout","ability":""},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"levelsTable":{"value":"

Test

"},"classFeatures":{"value":"
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
The Scout
LevelProficiency BonusFeaturesRanger's QuarryTech Powers KnownTech PointsMax Power Level
1st+2Ranger's Quarry, Pathfinderd4---
2nd+2Techcasting, Fighting Styled4421st
3rd+2Scout Routine, Scout Techniqued4531st
4th+2Ability Score Improvementd4641st
5th+3Extra Attackd6752nd
6th+3Expertised6862nd
7th+3Technique feature, Scout Routine (two routines)d6972nd
8th+3Ability Score Improvementd61082nd
9th+4Scout Routine (15-foot radius)d81293rd
10th+4Commandod813103rd
11th+4Technique featured814113rd
12th+4Ability Score Improvementd815123rd
13th+5-d1016134th
14th+5Expertise, Combat Techd1017144th
15th+5Technique feature, Scout Routine (three routines)d1018154th
16th+5Ability Score Improvementd1019164th
17th+6Scout Routine (30-foot radius)d1220175th
18th+6Supreme Awarenessd1221185th
19th+6Ability Score Improvementd1222195th
20th+6Foe Slayerd1223205th
\n
\n
\n

Class Features

\n

As a Scout, you gain the following class features.

\n

Hit Points

\n

Hit Dice: 1d10 per Scout level

\n

Hit Points at 1st Level: 10 + your Constitution modifier

\n

Hit Points at Higher Levels: 1d10 (or 6) + your Constitution modifier per scout level after 1st

\n

Proficiencies

\n

Armor: Light armor, medium armor

\n

Weapons: All blasters, all vibroweapons

\n

Tools: None

\n

Saving Throws: Strength, Dexterity

\n

Skills: Choose three from Animal Handling, Athletics, Insight, Investigation, Perception, Piloting, Stealth, Survival, and Technology

\n

Equipment

\n

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

\n\n

Variant: Starting Wealth

\n

In lieu of the equipment granted by your class and background, you can elect to purchase your starting gear. If you do so, you receive no equipment from your class and background, and instead roll for your starting wealth using the criteria below:

\n\n\n\n\n\n\n\n\n\n\n\n
ClassFunds
Scout8d4 x 100 cr
\n

Ranger's Quarry

\n

Beginning at 1st level, you learn how to effectively read and track your prey. Once on each of your turns, you can choose a creature you can see within 120 feet and mark it as your quarry (no action required). For the next hour, you gain the following benefits:

\n\n

You can only have one creature marked in this way at a time. Beginning at 5th level, you can use your reaction to mark a creature when it enters your line of sight, provided it is within range of your Ranger’s Quarry.

\n

The duration increases to 8 hours at 9th level and 24 hours at 17th level.

\n

Pathfinder

\n

Also at 1st level, you are skilled at navigating the untamed wilds. You ignore difficult terrain, and when traveling for an hour or more, you gain the following benefits:

\n\n

Techcasting

\n

Beginning at 2nd level, you have derived powers from schematics with the aid of your wristpad. See chapter 10 for the general rules of techcasting and chapter 12 for the tech powers list.

\n

Tech Powers Known

\n

You learn 4 tech powers of your choice, and you learn more at higher levels, as shown in the Tech Powers Known column of the scout class table. You may not learn a tech power of a level higher than your Max Power Level.

\n

Tech Points

\n

You have a number of tech points equal to your scout level, as shown in the Tech Points column of the scout class table, + your Intelligence modifier. You use these tech points to cast tech powers. You regain all expended tech points when you finish a short or long rest.

\n

Max Power Level

\n

Many tech powers can be overcharged, consuming more tech points to create a greater effect. You can overcharge these powers to a maximum level, which increases at higher levels, as shown in the Max Power Level column of the scout class table.

\n

You may only cast tech powers at 4th and 5th-level once. You regain the ability to do so after a long rest.

\n

Techcasting Ability

\n

Intelligence is your techcasting ability for your tech powers. You use your Intelligence whenever a power refers to your techcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a tech power you cast and when making an attack roll with one.

\n

Tech save DC = 8 + your proficiency bonus +your Intelligence modifier

\n

Tech attack modifier = your proficiency bonus +your Intelligence modifier

\n

Techcasting Focus

\n

You use a wristpad (found in chapter 5) as a techcasting focus for your tech powers.

\n

Fighting Style

\n

Also at 2nd level, you adopt a particular style of fighting as your specialty. Choose one of the Fighting Style options, detailed in Chapter 6. You can't take a Fighting Style option more than once, even if you later get to choose again.

\n

Scout Routine

\n

Beginning at 3rd level, you’ve developed one routine, as detailed at the end of the class description. You develop an additional routine at 7th and 15th level.

\n

Scout Technique

\n

Also at 3rd level, you choose to focus on a specific scout technique, which is detailed at the end of the class description. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.

\n

Ability Score Improvement

\n

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. Alternatively, you can choose a feat (see Chapter 6 for a list of feats).

\n

Extra Attack

\n

Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.

\n

Expertise

\n

At 6th level, choose two of your skill proficiencies, or one of skill proficiencies and one of your tool proficiencies, or two of your tool proficiencies. You gain expertise in those skills or tools.

\n

At 14th level, you can choose another two proficiencies (in skills or tools) to gain this benefit.

\n

Commando

\n

Starting at 10th level, you can take the Dash and Hide actions as a bonus action on each of your turns. Additionally, you can remain perfectly still for long periods of time to set up ambushes.

\n

When you attempt to hide on your turn, you can opt to not move on that turn. If you avoid moving, creatures that attempt to detect you take a -10 penalty to their Wisdom (Perception) checks until the start of your next turn. You lose this benefit if you move or fall prone, either voluntarily or because of some external effect. You are still automatically detected if any effect or action causes you to no longer be hidden.

\n

If you are still hidden on your next turn, you can continue to remain motionless and gain this benefit until you are detected.

\n

Additionally, you can no longer be tracked by unenhanced means, unless you choose to leave a trail.

\n

Combat Tech

\n

At 14th level, when you use your action to cast a tech power, you can make one weapon attack as a bonus action.

\n

Supreme Awareness

\n

At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.

\n

You are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.

\n

Foe Slayer

\n

At 20th level, you become an unparalleled hunter. Your Strength or Dexterity score increases by 2, and your Intelligence score increases by 2. Your maximum for those scores increases by 2.

\n

Additionally, once on each of your turns, you can add your Intelligence modifier to the attack roll or the damage roll of an attack you make. You can choose to use this feature before or after the roll but before any effects of the roll are applied.

\n

Scout Routines

\n

The routines are presented in alphabetical order. If multiple scouts grant the same routine, affected creatures can only benefit from it once. You must be conscious to grant the benefit of your routines.

\n

At 9th level, the range of your routines increases to 15 feet, and at 17th level, the range of these routines increases to 30 feet.

\n

Adaptability Routine

\n

At the start of each of your turns, you can choose an ability score with a saving throw in which you are not proficient. Until the start of your next turn, you add half your proficiency bonus, rounded down, to saving throws you make with the chosen ability. Alternatively, you can choose to extend this benefit to friendly creatures within 5 feet of you, except for you.

\n

Maven’s Routine

\n

At the start of each of your turns, you can choose to gain resistance to damage from tech powers until the start of your next turn. Alternatively, you can choose to extend this benefit to friendly creatures within 5 feet of you, except for you.

\n

Mesmer’s Routine

\n

At the start of each of your turns, you can choose to have advantage on saving throws against effects that would incapacitate you or put you to sleep until the start of your next turn. Alternatively, you can choose to extend this benefit to friendly creatures within 5 feet of you, except for you.

\n

Nomad’s Routine

\n

At the start of each of your turns, you can choose to gain advantage on Constitution saving throws to avoid exhaustion from unenhanced sources, as well as being naturally adapted to both hot and cold climates. Alternatively, you can choose to extend this benefit to friendly creatures within 5 feet of you, except for you.

\n

Responder’s Routine

\n

When you roll initiative, you can choose to add your proficiency bonus to the initiative roll and have advantage on attack rolls against creatures that have not yet acted. Alternatively, you can choose to allow each creature within 5 feet of you, including you, to add half your proficiency bonus to the initiative roll and have advantage on the first attack roll they make against a creature that has not yet acted.

\n

Sharpshooter’s Routine

\n

At the start of each of your turns, you can choose to gain a bonus to the first weapon attack roll you make before the start of your next turn equal to your Intelligence modifier. Alternatively, you can choose to allow each creature within 5 feet of you, including you, to add half your Intelligence modifier to the first weapon attack roll they make before the start of your next turn.

\n

Strider’s Routine

\n

At the start of each of your turns, you can choose to have each slowed level only reduce your speed by 5 feet, unless it would reduce your speed to 0 until the start of your next turn. Alternatively, you can choose to extend this benefit to friendly creatures within 5 feet of you, except for you.

\n

Warden’s Routine

\n

At the start of each of your turns, you can choose to gain a climbing and swimming speed equal to your walking speed. Alternatively, you can choose to extend this benefit to friendly creatures within 5 feet of you, except for you.

"},"className":{"value":"Scout"},"atFlavorText":{"value":"

Scout Techniques

\n

Scouts tend to share knowledge amongst themselves, focusing on specific techniques and honing them to perfection. Your technique grants you features at 3rd, 7th, 11th, and 15th level.

\n

@Compendium[sw5e.archetypes.sgoAH5OjfxsXf2fp]{Artillerist Technique}

\n

@Compendium[sw5e.archetypes.hJfD06NmantavchV]{Bulwark Technique}

\n

@Compendium[sw5e.archetypes.ZDNCB88TzeMFGY6i]{Deadeye Technique}

\n

@Compendium[sw5e.archetypes.Ls55Gc4qha7Muacz]{Hunter Technique}

\n

@Compendium[sw5e.archetypes.174qCi5FWBd5LDP0]{Illusionist Technique}

\n

@Compendium[sw5e.archetypes.BEMJgPn6JKghk2zh]{Inquisitor Technique}

\n

@Compendium[sw5e.archetypes.EOnRnPaACPP1vRTQ]{Mastermind Technique}

\n

@Compendium[sw5e.archetypes.hg8aolPhxXmUxHFn]{Mechanist Technique}

\n

@Compendium[sw5e.archetypes.xAObT0H9SNxYOQh2]{Predator Technique}

\n

@Compendium[sw5e.archetypes.EEBl6B5YPcztiGRm]{Slayer Technique}

\n

@Compendium[sw5e.archetypes.EipqN28Px01dBfmH]{Stalker Technique}

\n

@Compendium[sw5e.archetypes.np8PlkH43bFHGOjq]{Teleportation Technique}

\n

@Compendium[sw5e.archetypes.YwAHQuiEetUQgshY]{Triage Technique}

"}},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.armorProf.value","value":"lgt","mode":"+","targetSpecific":false,"id":1,"itemId":"MN79cDvuWQ2YGjNA","active":false,"_targets":[],"label":"Traits Armor Prof"},{"modSpecKey":"data.traits.armorProf.value","value":"med","mode":"+","targetSpecific":false,"id":2,"itemId":"MN79cDvuWQ2YGjNA","active":false,"_targets":[],"label":"Traits Armor Prof"},{"modSpecKey":"data.traits.weaponProf.custom","value":"all blasters","mode":"+","targetSpecific":false,"id":3,"itemId":"MN79cDvuWQ2YGjNA","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"all vibroweapons","mode":"+","targetSpecific":false,"id":4,"itemId":"MN79cDvuWQ2YGjNA","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.abilities.dex.proficient","value":"1","mode":"+","targetSpecific":false,"id":5,"itemId":"MN79cDvuWQ2YGjNA","active":false,"_targets":[],"label":"Abilities Dexterity Proficiency"},{"modSpecKey":"data.abilities.str.proficient","value":"1","mode":"+","targetSpecific":false,"id":6,"itemId":"MN79cDvuWQ2YGjNA","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Classes/Scout.webp","effects":[]} {"_id":"O414X0HamnCKpEF5","name":"Consular","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

\n

A twi’lek in black robes steps on a terrified rodian, who scampers away on the ground. Lightning sparks from his fingers, illuminating his red and black tattoos. The rodian’s pleas for mercy fall on deaf ears as the Sith channels his lightning into his failed apprentice, leaving nothing but a charred husk behind.

\n

Sitting cross-legged on a dense patch of grass, a miraluka mystic meditates on the Force. With every breath, the trees sway with a rhythmic breeze. Though she lacks simple vision, she can see the Force as it moves everything around her.

\n

A drably-robed human focuses inward, channeling the Force into the ground around him. Slowly, all the debris within arms reach rises into the air around him; with a flick of his wrist, he clears the air, sending his projectiles to pound on the approaching tank.

\n

Consulars are the supreme wielders of the Force, defined and united by the powers they cast. Drawing on the omnipresent Force that permeates the universe, consulars cast powers of rejuvenating healing and destructive lightning, draining life-force and manipulating minds; the most powerful with the Force can even experience brief glimpses of the future.

\n

Strong with the Force

\n

Refraining from drawing their lightsabers except as a measure of last resort, consulars spend a great deal of time studying the mysteries of the Force. Their knowledge allows them to channel the Force to greater heights, unlocking unrivaled power, and twisting those powers to greater effect.

\n

Sage or Sorcerer

\n

Consulars who follow the light side of the Force, using their powers to better their communities and people, are often called sages, while consulars who fall to the dark side and subjugate or cast aside all in their path are commonly called sorcerers. Alternatively, they may tend toward the middle, refraining from politics and war, spending their time in isolation and study.

\n

While creating your consular, consider your personal philosophy in regards to the Force and its most famous practitioners - the Jedi and the Sith. Are you a member of one of the two orders, or do you walk a different path? Perhaps you were ostracized from your primitive village out of superstition or jealousy. You may have been brutally trained from a young age in the dark side, fueling your innate thirst for power, or perhaps you were trained as a padawan in one of the Jedi temples. How do you treat strangers, and how do they treat you once they know your abilities? What was your family like, or what did you have instead of a family? Do you see the Force as light and dark, or an impartial river of gray?

\n

Quick Build

\n

You can make a consular quickly by following these suggestions. First, make Wisdom or Charisma your highest ability score, followed by Dexterity. Second, choose the @Compendium[sw5e.backgrounds.8WMQJLQ6JqRcTZUc]{Jedi} or @Compendium[sw5e.backgrounds.eOpE0XX7z0jx8lwI]{Sith} background.

","chat":"","unidentified":""},"levelsTable":{"value":"
LevelProficiency BonusFeaturesForce Powers KnownForce PointsMax Power Level
1st+2Forcecasting, Force Recovery841st
2nd+2Force-Empowered Casting, Force Shield981st
3rd+2Consular Tradition, Hidden Force11122nd
4th+2Ability Score Improvement12162nd
5th+3-14203rd
6th+3Tradition feature15243rd
7th+3-17284th
8th+3Ability Score Improvement18324th
9th+4-20365th
10th+4Tradition feature21405th
11th+4-23446th
12th+4Ability Score Improvement24486th
13th+5-26527th
14th+5Tradition feature27567th
15th+5-29608th
16th+5Ability Score Improvement30648th
17th+6-32689th
18th+6Tradition feature33729th
19th+6Ability Score Improvement34769th
20th+6One with the Force35809th
"},"source":"PHB","levels":1,"archetype":"","hitDice":"d6","hitDiceUsed":0,"skills":{"number":2,"choices":[],"value":[]},"attributes":{"spelldc":10},"damage":{"parts":[]},"archetypes":{"value":""},"powercasting":{"progression":"consular","ability":""},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classFeatures":{"value":"
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
The Consular
LevelProficiency BonusFeaturesForce Powers KnownForce PointsMax Power Level
1st+2Forcecasting, Force Recovery841st
2nd+2Force-Empowered Casting, Force Shield981st
3rd+2Consular Tradition, Hidden Force11122nd
4th+2Ability Score Improvement12162nd
5th+3-14203rd
6th+3Tradition feature15243rd
7th+3-17284th
8th+3Ability Score Improvement18324th
9th+4-20365th
10th+4Tradition feature21405th
11th+4-23446th
12th+4Ability Score Improvement24486th
13th+5-26527th
14th+5Tradition feature27567th
15th+5-29608th
16th+5Ability Score Improvement30648th
17th+6-32689th
18th+6Tradition feature33729th
19th+6Ability Score Improvement34769th
20th+6One with the Force35809th
\n
\n
\n

Class Features

\n

As a Consular, you gain the following class features.

\n

Hit Points

\n

Hit Dice: 1d6 per Consular level

\n

Hit Points at 1st Level: 6 + your Constitution modifier

\n

Hit Points at Higher Levels: 1d6 (or 4) + your Constitution modifier per consular level after 1st

\n

Proficiencies

\n

Armor: None

\n

Weapons: Simple lightweapons, simple vibroweapons

\n

Tools: None

\n

Saving Throws: Wisdom, Charisma

\n

Skills: Choose two from Deception, Insight, Intimidation, Investigation, Lore, Medicine, and Persuasion.

\n

Equipment

\n

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

\n\n

Variant: Starting Wealth

\n

In lieu of the equipment granted by your class and background, you can elect to purchase your starting gear. If you do so, you receive no equipment from your class and background, and instead roll for your starting wealth using the criteria below:

\n\n\n\n\n\n\n\n\n\n\n\n
ClassFunds
Consular5d4 x 100 cr
\n

 

\n

Forcecasting

\n

In your meditations on the force, you have learned powers, fragments of knowledge that imbue you with an abiding force ability. See chapter 10 for the general rules of forcecasting and chapter 11 for the force powers list.

\n

Force Powers Known

\n

You learn 8 force powers of your choice, and you learn more at higher levels, as shown in the Force Powers Known column of the consular class table. You may not learn a force power of a level higher than your Max Power Level, and you may learn a force power at the same time you learn its prerequisite.

\n

Force Points

\n

You have a number of force points equal to your consular level x 4, as shown in the Force Points column of the consular class table, + your Wisdom or Charisma modifier (your choice). You use these force points to cast force powers. You regain all expended force points when you finish a long rest.

\n

Max Power Level

\n

Many force powers can be overpowered, consuming more force points to create a greater effect. You can overpower these abilities to a maximum level, which increases at higher levels, as shown in the Max Power Level column of the consular class table.

\n

You may only cast force powers at 6th, 7th, 8th, and 9th-level once. You regain the ability to do so after a long rest.

\n

Forcecasting Ability

\n

Your forcecasting ability varies based on the alignment of the powers you cast. You use your Wisdom for light side powers, Charisma for dark side powers, and Wisdom or Charisma for universal powers (your choice). You use this ability score modifier whenever a power refers to your forcecasting ability. In addition, you use this ability score modifier when setting the saving throw DC for a force power you cast and when making an attack roll with one.

\n

Force save DC = 8 + your proficiency bonus + your forcecasting ability modifier

\n

Force attack modifier = your proficiency bonus + your forcecasting ability modifier

\n

Force Recovery

\n

Also at 1st level, you have learned to regain some of your energy by briefly meditating. When you finish a short rest, you can regain a number of force points equal to half your consular level (rounded down) + your Wisdom or Charisma modifier (your choice, minimum of one). Once you’ve used this feature, you must complete a long rest before you can use it again.

\n

Force-Empowered Casting

\n

At 2nd level, you gain the ability to twist your powers to suit your needs. When you cast a force power, you can expend additional force points to modify the power. You gain two of the following Empowerment options of your choice. You gain another one at 10th and 17th level.

\n

You can use only one Empowerment option on a power when you cast it, unless otherwise noted.

\n

Careful Power

\n

When you cast a power that forces other creatures to make a saving throw, you can protect some of those creatures from the power’s full force. To do so, you spend 1 additional force point and choose a number of those creatures up to your Wisdom or Charisma modifier (your choice, minimum of one). A chosen creature automatically succeeds on its saving throw against the power.

\n

Distant Power

\n

When you cast a power that has a range of 5 feet or greater, you can spend 1 additional force point to double the range of the power.

\n

Alternatively, when you cast a power that has a range of touch, you can spend 1 additional force point to make the range of the power 30 feet.

\n

Extended Power

\n

When you cast a power that has a duration of 1 minute or longer, you can spend 1 additional force point to double its duration, to a maximum duration of 24 hours.

\n

Heightened Power

\n

When you cast a power that forces a creature to make a saving throw to resist its effects, you can spend 3 additional force points to give one target of the power disadvantage on its first saving throw made against the power.

\n

Improved Power

\n

When you roll damage for a power, you can spend 1 additional force point to reroll a number of the damage dice up to your Wisdom or Charisma modifier (your choice, minimum of one). You must use the new rolls.

\n

You can use Improved Power even if you have already used a different Empowerment option during the casting of the power.

\n

Lingering Power

\n

When you cast a power that requires concentration to maintain you can choose to spend 3 additional force points. If you do, when you lose concentration on the power, the power will not end until the end of your next turn.

\n

Pinpoint Power

\n

When you cast a power that allows you to force creatures in an area to make a saving throw you can instead spend 1 force point and make a ranged force attack against a single target that would be in the range. On a hit the target suffers the effects as though they failed their saving throw.

\n

Quickened Power

\n

When you cast a power that has a casting time of 1 action, you can spend 2 additional force points to change the casting time to 1 bonus action for this casting.

\n

Refocused Power

\n

When you are forced to make a Constitution saving throw to maintain concentration on a power you can use your reaction and spend 2 force points to automatically succeed on the saving throw.

\n

You can use Refocused Power even if you have already used a different Force-Empowered Casting option during the casting of the power.

\n

Seeking Power

\n

If you miss with a force power that calls for an attack roll, you can spend 2 force points to reroll the attack. You must use the new roll.

\n

You can use Seeking Power even if you have already used a different Force-Empowered Casting option during the casting of the power.

\n

Twinned Power

\n

When you cast a power that targets only one creature and doesn’t have a range of self, you can spend a number of additional force points equal to the power’s level to target a second creature in range with the same power (1 force point if the power is at-will).

\n

Force Shield

\n

Also at 2nd level, you learn how to defend yourself purely through your strength with the Force. When you are hit by an attack, you can use your reaction to shroud yourself in Force energy. Until the start of your next turn, you have a bonus to AC equal to your Wisdom or Charisma modifier (your choice, a minimum of +1). This includes the triggering attack.

\n

You can use this feature twice. You gain an additional use at 5th, 11th, and 17th level in this class. You regain all expended uses when you finish a long rest.

\n

Force Affinity

\n

When you reach 3rd level, you've developed an affinity for one of the three aspects of the Force: the Ashla, the Bendu, or the Bogan. Choose one from the following:

\n

Ashla

\n

When you successfully cast a light side power, either your or the target's (your choice) hit point maximum and current hit points increase by an amount equal to the power’s level. This effect lasts for 1 minute. You can only have one instance of this effect active at a time.

\n

Bendu

\n

You can add both your Wisdom and Charisma modifier to your maximum number of force points, instead of just one.

\n

Bogan

\n

When you roll a 1 on a damage die for a dark side power, you can reroll the die and must use the new roll, even if the new roll is a 1.

\n

Consular Tradition

\n

When you reach 3rd level, you choose a consular tradition, which is detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th, 10th, 14th, and 18th level.

\n

Hidden Force

\n

Also at 3rd level, you learn how to conceal the casting of your force powers. When you cast a force power, you can choose to conceal the presence of that casting from others. A creature that sees you cast the force power can make an Investigation (Intelligence) check against your universal force save DC. On a success, they can determine that you used the Force in some way. If a creature has the force sight force power active, they automatically succeed on this check. A creature that can not see you automatically fails this check.

\n

You can use this feature a number of times equal to your Wisdom or Charisma modifier (your choice, a minimum of once). You regain all expended uses when you finish a long rest.

\n

Ability Score Improvement

\n

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. Alternatively, you can choose a feat (see Chapter 6 for a list of feats).

\n

One with the Force

\n

At 20th level, your attunement to the Force is absolute. Your Wisdom or Charisma score increases by 4, and your maximum for this score increases by 4. Additionally, you gain mastery over a single force power, and can cast it with little effort. Choose one 3rd-level force power that you know as your signature power. You can cast it once at 3rd level without expending force points. When you do so, you can’t do so again until you finish a short or long rest.

\n

If you want to cast it at a higher level, you must expend force points as normal.

"},"className":{"value":"Consular"},"atFlavorText":{"value":"

Consular Traditions

\n

Different consulars select different traditions, called Ways, to follow as they hone their powers. Your tradition grants you features at 3rd, 6th, 10th, 14th, and 18th level.

\n

@Compendium[sw5e.archetypes.kqAxtz1x4ydhppPG]{Way of Balance}

\n

@Compendium[sw5e.archetypes.Lz0gdQ5ou3k5E7Fo]{Way of Confluence}

\n

@Compendium[sw5e.archetypes.Y1JjyA1CuOSRCjAb]{Way of Endurance}

\n

@Compendium[sw5e.archetypes.e1tObWwWnq5gt9zE]{Way of Lightning}

\n

@Compendium[sw5e.archetypes.q208WP2Lacp7dG6v]{Way of Manipulation}

\n

@Compendium[sw5e.archetypes.6JrXY2jDqQiuuUGq]{Way of Negation}

\n

@Compendium[sw5e.archetypes.FLN1Vqb53UECBMVu]{Way of the Sage}

\n

@Compendium[sw5e.archetypes.12fYGPcLSITUYHMK]{Way of the Seer}

\n

@Compendium[sw5e.archetypes.Wdi8eckrcxpxQL3p]{Way of Suggestion}

\n

@Compendium[sw5e.archetypes.oYAXrbXaFVAoGDLM]{Way of Technology}

\n

@Compendium[sw5e.archetypes.r7BKY5yWig2vhW5i]{Way of Telekinetics}

\n

@Compendium[sw5e.archetypes.vlLsGoFKFHBKyVue]{Way of Tutelage}

"}},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.weaponProf.custom","value":"simple lightweapons","mode":"+","targetSpecific":false,"id":1,"itemId":"O414X0HamnCKpEF5","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"simple vibroweapons","mode":"+","targetSpecific":false,"id":2,"itemId":"O414X0HamnCKpEF5","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.abilities.cha.proficient","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"O414X0HamnCKpEF5","active":false,"_targets":[],"label":"Abilities Charisma Proficiency"},{"modSpecKey":"data.abilities.wis.proficient","value":"1","mode":"+","targetSpecific":false,"id":4,"itemId":"O414X0HamnCKpEF5","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Classes/Consular.webp","effects":[]} diff --git a/template.json b/template.json index 1681d52e..f339bab1 100644 --- a/template.json +++ b/template.json @@ -6,27 +6,33 @@ "abilities": { "str": { "value": 10, - "proficient": 0 + "proficient": 0, + "proficientOverride": 0 }, "dex": { "value": 10, - "proficient": 0 + "proficient": 0, + "proficientOverride": 0 }, "con": { "value": 10, - "proficient": 0 + "proficient": 0, + "proficientOverride": 0 }, "int": { "value": 10, - "proficient": 0 + "proficient": 0, + "proficientOverride": 0 }, "wis": { "value": 10, - "proficient": 0 + "proficient": 0, + "proficientOverride": 0 }, "cha": { "value": 10, - "proficient": 0 + "proficient": 0, + "proficientOverride": 0 } }, "attributes": { @@ -134,74 +140,92 @@ "skills": { "acr": { "value": 0, + "valueOverride": 0, "ability": "dex" }, "ani": { "value": 0, + "valueOverride": 0, "ability": "wis" }, "ath": { "value": 0, + "valueOverride": 0, "ability": "str" }, "dec": { "value": 0, + "valueOverride": 0, "ability": "cha" }, "ins": { "value": 0, + "valueOverride": 0, "ability": "wis" }, "itm": { "value": 0, + "valueOverride": 0, "ability": "cha" }, "inv": { "value": 0, + "valueOverride": 0, "ability": "int" }, "lor": { "value": 0, + "valueOverride": 0, "ability": "int" }, "med": { "value": 0, + "valueOverride": 0, "ability": "wis" }, "nat": { "value": 0, + "valueOverride": 0, "ability": "int" }, "pil": { "value": 0, + "valueOverride": 0, "ability": "int" }, "prc": { "value": 0, + "valueOverride": 0, "ability": "wis" }, "prf": { "value": 0, + "valueOverride": 0, "ability": "cha" }, "per": { "value": 0, + "valueOverride": 0, "ability": "cha" }, "slt": { "value": 0, + "valueOverride": 0, "ability": "dex" }, "ste": { "value": 0, + "valueOverride": 0, "ability": "dex" }, "sur": { "value": 0, + "valueOverride": 0, "ability": "wis" }, "tec": { "value": 0, + "valueOverride": 0, "ability": "int" } }, @@ -882,7 +906,21 @@ "class": { "templates": ["classDescription"], "className": "", + "classFeatures": {}, + "itemProficiencies": { + "armour": [], + "weapons": [], + "tools": [] + }, + "multiclassProficiencies": { + "armour": [], + "weapons": [], + "tools": [] + }, "levels": 1, + "multiclassPrerequisite": [ + [] + ], "archetype": "", "hitDice": "d6", "hitDiceUsed": 0,