diff --git a/lang/en.json b/lang/en.json index fdbc562e..7a9b16f6 100644 --- a/lang/en.json +++ b/lang/en.json @@ -64,6 +64,7 @@ "SW5E.AlignmentNL": "Neutral Light", "SW5E.AlignmentBN": "Balanced Neutral", "SW5E.Archetypes": "Archetypes", +"SW5E.Appearance": "Appearance", "SW5E.ArmorClass": "Armor Class", "SW5E.AC": "AC", "SW5E.ArmorProperties": "Armor Properties", @@ -104,6 +105,7 @@ "SW5E.Attuned": "Attuned", "SW5E.Background": "Background", "SW5E.Biography": "Biography", +"SW5E.Bonds": "Bonds", "SW5E.BonusAbilityCheck": "Global Ability Check Bonus", "SW5E.BonusAbilitySave": "Global Saving Throw Bonus", "SW5E.BonusAbilitySkill": "Global Skill Check Bonus", @@ -176,7 +178,8 @@ "SW5E.ConsumableMedpac": "Medpac", "SW5E.ConsumableTrinket": "Trinket", "SW5E.ConsumableTechnology": "Technology", -"SW5E.ConsumableAmmunition": "Ammunition", +"SW5E.ConsumableForce": "Force Points", +"SW5E.ConsumableTech": "Tech Points", "SW5E.ConsumableUseWarnStart": "This consumable has", "SW5E.ConsumableUseWarnEnd": "of the current unit", "SW5E.ConsumableUnitWarn": "units remaining", @@ -230,6 +233,7 @@ "SW5E.DistSelf": "Self", "SW5E.DistTouch": "Touch", "SW5E.Duration": "Duration", +"SW5E.Effects": "Effects", "SW5E.EquipmentBonus": "Magical Bonus", "SW5E.EquipmentClothing": "Clothing", "SW5E.EquipmentHeavy": "Heavy Armor", @@ -244,9 +248,13 @@ "SW5E.Exhaustion": "Exhaustion", "SW5E.Expertise": "Expertise", "SW5E.FeatureActionRecharge": "Action Recharge", +"SW5E.Flaws": "Flaws", +"SW5E.ItemTypeArchetype": "Archetype", "SW5E.ItemTypeClass": "Class", "SW5E.ItemTypeClassPl": "Class Levels", +"SW5E.ItemTypeClassFeat": "Class Feature", +"SW5E.ItemTypeClassFeats": "Class Features", "SW5E.ItemTypeConsumable": "Consumable", "SW5E.ItemTypeConsumablePl": "Consumables", "SW5E.ItemTypeContainer": "Container", @@ -319,6 +327,7 @@ "SW5E.HitDiceRoll": "Roll Hit Dice", "SW5E.HitDiceUsed": "Hit Dice Used", "SW5E.HitDiceWarn": "{name} has no available {formula} Hit Dice remaining!", +"SW5E.Ideals": "Ideals", "SW5E.Identified": "Identified", "SW5E.Initiative": "Initiative", "SW5E.Inspiration": "Inspiration", @@ -497,6 +506,7 @@ "SW5E.OtherFormula": "Other Formula", "SW5E.PactMagic": "Pact Magic", "SW5E.Passive": "Passive", +"SW5E.PersonalityTraits": "Personality Traits", "SW5E.PlaceTemplate": "Place Measured Template", "SW5E.Polymorph": "Polymorph", "SW5E.PolymorphAcceptSettings": "Custom Settings", @@ -519,8 +529,9 @@ "SW5E.PolymorphTokens": "Transform all linked tokens?", "SW5E.PolymorphWarn": "You are not allowed to polymorph this actor!", "SW5E.PolymorphWildShape": "Wild Shape", -"SW5E.Prepared": "Known", +"SW5E.Prepared": "Prepared", "SW5E.Concentrate": "Concentrate", +"SW5E.Concentrated": "Concentrate", "SW5E.Price": "Price", "SW5E.Proficiency": "Proficiency", "SW5E.Proficient": "Proficient", @@ -640,6 +651,8 @@ "SW5E.PowerPrepInnate": "Innate Powercasting", "SW5E.PowerPrepPrepared": "Prepared", "SW5E.PowerPrepAlways": "Always Prepared", +"SW5E.PowerPreparationMode": "Power Preparation Mode", +"SW5E.PowerPrepared": "Prepared", "SW5E.PowerConcentrationMode": "Power Concentration Mode", "SW5E.PowerConcentrating": "Concentrating", "SW5E.PowerProgArt": "Artificer", diff --git a/less/actors.less b/less/actors.less index 8a488578..feae7770 100644 --- a/less/actors.less +++ b/less/actors.less @@ -302,7 +302,8 @@ } } - input[type="text"] { + input[type="text"], + input[type="number"] { height: 20px; max-width: 20px; margin: 0; @@ -419,6 +420,7 @@ padding: 0 5px; overflow-y: auto; scrollbar-width: thin; + color: @colorTan; // Inventory Item .item { @@ -482,6 +484,7 @@ .inventory-header { margin: 2px 0; padding: 0; + align-items: center; background: rgba(0, 0, 0, 0.05); border: @borderGroove; font-weight: bold; @@ -499,6 +502,11 @@ } } + // Item names + .item-name { + color: @colorDark; + } + // Item Detail Sections .item-detail { flex: 0 0 70px; @@ -686,6 +694,44 @@ // Empty powerbook controls .powerbook-empty .item-controls { flex: 1; } + /* ----------------------------------------- */ + /* Active Effects */ + /* ----------------------------------------- */ + + .effects { + .effect-name{ + flex: 2; + align-items: center; + color: @colorDark; + h4 { margin: 0; } + } + + .effect-icon { + flex: 0 0 30px; + height: 30px; + margin-right: 5px; + border: none; + } + + .effect-source, + .effect-duration { + text-align: center; + border-left: 1px solid @colorFaint; + border-right: 1px solid @colorFaint; + } + + .effect-controls { + flex: 0 0 60px; + text-align: right; + } + + .effect { + align-items: center; + border-bottom: 1px solid @colorFaint; + &:last-child { border-bottom: none; } + } + } + /* ----------------------------------------- */ /* TinyMCE */ /* ----------------------------------------- */ diff --git a/less/apps.less b/less/apps.less index a951d011..f65e83ae 100644 --- a/less/apps.less +++ b/less/apps.less @@ -20,7 +20,9 @@ /* ----------------------------------------- */ // Item Sheet form fields - input[type="text"], select { + input[type="text"], + input[type="number"], + select { height: calc(100% - 2px); border: 1px solid @colorTan; background: rgba(0, 0, 0, 0.05); @@ -28,7 +30,8 @@ } // Hovered Fields - input[type="text"] { + input[type="text"], + input[type="number"] { &:hover, &:focus { border: 1px solid #111; @@ -157,7 +160,8 @@ /* ----------------------------------------- */ // Input Fields - input[type="text"] { + input[type="text"], + input[type="number"] { background: none; border: 1px solid transparent; &:hover, diff --git a/less/character.less b/less/character.less index 50fc928b..62a81d32 100644 --- a/less/character.less +++ b/less/character.less @@ -160,14 +160,14 @@ padding: 0 3px 3px; label { flex: 0 0 20px; - .openSans(); + .bungeeInline(); font-size: 16px; font-weight: normal; line-height: 20px; text-align: center; } textarea { - font-family: "Signika", serif; + .openSans(); border: 1px solid @colorFaint; resize: none; } diff --git a/less/items.less b/less/items.less index f85d929c..54fa791e 100644 --- a/less/items.less +++ b/less/items.less @@ -88,7 +88,9 @@ .details { // Item Sheet form fields - input[type="text"], select { + input[type="text"], + input[type="number"], + select { height: 24px; border: 1px solid @colorTan; background: rgba(0, 0, 0, 0.05); diff --git a/less/sw5e.less b/less/sw5e.less index 29ee4bba..345dab87 100644 --- a/less/sw5e.less +++ b/less/sw5e.less @@ -6,3 +6,33 @@ @import "character.less"; @import "npc.less"; @import "vehicle.less"; + +// TODO: Remove number styling after 0.7.x +input[type="number"] { + width: calc(100% - 2px); + min-width: 20px; + height: 26px; + background: rgba(0, 0, 0, 0.05); + padding: 1px 3px; + margin: 0; + color: #191813; + font-family: inherit; + font-size: inherit; + text-align: inherit; + line-height: inherit; + border: 1px solid #7a7971; + border-radius: 3px; + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + -moz-appearance: textfield; + &:focus { + box-shadow: 0 0 5px red; + } + } + input[type="number"]::-webkit-inner-spin-button, + input[type="number"]::-webkit-outer-spin-button { + -webkit-appearance: none; + } + \ No newline at end of file diff --git a/module/actor/entity.js b/module/actor/entity.js index b5573f4b..d0943067 100644 --- a/module/actor/entity.js +++ b/module/actor/entity.js @@ -100,7 +100,7 @@ export default class Actor5e extends Actor { } // Ability modifiers and saves - const dcBonus = Number.isNumeric(data.bonuses.power.dc) ? parseInt(data.bonuses.power.dc) : 0; + 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)) { @@ -109,7 +109,7 @@ export default class Actor5e extends Actor { abl.saveBonus = saveBonus; abl.checkBonus = checkBonus; abl.save = abl.mod + abl.prof + abl.saveBonus; - abl.dc = 8 + abl.mod + abl.prof + dcBonus; + abl.dc = 8 + abl.mod + data.attributes.prof + dcBonus; // If we merged saves when transforming, take the highest bonus here. if (originalSaves && abl.proficient) { @@ -126,7 +126,7 @@ export default class Actor5e extends Actor { if ( joat ) init.prof = Math.floor(0.5 * data.attributes.prof); else if ( athlete ) init.prof = Math.ceil(0.5 * data.attributes.prof); else init.prof = 0; - init.bonus = init.value + (flags.initiativeAlert ? 5 : 0); + init.bonus = Number(init.value + (flags.initiativeAlert ? 5 : 0)); init.total = init.mod + init.prof + init.bonus; // Prepare power-casting data diff --git a/module/actor/sheets/base.js b/module/actor/sheets/base.js index 49053de9..ca7181ad 100644 --- a/module/actor/sheets/base.js +++ b/module/actor/sheets/base.js @@ -19,7 +19,8 @@ export default class ActorSheet5e extends ActorSheet { this._filters = { inventory: new Set(), powerbook: new Set(), - features: new Set() + features: new Set(), + effects: new Set() }; } @@ -31,7 +32,8 @@ export default class ActorSheet5e extends ActorSheet { scrollY: [ ".inventory .inventory-list", ".features .inventory-list", - ".powerbook .inventory-list" + ".powerbook .inventory-list", + ".effects .inventory-list" ], tabs: [{navSelector: ".tabs", contentSelector: ".sheet-body", initial: "description"}] }); @@ -82,7 +84,7 @@ export default class ActorSheet5e extends ActorSheet { abl.label = CONFIG.SW5E.abilities[a]; } - // Update skill labels + // Skills if (data.actor.data.skills) { for ( let [s, skl] of Object.entries(data.actor.data.skills)) { skl.ability = CONFIG.SW5E.abilityAbbreviations[skl.ability]; @@ -98,12 +100,21 @@ export default class ActorSheet5e extends ActorSheet { // Prepare owned items this._prepareItems(data); + // Prepare active effects + // TODO Disabled until 0.7.5 release + // this._prepareEffects(data); + // Return data to the sheet return data } /* -------------------------------------------- */ + /** + * Prepare the data structure for traits data like languages, resistances & vulnerabilities, and proficiencies + * @param {object} traits The raw traits data object from the actor data + * @private + */ _prepareTraits(traits) { const map = { "dr": CONFIG.SW5E.damageResistanceTypes, @@ -137,6 +148,43 @@ export default class ActorSheet5e extends ActorSheet { /* -------------------------------------------- */ + /** + * Prepare the data structure for Active Effects which are currently applied to the Actor. + * @param {object} data The object of rendering data which is being prepared + * @private + */ + _prepareEffects(data) { + + // Define effect header categories + const categories = { + temporary: { + label: "Temporary Effects", + effects: [] + }, + passive: { + label: "Passive Effects", + effects: [] + }, + inactive: { + label: "Inactive Effects", + effects: [] + } + }; + + // Iterate over active effects, classifying them into categories + for ( let e of this.actor.effects ) { + e._getSourceName(); // Trigger a lookup for the source name + if ( e.data.disabled ) categories.inactive.effects.push(e); + else if ( e.isTemporary ) categories.temporary.effects.push(e); + else categories.inactive.push(e); + } + + // Add the prepared categories of effects to the rendering data + return data.effects = categories; + } + + /* -------------------------------------------- */ + /** * Insert a power into the powerbook object when rendering the character sheet * @param {Object} data The Actor data being prepared @@ -344,6 +392,10 @@ export default class ActorSheet5e extends ActorSheet { html.find('.item-delete').click(this._onItemDelete.bind(this)); html.find('.item-uses input').click(ev => ev.target.select()).change(this._onUsesChange.bind(this)); html.find('.slot-max-override').click(this._onPowerSlotOverride.bind(this)); + + // Active Effect management + html.find(".effect-control").click(this._onManageActiveEffect.bind(this)); + } // Owner Only Listeners @@ -680,6 +732,28 @@ export default class ActorSheet5e extends ActorSheet { /* -------------------------------------------- */ + /** + * Manage Active Effect instances through the Actor Sheet via effect control buttons. + * @param {MouseEvent} event The left-click event on the effect control + * @private + */ + _onManageActiveEffect(event) { + event.preventDefault(); + const a = event.currentTarget; + const li = a.closest(".effect"); + const effect = this.actor.effects.get(li.dataset.effectId); + switch ( a.dataset.action ) { + case "edit": + return new ActiveEffectConfig(effect).render(true); + case "delete": + return effect.delete(); + case "toggle": + return effect.update({disabled: !effect.data.disabled}); + } + } + + /* -------------------------------------------- */ + /** * Handle rolling an Ability check, either a test or a saving throw * @param {Event} event The originating click event diff --git a/module/actor/sheets/character.js b/module/actor/sheets/character.js index 5399633c..a624c338 100644 --- a/module/actor/sheets/character.js +++ b/module/actor/sheets/character.js @@ -70,7 +70,7 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { }; // Partition items by category - let [items, powers, feats, classes, species] = data.items.reduce((arr, item) => { + let [items, powers, feats, classes, species, archetypes, classfeatures] = data.items.reduce((arr, item) => { // Item details item.img = item.img || DEFAULT_TOKEN; @@ -89,10 +89,12 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { if ( item.type === "power" ) arr[1].push(item); else if ( item.type === "feat" ) arr[2].push(item); else if ( item.type === "class" ) arr[3].push(item); - else if ( item.type === "species" ) arr[4].push(item); + else if ( item.type === "species" ) arr[4].push(item); + else if ( item.type === "archetype" ) arr[5].push(item); + else if ( item.type === "classfeature" ) arr[6].push(item); else if ( Object.keys(inventory).includes(item.type ) ) arr[0].push(item); return arr; - }, [[], [], [], [], []]); + }, [[], [], [], [], [], [], []]); // Apply active item filters items = this._filterItems(items, this._filters.inventory); @@ -116,6 +118,8 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { // Organize Features const features = { classes: { label: "SW5E.ItemTypeClassPl", items: [], hasActions: false, dataset: {type: "class"}, isClass: true }, + classfeatures: { label: "SW5E.ItemTypeClassFeats", items: [], hasActions: false, dataset: {type: "classfeature"}, isClassfeature: true}, + archetype: { label: "SW5E.ItemTypeArchetype", items: [], hasActions: false, dataset: {type: "archetype"}, isArchetype: true }, species: { label: "SW5E.ItemTypeSpecies", items: [], hasActions: false, dataset: {type: "species"}, isSpecies: true}, active: { label: "SW5E.FeatureActive", items: [], hasActions: true, dataset: {type: "feat", "activation.type": "action"} }, passive: { label: "SW5E.FeaturePassive", items: [], hasActions: false, dataset: {type: "feat"} } @@ -126,6 +130,8 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { } classes.sort((a, b) => b.levels - a.levels); features.classes.items = classes; + features.classfeatures.items = classfeatures; + features.archetype.items = archetypes; features.species.items = species; // Assign and return @@ -274,9 +280,18 @@ export default class ActorSheet5eCharacter extends ActorSheet5e { } // If the actor already has the class, increment the level instead of creating a new item + // then add new features as long as level increases if ( classWasAlreadyPresent ) { const lvl = cls.data.data.levels; - return cls.update({"data.levels": Math.min(lvl + 1, 20 + lvl - this.actor.data.data.details.level)}) + const newLvl = Math.min(lvl + 1, 20 + lvl - this.actor.data.data.details.level); + if ( !(lvl === newLvl) ) { + cls.update({"data.levels": newLvl}); + itemData.data.levels = newLvl; + Actor5e.getClassFeatures(itemData).then(features => { + this.actor.createEmbeddedEntity("OwnedItem", features); + }); + } + return } } diff --git a/module/apps/actor-flags.js b/module/apps/actor-flags.js index 8c0372c5..9d7a9da1 100644 --- a/module/apps/actor-flags.js +++ b/module/apps/actor-flags.js @@ -120,7 +120,7 @@ export default class ActorSheetFlags extends BaseEntitySheet { // Diff the data against any applied overrides and apply // TODO: Remove this logical gate once 0.7.x is release channel if ( !isNewerVersion("0.7.1", game.data.version) ){ - updateData.data = diffObject(this.object.overrides, updateData.data); + updateData = diffObject(this.object.data, updateData); } await actor.update(updateData, {diff: false}); } diff --git a/module/classFeatures.js b/module/classFeatures.js index dd4eaae9..f5bdc02b 100644 --- a/module/classFeatures.js +++ b/module/classFeatures.js @@ -1,694 +1,35 @@ export const ClassFeatures = { -/* These are the class features for DND5E left in for reference to help build SW5E Class features -// Remove once SW5E Class features are added. - "barbarian": { - "subclasses": { - "path-of-the-ancestral-guardian": { - "label": "Path of the Ancestral Guardian", - "source": "XGE pg. 9" - }, - "path-of-the-battlerager": { - "label": "Path of the Battlerager", - "source": "SCAG pg. 121" - }, - "path-of-the-berserker": { - "label": "Path of the Berserker", - "source": "PHB pg. 49", - "features": { - "3": ["Compendium.sw5e.classfeatures.CkbbAckeCtyHXEnL"], - "6": ["Compendium.sw5e.classfeatures.0Jgf8fYY2ExwgQpN"], - "10": ["Compendium.sw5e.classfeatures.M6VSMzVtKPhh8B0i"], - "14": ["Compendium.sw5e.classfeatures.xzD9zlRP6dUxCtCl"] - } - }, - "path-of-the-juggernaut": { - "label": "Path of the Juggernaut", - "source": "TCS pg. 102" - }, - "path-of-the-storm-herald": { - "label": "Path of the Storm Herald", - "source": "XGE pg. 10" - }, - "path-of-the-totem-warrior": { - "label": "Path of the Totem Warrior", - "source": "PHB pg. 50; SCAG pg. 121" - }, - "path-of-the-zealot": { - "label": "Path of the Zealot", - "source": "XGE pg. 11" - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.VoR0SUrNX5EJVPIO", "Compendium.sw5e.classfeatures.SZbsNbaxFFGwBpNK"], - "2": ["Compendium.sw5e.classfeatures.SCVjqRdlZ9cvHVSR", "Compendium.sw5e.classfeatures.vt31lWAULygEl7yk"], - "3": ["Compendium.sw5e.classfeatures.TH1QAf6YNGSeBVjT"], - "5": ["Compendium.sw5e.classfeatures.XogoBnFWmCAHXppo", "Compendium.sw5e.classfeatures.Kl6zifJ5OmdHlOi2"], - "7": ["Compendium.sw5e.classfeatures.NlXslw4yAqmKZWtN"], - "9": ["Compendium.sw5e.classfeatures.L94gyvNpUhUe0rwh"], - "11": ["Compendium.sw5e.classfeatures.FqfmbPgxiyrWzhYk"], - "15": ["Compendium.sw5e.classfeatures.l8tUhZ5Pecm9wz7I"], - "18": ["Compendium.sw5e.classfeatures.Q1exex5ALteprrPo"], - "20": ["Compendium.sw5e.classfeatures.jVU4AgqfrFaqgXns"] - } - }, - "bard": { - "subclasses": { - "college-of-glamour": { - "label": "College of Glamour", - "source": "XGE pg. 14", - "features": {} - }, - "college-of-lore": { - "label": "College of Lore", - "source": "PHB pg. 54", - "features": { - "3": ["Compendium.sw5e.classfeatures.5zPmHPQUne7RDfaU"], - "6": ["Compendium.sw5e.classfeatures.myBu3zi5eYvQIcuy"], - "14": ["Compendium.sw5e.classfeatures.pquwueEMweRhiWaq"] - } - }, - "college-of-swords": { - "label": "College of Swords", - "source": "XGE pg. 15", - "features": {} - }, - "college-of-valor": { - "label": "College of Valor", - "source": "PHB pg. 55", - "features": {} - }, - "college-of-whispers": { - "label": "College of Whispers", - "source": "XGE pg. 16", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.hpLNiGq7y67d2EHA", "Compendium.sw5e.classfeatures.u4NLajXETJhJU31v"], - "2": ["Compendium.sw5e.classfeatures.ezWijmCnlnQ9ZRX2", "Compendium.sw5e.classfeatures.he8RpPXwSl2lVSIk"], - "3": ["Compendium.sw5e.classfeatures.ILhzFHiRrqgQ9dFJ", "Compendium.sw5e.classfeatures.aQLg7BWdRnm4Hr9S"], - "5": ["Compendium.sw5e.classfeatures.3VDZGs5Ug3hIE322"], - "6": ["Compendium.sw5e.classfeatures.SEJmsjkEhdAZ90ki"], - "10": ["Compendium.sw5e.classfeatures.aonJ2YjkqkYB9WYB"], - "20": ["Compendium.sw5e.classfeatures.GBYN5rH4nh1ocRlY"] - } - }, - "cleric": { - "subclasses": { - "ambition-domain": { - "label": "Ambition Domain", - "source": "PS:A pg. 27", - "features": {} - }, - "arcana-domain": { - "label": "Arcana Domain", - "source": "SCAG pg. 125", - "features": {} - }, - "blood-domain": { - "label": "Blood Domain", - "source": "TCS pg. 101", - "features": {} - }, - "death-domain": { - "label": "Death Domain", - "source": "DMG pg. 96", - "features": {} - }, - "forge-domain": { - "label": "Forge Domain", - "source": "XGE pg. 18", - "features": {} - }, - "grave-domain": { - "label": "Grave Domain", - "source": "XGE pg. 19", - "features": {} - }, - "knowledge-domain": { - "label": "Knowledge Domain", - "source": "PHB pg. 59", - "features": {} - }, - "life-domain": { - "label": "Life Domain", - "source": "PHB pg. 60", - "features": { - "1": ["Compendium.sw5e.classfeatures.68bYIOvx6rIqnlOW", "Compendium.sw5e.classfeatures.jF8AFfEMICIJnAkR", "Compendium.sw5e.powers.8dzaICjGy6mTUaUr", "Compendium.sw5e.powers.uUWb1wZgtMou0TVP"], - "2": ["Compendium.sw5e.classfeatures.hEymt45rICi4f9eL"], - "3": ["Compendium.sw5e.powers.F0GsG0SJzsIOacwV", "Compendium.sw5e.powers.JbxsYXxSOTZbf9I0"], - "5": ["Compendium.sw5e.powers.ZU9d6woBdUP8pIPt", "Compendium.sw5e.powers.LmRHHMtplpxr9fX6"], - "6": ["Compendium.sw5e.classfeatures.yv49QN6Bzqs0ecCs"], - "7": ["Compendium.sw5e.powers.VtCXMdyM6mAdIJZb", "Compendium.sw5e.powers.TgHsuhNasPbhu8MO"], - "8": ["Compendium.sw5e.classfeatures.T6u5z8ZTX6UftXqE"], - "9": ["Compendium.sw5e.powers.Pyzmm8R7rVsNAPsd", "Compendium.sw5e.powers.AGFMPAmuzwWO6Dfz"], - "17": ["Compendium.sw5e.classfeatures.4UOgxzr83vFuUash"] - } - }, - "light-domain": { - "label": "Light Domain", - "source": "PHB pg. 60", - "features": {} - }, - "nature-domain": { - "label": "Nature Domain", - "source": "PHB pg. 61", - "features": {} - }, - "order-domain": { - "label": "Order Domain", - "source": "GGR pg. 25", - "features": {} - }, - "solidarity-domain": { - "label": "Solidarity Domain", - "source": "PS:A pg. 24", - "features": {} - }, - "strength-domain": { - "label": "Strength Domain", - "source": "PS:A pg. 25", - "features": {} - }, - "tempest-domain": { - "label": "Tempest Domain", - "source": "PHB pg. 62", - "features": {} - }, - "trickery-domain": { - "label": "Trickery Domain", - "source": "PHB pg. 62", - "features": {} - }, - "war-domain": { - "label": "War Domain", - "source": "PHB pg. 63", - "features": {} - }, - "zeal-domain": { - "label": "Zeal Domain", - "source": "PS:A pg. 28", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.x637K2Icp2ZFM1TB", "Compendium.sw5e.classfeatures.v4gKwLhAq9vuqza7"], - "2": ["Compendium.sw5e.classfeatures.YpiLQEKGalROn7iJ"], - "5": ["Compendium.sw5e.classfeatures.NMy4piwXIpLjYbRE"], - "10": ["Compendium.sw5e.classfeatures.eVXqHn0ojWrEuYGU"] - }, - }, - "druid": { - "subclasses": { - "circle-of-dreams": { - "label": "Circle of Dreams", - "source": "XGE pg. 22", - "features": {} - }, - "circle-of-the-land": { - "label": "Circle of the Land", - "source": "PHB pg. 68", - "features": { - "2": ["Compendium.sw5e.classfeatures.lT8GsPOPgRzDC3QJ", "Compendium.sw5e.classfeatures.wKdRtFsvGfMKQHLY"], - "3": ["Compendium.sw5e.classfeatures.YiK59gWSlcQ6Mbdz"], - "6": ["Compendium.sw5e.classfeatures.3FB25qKxmkmxcxuC"], - "10": ["Compendium.sw5e.classfeatures.OTvrJSJSUgAwXrWX"], - "14": ["Compendium.sw5e.classfeatures.EuX1kJNIw1F68yus"] - } - }, - "circle-of-the-moon": { - "label": "Circle of the Moon", - "source": "PHB pg. 69", - "features": {} - }, - "circle-of-the-shepherd": { - "label": "Circle of the Shepherd", - "source": "XGE pg. 23", - "features": {} - }, - "circle-of-spores": { - "label": "Circle of Spores", - "source": "GGR pg. 26", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.LzJ5ayHt0OlSVGxi", "Compendium.sw5e.classfeatures.i6tPm3FNK13Ftc9v"], - "2": ["Compendium.sw5e.classfeatures.swK0r5TOIxredxWS", "Compendium.sw5e.classfeatures.u6Du2P9s81SWuGbi"], - "18": ["Compendium.sw5e.classfeatures.cVDEQo0ow1WJT7Wl", "Compendium.sw5e.classfeatures.xvgPu1O57DgXCM86"], - "20": ["Compendium.sw5e.classfeatures.ip4bvmGoz3qkoqes"] - }, - }, - "fighter": { - "subclasses": { - "arcane-archer": { - "label": "Arcane Archer", - "source": "XGE pg. 28", - "features": {} - }, - "banneret": { - "label": "Banneret", - "source": "SCAG pg. 128", - "features": {} - }, - "battle-master": { - "label": "Battle Master", - "source": "PHB pg. 73", - "features": {} - }, - "cavalier": { - "label": "Cavalier", - "source": "XGE pg. 30", - "features": {} - }, - "champion": { - "label": "Champion", - "source": "PHB pg. 72", - "features": { - "3": ["Compendium.sw5e.classfeatures.YgLQV1O849wE5TgM"], - "7": ["Compendium.sw5e.classfeatures.dHu1yzIjD38BvGGd"], - "11": ["Compendium.sw5e.classfeatures.kYJsED0rqqqUcgKz"], - "15": ["Compendium.sw5e.classfeatures.aVKH6TLn1AG9hPSA"], - "18": ["Compendium.sw5e.classfeatures.ipG5yx1tRNmeJfSH"] - } - }, - "echo-knight": { - "label": "Echo Knight", - "source": "EGW pg. 183", - "features": {} - }, - "eldritch-knight": { - "label": "Eldritch Knight", - "source": "PHB pg. 74", - "features": {} - }, - "samurai": { - "label": "Samurai", - "source": "XGE pg. 31", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.fbExzwNwEAl2kW9c", "Compendium.sw5e.classfeatures.nTjmWbyHweXuIqwc"], - "2": ["Compendium.sw5e.classfeatures.xF1VTcJ3AdkbTsdQ"], - "3": ["Compendium.sw5e.classfeatures.ax8M0X0q1GGWM26j"], - "5": ["Compendium.sw5e.classfeatures.q9g1MLXuLZyxjQMg"], - "9": ["Compendium.sw5e.classfeatures.653ZHbNcmm7ZGXbw"] - }, - }, - "monk": { - "subclasses": { - "way-of-the-cobalt-soul": { - "label": "Way of the Cobalt Soul", - "source": "TCS pg. 104", - "features": {} - }, - "way-of-the-drunken-master": { - "label": "Way of the Drunken Master", - "source": "XGE pg. 33", - "features": {} - }, - "way-of-the-elements": { - "label": "Way of the Four Elements", - "source": "PHB pg. 80", - "features": {} - }, - "way-of-the-kensei": { - "label": "Way of the Kensei", - "source": "XGE pg. 34", - "features": {} - }, - "way-of-the-long-death": { - "label": "Way of the Long Death", - "source": "SCAG pg. 130", - "features": {} - }, - "way-of-the-open-hand": { - "label": "Way of the Open Hand", - "source": "PHB pg. 79", - "features": { - "3": ["Compendium.sw5e.classfeatures.iQxLNydNLlCHNKbp"], - "6": ["Compendium.sw5e.classfeatures.Q7mOdk4b1lgjcptF"], - "11": ["Compendium.sw5e.classfeatures.rBDZLatuoolT2FUW"], - "17": ["Compendium.sw5e.classfeatures.h1gM8SH3BNRtFevE"] - } - }, - "way-of-the-shadow": { - "label": "Way of Shadow", - "source": "PHB pg. 80", - "features": {} - }, - "way-of-the-sun-soul": { - "label": "Way of the Sun Soul", - "source": "XGE pg. 35; SCAG pg. 131", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.UAvV7N7T4zJhxdfI", "Compendium.sw5e.classfeatures.l50hjTxO2r0iecKw"], - "2": ["Compendium.sw5e.classfeatures.10b6z2W1txNkrGP7", "Compendium.sw5e.classfeatures.7vSrGc0MP5Vzm9Ac"], - "3": ["Compendium.sw5e.classfeatures.rtpQdX77dYWbDIOH", "Compendium.sw5e.classfeatures.mzweVbnsJPQiVkAe"], - "4": ["Compendium.sw5e.classfeatures.KQz9bqxVkXjDl8gK"], - "5": ["Compendium.sw5e.classfeatures.XogoBnFWmCAHXppo", "Compendium.sw5e.classfeatures.pvRc6GAu1ok6zihC"], - "6": ["Compendium.sw5e.classfeatures.7flZKruSSu6dHg6D"], - "7": ["Compendium.sw5e.classfeatures.a4P4DNMmH8CqSNkC", "Compendium.sw5e.classfeatures.ZmC31XKS4YNENnoc"], - "10": ["Compendium.sw5e.classfeatures.bqWA7t9pDELbNRkp"], - "13": ["Compendium.sw5e.classfeatures.XjuGBeB8Y0C3A5D4"], - "14": ["Compendium.sw5e.classfeatures.7D2EkLdISwShEDlN"], - "15": ["Compendium.sw5e.classfeatures.gDH8PMrKvLHaNmEI"], - "18": ["Compendium.sw5e.classfeatures.3jwFt3hSqDswBlOH"], - "20": ["Compendium.sw5e.classfeatures.mQNPg89YIs7g5tG4"] - }, - }, - "paladin": { - "subclasses": { - "oath-of-the-ancients": { - "label": "Oath of the Ancients", - "source": "PHB pg. 86", - "features": {} - }, - "oath-of-conquest": { - "label": "Oath of Conquest", - "source": "SCAG pg. 128", - "features": {} - }, - "oath-of-the-crown": { - "label": "Oath of the Crown", - "source": "SCAG pg. 132", - "features": {} - }, - "oath-of-devotion": { - "label": "Oath of Devotion", - "source": "PHB pg. 85", - "features": { - "3": ["Compendium.sw5e.powers.xmDBqZhRVrtLP8h2", "Compendium.sw5e.powers.gvdA9nPuWLck4tBl"], - "5": ["Compendium.sw5e.powers.F0GsG0SJzsIOacwV", "Compendium.sw5e.powers.CylBa7jR8DSbo8Z3"], - "9": ["Compendium.sw5e.powers.ZU9d6woBdUP8pIPt", "Compendium.sw5e.powers.15Fa6q1nH27XfbR8"], - "13": ["Compendium.sw5e.powers.da0a1t2FqaTjRZGT", "Compendium.sw5e.powers.TgHsuhNasPbhu8MO"], - "17": ["Compendium.sw5e.powers.d54VDyFulD9xxY7J", "Compendium.sw5e.powers.5e1xTohkzqFqbYH4"] - } - }, - "oathbreaker": { - "label": "Oathbreaker", - "source": "DMG pg. 97", - "features": {} - }, - "oath-of-redemption": { - "label": "Oath of Redemption", - "source": "XGE pg. 38", - "features": {} - }, - "oath-of-vengeance": { - "label": "Oath of Vengeance", - "source": "PHB pg. 87", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.E8ozg8avUVOX9N7u", "Compendium.sw5e.classfeatures.OdrvL3afwLOPeuYZ"], - "2": ["Compendium.sw5e.classfeatures.ySMPQ6zNSlvkrl2f", "Compendium.sw5e.classfeatures.fbExzwNwEAl2kW9c", "Compendium.sw5e.classfeatures.ihoQHsmVZlyDbPhX"], - "3": ["Compendium.sw5e.classfeatures.dY9yrqkyEDuF0CG2", "Compendium.sw5e.classfeatures.olAqNsUTIef9x8xC"], - "5": ["Compendium.sw5e.classfeatures.XogoBnFWmCAHXppo"], - "6": ["Compendium.sw5e.classfeatures.carGDhkIdoduTC0I"], - "10": ["Compendium.sw5e.classfeatures.nahSkBO6LH4HkpaT"], - "11": ["Compendium.sw5e.classfeatures.FAk41RPCTcvCk6KI"], - "14": ["Compendium.sw5e.classfeatures.U7BIPVPsptBmwsnV"] - }, - }, - "ranger": { - "subclasses": { - "beast-master": { - "label": "Beast Master", - "source": "PHB pg. 93", - "features": {} - }, - "gloom-stalker": { - "label": "Gloom Stalker", - "source": "XGE pg. 41", - "features": {} - }, - "horizon-walker": { - "label": "Horizon Walker", - "source": "XGE pg. 42", - "features": {} - }, - "hunter": { - "label": "Hunter", - "source": "PHB pg. 93", - "features": { - "3": ["Compendium.sw5e.classfeatures.wrxIW5sDfmGr3u5s"], - "7": ["Compendium.sw5e.classfeatures.WgQrqjmeyMqDzVt3"], - "11": ["Compendium.sw5e.classfeatures.7zlTRRXT1vWSBGjX"], - "15": ["Compendium.sw5e.classfeatures.a0Sq88dgnREcIMfl"] - } - }, - "monster-slayer": { - "label": "Monster Slayer", - "source": "XGE pg. 43", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.4Vpj9vCOB37GtXk6", "Compendium.sw5e.classfeatures.8fbZt2Qh7ZttwIan"], - "2": ["Compendium.sw5e.classfeatures.fbExzwNwEAl2kW9c", "Compendium.sw5e.classfeatures.u6xV3Ki3TXRrD7zg"], - "3": ["Compendium.sw5e.classfeatures.1dJHU48yNqn3lcfx", "Compendium.sw5e.classfeatures.kaHcUGiwi8AtfZIm"], - "5": ["Compendium.sw5e.classfeatures.XogoBnFWmCAHXppo"], - "8": ["Compendium.sw5e.classfeatures.C5fzaOBc6HxyOWRn"], - "10": ["Compendium.sw5e.classfeatures.r0unvWK0lPsDthDx"], - "14": ["Compendium.sw5e.classfeatures.DhU2dWCNnX78TstR"], - "18": ["Compendium.sw5e.classfeatures.QBVmY56RMQuh6C8h"], - "20": ["Compendium.sw5e.classfeatures.3CaP1vFHVR8LgHjx"] - }, - }, - "rogue": { - "subclasses": { - "arcane-trickster": { - "label": "Arcane Trickster", - "source": "PHB pg. 97", - "features": {} - }, - "assassin": { - "label": "Assassin", - "source": "PHB pg. 97", - "features": {} - }, - "inquisitive": { - "label": "Inquisitive", - "source": "XGE pg. 45", - "features": {} - }, - "mastermind": { - "label": "Mastermind", - "source": "XGE pg. 46; SCAG pg. 135", - "features": {} - }, - "scout": { - "label": "Scout", - "source": "XGE pg. 47", - "features": {} - }, - "swashbuckler": { - "label": "Swashbuckler", - "source": "XGE pg. 47; SCAG pg. 135", - "features": {} - }, - "thief": { - "label": "Thief", - "source": "PHB pg. 97", - "features": { - "3": ["Compendium.sw5e.classfeatures.ga3dt2zrCn2MHK8R", "Compendium.sw5e.classfeatures.FGrbXs6Ku5qxFK5G"], - "9": ["Compendium.sw5e.classfeatures.Ei1Oh4UAA2E30jcD"], - "13": ["Compendium.sw5e.classfeatures.NqWyHE7Rpw9lyKWu"], - "17": ["Compendium.sw5e.classfeatures.LhRm1EeUMvp2EWhV"] - } - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.3sYPftQKnbbVnHrh", "Compendium.sw5e.classfeatures.DPN2Gfk8yi1Z5wp7", "Compendium.sw5e.classfeatures.ohwfuwnvuoBWlSQr"], - "2": ["Compendium.sw5e.classfeatures.01pcLg6PRu5zGrsb"], - "3": ["Compendium.sw5e.classfeatures.80USV8ZFPIahpLd0"], - "5": ["Compendium.sw5e.classfeatures.Mm64SKAHJWYecgXS"], - "7": ["Compendium.sw5e.classfeatures.a4P4DNMmH8CqSNkC"], - "11": ["Compendium.sw5e.classfeatures.YN9xm6MCvse4Y60u"], - "14": ["Compendium.sw5e.classfeatures.fjsBk7zxoAbLf8ZI"], - "15": ["Compendium.sw5e.classfeatures.V4pwFxlwHtNeB4w9"], - "18": ["Compendium.sw5e.classfeatures.L7nJSRosos8sHJH9"], - "20": ["Compendium.sw5e.classfeatures.rQhWDaMHMn7iU4f2"] - }, - }, - "sorcerer": { - "subclasses": { - "draconic-bloodline": { - "label": "Draconic Bloodline", - "source": "PHB pg. 102", - "features": { - "1": ["Compendium.sw5e.classfeatures.EZsonMThTNLZq35j", "Compendium.sw5e.classfeatures.MW1ExvBLm8Hg82aA"], - "6": ["Compendium.sw5e.classfeatures.x6eEZ9GUsuOcEa3G"], - "14": ["Compendium.sw5e.classfeatures.3647zjKSE9zFwOXc"], - "18": ["Compendium.sw5e.classfeatures.Gsha4bl0apxqspFy"] - } - }, - "divine-soul": { - "label": "Divine Soul", - "source": "XGE pg. 50", - "features": {} - }, - "pyromancer": { - "label": "Pyromancer", - "source": "PS:K pg. 9", - "features": {} - }, - "runechild": { - "label": "Runechild", - "source": "TCS pg. 103", - "features": {} - }, - "shadow-magic": { - "label": "Shadow Magic", - "source": "XGE pg. 50", - "features": {} - }, - "storm-sorcery": { - "label": "Storm Sorcery", - "source": "XGE pg. 51; SCAG pg. 137", - "features": {} - }, - "wild-magic": { - "label": "Wild Magic", - "source": "PHB pg. 103", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.cmRCL9T9UgRYOj1c", "Compendium.sw5e.classfeatures.oygRF3ZjTv2T7z0Y"], - "2": ["Compendium.sw5e.classfeatures.LBKChJY5n02Afhnq"], - "3": ["Compendium.sw5e.classfeatures.9Uh7uTDNZ04oTJsL"], - "20": ["Compendium.sw5e.classfeatures.F2lEKSmOY0NUruzY"] - }, - }, - "warlock": { - "subclasses": { - "the-archfey": { - "label": "The Archfey", - "source": "PHB pg. 108", - "features": {} - }, - "the-celestial": { - "label": "The Celestial", - "source": "XGE pg. 54", - "features": {} - }, - "the-fiend": { - "label": "The Fiend", - "source": "PHB pg. 109", - "features": { - "1": ["Compendium.sw5e.classfeatures.Jv0zu4BtUi8bFCqJ"], - "6": ["Compendium.sw5e.classfeatures.OQSb0bO1yDI4aiMx"], - "10": ["Compendium.sw5e.classfeatures.9UZ2WjUF2k58CQug"], - "14": ["Compendium.sw5e.classfeatures.aCUmlnHlUPHS0rdu"] - } - }, - "the-hexblade": { - "label": "The Hexblade", - "source": "XGE pg. 55", - "features": {} - }, - "the-oldone": { - "label": "The Great Old One", - "source": "PHB pg. 109", - "features": {} - }, - "the-undying": { - "label": "The Undying", - "source": "SCAG pg. 139", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.jTXHaK0vvT5DV3uO", "Compendium.sw5e.classfeatures.x6IJZwr6f0SGral7"], - "2": ["Compendium.sw5e.classfeatures.8MlxM2nEfE3Q0EVk"], - "3": ["Compendium.sw5e.classfeatures.QwgfIpCN8VWfoUtX"], - "11": ["Compendium.sw5e.classfeatures.zB77V8BcCJvWVxck"], - "13": ["Compendium.sw5e.classfeatures.HBn6FXLz7Eiudz0V"], - "15": ["Compendium.sw5e.classfeatures.knDZR4l4QfLTKinm"], - "17": ["Compendium.sw5e.classfeatures.vMxJQEKeK6WwZFaF"], - "20": ["Compendium.sw5e.classfeatures.0C04rwyvoknvFYiy"] - }, - }, - "wizard": { - "subclasses": { - "school-of-abjuration": { - "label": "School of Abjuration", - "source": "PHB pg. 115", - "features": {} - }, - "school-of-bladesinging": { - "label": "School of Bladesinging", - "source": "SCAG pg. 141", - "features": {} - }, - "school-of-chronurgy-magic": { - "label": "School of Chronurgy Magic", - "source": "EGW pg. 185", - "features": {} - }, - "school-of-conjuration": { - "label": "School of Conjuration", - "source": "PHB pg. 116", - "features": {} - }, - "school-of-divination": { - "label": "School of Divination", - "source": "PHB pg. 116", - "features": {} - }, - "school-of-enchantment": { - "label": "School of Enchantment", - "source": "PHB pg. 117", - "features": {} - }, - "school-of-evocation": { - "label": "School of Evocation", - "source": "PHB pg. 117", - "features": { - "2": ["Compendium.sw5e.classfeatures.7uzJ2JkmsdRGLra3", "Compendium.sw5e.classfeatures.6VBXkjjBgjSpNElh"], - "6": ["Compendium.sw5e.classfeatures.evEWCpE5MYgr5RRW"], - "10": ["Compendium.sw5e.classfeatures.7O85kj6uDEG5NzUE"], - "14": ["Compendium.sw5e.classfeatures.VUtSLeCzFubGXmGx"] - } - }, - "school-of-graviturgy-magic": { - "label": "School of Graviturgy Magic", - "source": "EGW pg. 185", - "features": {} - }, - "school-of-illusion": { - "label": "School of Illusion", - "source": "PHB pg. 118", - "features": {} - }, - "school-of-necromancy": { - "label": "School of Necromancy", - "source": "PHB pg. 118", - "features": {} - }, - "school-of-transmutation": { - "label": "School of Transmutation", - "source": "PHB pg. 119", - "features": {} - }, - "school-of-war-magic": { - "label": "School of War Magic", - "source": "XGE pg. 59", - "features": {} - } - }, - "features": { - "1": ["Compendium.sw5e.classfeatures.gbNo5eVPaqr8IVKL", "Compendium.sw5e.classfeatures.e0uTcFPpgxjIyUW9"], - "2": ["Compendium.sw5e.classfeatures.AEWr9EMxy5gj4ZFT"], - "18": ["Compendium.sw5e.classfeatures.JfFfHTeIszx1hNRx"], - "20": ["Compendium.sw5e.classfeatures.nUrZDi6QN1YjwAr6", "Compendium.sw5e.classfeatures.31bKbWe9ZGVLEns6"] - }, - } -*/ -}; + "berserker": { + "archetypes": { + "addicted-approach": { + "label": "Addicted Approach", + "source": "PHB", + "features": { + "3": ["Compendium.sw5e.archetypes.PCwepUZqHYlxr4T3", "Compendium.sw5e.classfeatures.efOA0nrvUqKJOOeP", "Compendium.sw5e.classfeatures.nT6AfpQXSZ4IeChO"], + "6": ["Compendium.sw5e.classfeatures.GbJDWzoTKWL7sEpR"], + "10": ["Compendium.sw5e.classfeatures.3jqPPd5qJBBnonPw"], + "14": ["Compendium.sw5e.classfeatures.xzRNHB2M2HdOZzr7"] + } + } + }, + "features": { + "1": ["Compendium.sw5e.classfeatures.IDt6duVrBzL8euRc", "Compendium.sw5e.classfeatures.rPOLy96fW96N2UPg"], + "2": ["Compendium.sw5e.classfeatures.DlYiCiG39R0goG9u", "Compendium.sw5e.classfeatures.FbSpxpXm1xONn0na", "Compendium.sw5e.classfeatures.KDiQ8O2evV2Z1YTo", "Compendium.sw5e.classfeatures.Q1JyHnVs9iIEBs91", "Compendium.sw5e.classfeatures.ROdICoWR82v6A2Rf", "Compendium.sw5e.classfeatures.cdCx5Hvq2rYRMzRj", "Compendium.sw5e.classfeatures.dTdbL8dypa6BAdnP", "Compendium.sw5e.classfeatures.h1uDhP1tEOuvjRw6", "Compendium.sw5e.classfeatures.hMiA075EKBBOL2cv", "Compendium.sw5e.classfeatures.sgJdISZMtwv08WPJ", "Compendium.sw5e.classfeatures.v4CZJ8LBMl5PYZCO"], + "3": ["Compendium.sw5e.classfeatures.kzwSN9SabKgWZZvU"], + "4": ["Compendium.sw5e.classfeatures.9oyy0MMqEws2qoil"], + "5": ["Compendium.sw5e.classfeatures.dPWmHiWmpnhHTsgd"], + "7": ["Compendium.sw5e.classfeatures.Cid5ujSdnooH0vMm", "Compendium.sw5e.classfeatures.WTBhKJgkArQI3Tgv", "Compendium.sw5e.classfeatures.oiT3TJxzRWPKAX9E", "Compendium.sw5e.classfeatures.pMEmIt3NWThbee8k", "Compendium.sw5e.classfeatures.qWV5YogZcpZ3Y3xj"], + "9": ["Compendium.sw5e.classfeatures.bi8G8H5Ur9B3BAyM"], + "11": ["Compendium.sw5e.classfeatures.eWbTifdXJvvXT4CV"], + "13": ["Compendium.sw5e.classfeatures.Hg8zYh1iXL0DGUVq", "Compendium.sw5e.classfeatures.QRnYiJmRk18ekE9v", "Compendium.sw5e.classfeatures.sfEr8ZBFVddlfLeF", "Compendium.sw5e.classfeatures.yGC9VzT840qQWxca"], + "15": ["Compendium.sw5e.classfeatures.YHPUv9lN3nCapAgP"], + "18": ["Compendium.sw5e.classfeatures.fFKNqUAWh0ZOhvRc"], + "20": ["Compendium.sw5e.classfeatures.IWTDawTUf79eWbEV"] + } + }, + "consular": { + "features": { + "20": ["Compendium.sw5e.classfeatures.gSGeitc98ItAwhfF"] + } + } +}; \ No newline at end of file diff --git a/module/config.js b/module/config.js index 7e5bc6a0..042a4add 100644 --- a/module/config.js +++ b/module/config.js @@ -252,7 +252,9 @@ SW5E.consumableTypes = { "medpac": "SW5E.ConsumableMedpac", "technology": "SW5E.ConsumableTechnology", "ammunition": "SW5E.ConsumableAmmunition", - "trinket": "SW5E.ConsumableTrinket" + "trinket": "SW5E.ConsumableTrinket", + "force": "SW5E.ConsumableForce", + "tech": "SW5E.ConsumableTech" }; /* -------------------------------------------- */ @@ -488,7 +490,11 @@ SW5E.powerScalingModes = { /* -------------------------------------------- */ -// Weapon Types + +/** + * Define the set of types which a weapon item can take + * @type {Object} + */ SW5E.weaponTypes = { "simpleVW": "SW5E.WeaponSimpleVW", "simpleB": "SW5E.WeaponSimpleB", @@ -500,7 +506,6 @@ SW5E.weaponTypes = { "improv": "SW5E.WeaponImprov", "ammo": "SW5E.WeaponAmmo", "siege": "SW5E.WeaponSiege" - }; diff --git a/module/item/entity.js b/module/item/entity.js index 8c607cf7..c287b968 100644 --- a/module/item/entity.js +++ b/module/item/entity.js @@ -182,8 +182,16 @@ export default class Item5e extends Item { // Species Items else if ( itemData.type === "species" ) { - //labels.species = C.species[data.species]; - } + // labels.species = C.species[data.species]; + } + // Archetype Items + else if ( itemData.type === "archetype" ) { + // labels.archetype = C.archetype[data.archetype]; + } + // Class Feature Items + else if ( itemData.type === "classfeature" ) { + + } // Equipment Items else if ( itemData.type === "equipment" ) { diff --git a/module/item/sheet.js b/module/item/sheet.js index 8462f48c..15685f21 100644 --- a/module/item/sheet.js +++ b/module/item/sheet.js @@ -180,7 +180,14 @@ export default class ItemSheet5e extends ItemSheet { else if ( item.type === "species" ) { } - + else if ( item.type === "archetype" ) { + + } + + else if ( item.type === "classfeature" ) { + + } + // Action type if ( item.data.actionType ) { props.push(CONFIG.SW5E.itemActionTypes[item.data.actionType]); diff --git a/module/migration.js b/module/migration.js index 867b274e..6009ac4b 100644 --- a/module/migration.js +++ b/module/migration.js @@ -250,3 +250,33 @@ const _migrateRemoveDeprecated = function(ent, updateData) { updateData[`data.${parts.join(".")}`] = null; } }; + + +/* -------------------------------------------- */ + + +/** + * A general tool to purge flags from all entities in a Compendium pack. + * @param {Compendium} pack The compendium pack to clean + * @private + */ +export async function purgeFlags(pack) { + const cleanFlags = (flags) => { + const flags5e = flags.sw5e || null; + return flags5e ? {sw5e: flags5e} : {}; + }; + await pack.configure({locked: false}); + const content = await pack.getContent(); + for ( let entity of content ) { + const update = {_id: entity.id, flags: cleanFlags(entity.data.flags)}; + if ( pack.entity === "Actor" ) { + update.items = entity.data.items.map(i => { + i.flags = cleanFlags(i.flags); + return i; + }) + } + await pack.updateEntity(update, {recursive: false}); + console.log(`Purged flags from ${entity.name}`); + } + await pack.configure({locked: true}); +} diff --git a/module/templates.js b/module/templates.js index 35bdcd1e..e14f1cd8 100644 --- a/module/templates.js +++ b/module/templates.js @@ -13,6 +13,7 @@ export const preloadHandlebarsTemplates = async function() { "systems/sw5e/templates/actors/parts/actor-inventory.html", "systems/sw5e/templates/actors/parts/actor-features.html", "systems/sw5e/templates/actors/parts/actor-powerbook.html", + "systems/sw5e/templates/actors/parts/actor-effects.html", // Item Sheet Partials "systems/sw5e/templates/items/parts/item-action.html", diff --git a/packs/Icons/Archetypes/Acquisitions Practice.webp b/packs/Icons/Archetypes/Acquisitions Practice.webp new file mode 100644 index 00000000..2d894b00 Binary files /dev/null and b/packs/Icons/Archetypes/Acquisitions Practice.webp differ diff --git a/packs/Icons/Archetypes/Addicted Approach.webp b/packs/Icons/Archetypes/Addicted Approach.webp new file mode 100644 index 00000000..2b573edf Binary files /dev/null and b/packs/Icons/Archetypes/Addicted Approach.webp differ diff --git a/packs/Icons/Archetypes/Adept Specialist.webp b/packs/Icons/Archetypes/Adept Specialist.webp new file mode 100644 index 00000000..1a6d6753 Binary files /dev/null and b/packs/Icons/Archetypes/Adept Specialist.webp differ diff --git a/packs/Icons/Archetypes/Aing-Tii Order.webp b/packs/Icons/Archetypes/Aing-Tii Order.webp new file mode 100644 index 00000000..a54814eb Binary files /dev/null and b/packs/Icons/Archetypes/Aing-Tii Order.webp differ diff --git a/packs/Icons/Archetypes/Armormech Engineering.webp b/packs/Icons/Archetypes/Armormech Engineering.webp new file mode 100644 index 00000000..be35759a Binary files /dev/null and b/packs/Icons/Archetypes/Armormech Engineering.webp differ diff --git a/packs/Icons/Archetypes/Armstech Engineering.webp b/packs/Icons/Archetypes/Armstech Engineering.webp new file mode 100644 index 00000000..b6addb25 Binary files /dev/null and b/packs/Icons/Archetypes/Armstech Engineering.webp differ diff --git a/packs/Icons/Archetypes/Artificer Engineering.webp b/packs/Icons/Archetypes/Artificer Engineering.webp new file mode 100644 index 00000000..b7c562db Binary files /dev/null and b/packs/Icons/Archetypes/Artificer Engineering.webp differ diff --git a/packs/Icons/Archetypes/Artillerist Technique.webp b/packs/Icons/Archetypes/Artillerist Technique.webp new file mode 100644 index 00000000..a6c7c630 Binary files /dev/null and b/packs/Icons/Archetypes/Artillerist Technique.webp differ diff --git a/packs/Icons/Archetypes/Assault Specialist.webp b/packs/Icons/Archetypes/Assault Specialist.webp new file mode 100644 index 00000000..b1ee7342 Binary files /dev/null and b/packs/Icons/Archetypes/Assault Specialist.webp differ diff --git a/packs/Icons/Archetypes/Astrotech Engineering.webp b/packs/Icons/Archetypes/Astrotech Engineering.webp new file mode 100644 index 00000000..08677768 Binary files /dev/null and b/packs/Icons/Archetypes/Astrotech Engineering.webp differ diff --git a/packs/Icons/Archetypes/Ataru Form.webp b/packs/Icons/Archetypes/Ataru Form.webp new file mode 100644 index 00000000..7a895ddb Binary files /dev/null and b/packs/Icons/Archetypes/Ataru Form.webp differ diff --git a/packs/Icons/Archetypes/Audiotech Engineering.webp b/packs/Icons/Archetypes/Audiotech Engineering.webp new file mode 100644 index 00000000..661b8a38 Binary files /dev/null and b/packs/Icons/Archetypes/Audiotech Engineering.webp differ diff --git a/packs/Icons/Archetypes/Ballistic Approach.webp b/packs/Icons/Archetypes/Ballistic Approach.webp new file mode 100644 index 00000000..543d0963 Binary files /dev/null and b/packs/Icons/Archetypes/Ballistic Approach.webp differ diff --git a/packs/Icons/Archetypes/Beguiler Practice.webp b/packs/Icons/Archetypes/Beguiler Practice.webp new file mode 100644 index 00000000..4e2aa3e7 Binary files /dev/null and b/packs/Icons/Archetypes/Beguiler Practice.webp differ diff --git a/packs/Icons/Archetypes/Biochem Engineering.webp b/packs/Icons/Archetypes/Biochem Engineering.webp new file mode 100644 index 00000000..ba09e232 Binary files /dev/null and b/packs/Icons/Archetypes/Biochem Engineering.webp differ diff --git a/packs/Icons/Archetypes/Blademaster Specialist.webp b/packs/Icons/Archetypes/Blademaster Specialist.webp new file mode 100644 index 00000000..0d2b63f8 Binary files /dev/null and b/packs/Icons/Archetypes/Blademaster Specialist.webp differ diff --git a/packs/Icons/Archetypes/Bloodstorm Approach.webp b/packs/Icons/Archetypes/Bloodstorm Approach.webp new file mode 100644 index 00000000..055ab648 Binary files /dev/null and b/packs/Icons/Archetypes/Bloodstorm Approach.webp differ diff --git a/packs/Icons/Archetypes/Brawling Approach.webp b/packs/Icons/Archetypes/Brawling Approach.webp new file mode 100644 index 00000000..b804cdfe Binary files /dev/null and b/packs/Icons/Archetypes/Brawling Approach.webp differ diff --git a/packs/Icons/Archetypes/Bulwark Technique.webp b/packs/Icons/Archetypes/Bulwark Technique.webp new file mode 100644 index 00000000..5a0310a9 Binary files /dev/null and b/packs/Icons/Archetypes/Bulwark Technique.webp differ diff --git a/packs/Icons/Archetypes/Chef Pursuit.webp b/packs/Icons/Archetypes/Chef Pursuit.webp new file mode 100644 index 00000000..414636e8 Binary files /dev/null and b/packs/Icons/Archetypes/Chef Pursuit.webp differ diff --git a/packs/Icons/Archetypes/Crimson Order.webp b/packs/Icons/Archetypes/Crimson Order.webp new file mode 100644 index 00000000..a8d7677e Binary files /dev/null and b/packs/Icons/Archetypes/Crimson Order.webp differ diff --git a/packs/Icons/Archetypes/Cybertech Engineering.webp b/packs/Icons/Archetypes/Cybertech Engineering.webp new file mode 100644 index 00000000..e0c9d19d Binary files /dev/null and b/packs/Icons/Archetypes/Cybertech Engineering.webp differ diff --git a/packs/Icons/Archetypes/Cyclone Approach.webp b/packs/Icons/Archetypes/Cyclone Approach.webp new file mode 100644 index 00000000..faf66a2e Binary files /dev/null and b/packs/Icons/Archetypes/Cyclone Approach.webp differ diff --git a/packs/Icons/Archetypes/Deadeye Technique.webp b/packs/Icons/Archetypes/Deadeye Technique.webp new file mode 100644 index 00000000..c11b7b7f Binary files /dev/null and b/packs/Icons/Archetypes/Deadeye Technique.webp differ diff --git a/packs/Icons/Archetypes/Demolitions Specialist.webp b/packs/Icons/Archetypes/Demolitions Specialist.webp new file mode 100644 index 00000000..4e83a8d7 Binary files /dev/null and b/packs/Icons/Archetypes/Demolitions Specialist.webp differ diff --git a/packs/Icons/Archetypes/Disabling Practice.webp b/packs/Icons/Archetypes/Disabling Practice.webp new file mode 100644 index 00000000..c324b301 Binary files /dev/null and b/packs/Icons/Archetypes/Disabling Practice.webp differ diff --git a/packs/Icons/Archetypes/Doctor Pursuit.webp b/packs/Icons/Archetypes/Doctor Pursuit.webp new file mode 100644 index 00000000..5aa472e7 Binary files /dev/null and b/packs/Icons/Archetypes/Doctor Pursuit.webp differ diff --git a/packs/Icons/Archetypes/Echani Order.webp b/packs/Icons/Archetypes/Echani Order.webp new file mode 100644 index 00000000..8aa5a04c Binary files /dev/null and b/packs/Icons/Archetypes/Echani Order.webp differ diff --git a/packs/Icons/Archetypes/Enhancement Specialist.webp b/packs/Icons/Archetypes/Enhancement Specialist.webp new file mode 100644 index 00000000..c8db3d7c Binary files /dev/null and b/packs/Icons/Archetypes/Enhancement Specialist.webp differ diff --git a/packs/Icons/Archetypes/Explorer Pursuit.webp b/packs/Icons/Archetypes/Explorer Pursuit.webp new file mode 100644 index 00000000..0165503b Binary files /dev/null and b/packs/Icons/Archetypes/Explorer Pursuit.webp differ diff --git a/packs/Icons/Archetypes/Frenzied Approach.webp b/packs/Icons/Archetypes/Frenzied Approach.webp new file mode 100644 index 00000000..efa4b9b1 Binary files /dev/null and b/packs/Icons/Archetypes/Frenzied Approach.webp differ diff --git a/packs/Icons/Archetypes/Gadgeteer Engineering.webp b/packs/Icons/Archetypes/Gadgeteer Engineering.webp new file mode 100644 index 00000000..30bd3890 Binary files /dev/null and b/packs/Icons/Archetypes/Gadgeteer Engineering.webp differ diff --git a/packs/Icons/Archetypes/Gambler Pursuit.webp b/packs/Icons/Archetypes/Gambler Pursuit.webp new file mode 100644 index 00000000..82def769 Binary files /dev/null and b/packs/Icons/Archetypes/Gambler Pursuit.webp differ diff --git a/packs/Icons/Archetypes/Geneticist Pursuit.webp b/packs/Icons/Archetypes/Geneticist Pursuit.webp new file mode 100644 index 00000000..0133f655 Binary files /dev/null and b/packs/Icons/Archetypes/Geneticist Pursuit.webp differ diff --git a/packs/Icons/Archetypes/Gunslinger Practice.webp b/packs/Icons/Archetypes/Gunslinger Practice.webp new file mode 100644 index 00000000..acdb90c7 Binary files /dev/null and b/packs/Icons/Archetypes/Gunslinger Practice.webp differ diff --git a/packs/Icons/Archetypes/Heavy Weapons Specialist.webp b/packs/Icons/Archetypes/Heavy Weapons Specialist.webp new file mode 100644 index 00000000..51ac6655 Binary files /dev/null and b/packs/Icons/Archetypes/Heavy Weapons Specialist.webp differ diff --git a/packs/Icons/Archetypes/Hunter Technique.webp b/packs/Icons/Archetypes/Hunter Technique.webp new file mode 100644 index 00000000..989d84ca Binary files /dev/null and b/packs/Icons/Archetypes/Hunter Technique.webp differ diff --git a/packs/Icons/Archetypes/Illusionist Technique.webp b/packs/Icons/Archetypes/Illusionist Technique.webp new file mode 100644 index 00000000..f15ca569 Binary files /dev/null and b/packs/Icons/Archetypes/Illusionist Technique.webp differ diff --git a/packs/Icons/Archetypes/Industrial Approach.webp b/packs/Icons/Archetypes/Industrial Approach.webp new file mode 100644 index 00000000..8e2887ac Binary files /dev/null and b/packs/Icons/Archetypes/Industrial Approach.webp differ diff --git a/packs/Icons/Archetypes/Inquisitor Technique.webp b/packs/Icons/Archetypes/Inquisitor Technique.webp new file mode 100644 index 00000000..9a685cf6 Binary files /dev/null and b/packs/Icons/Archetypes/Inquisitor Technique.webp differ diff --git a/packs/Icons/Archetypes/Jal Shey Order.webp b/packs/Icons/Archetypes/Jal Shey Order.webp new file mode 100644 index 00000000..19b3db02 Binary files /dev/null and b/packs/Icons/Archetypes/Jal Shey Order.webp differ diff --git a/packs/Icons/Archetypes/Jar'Kai Form.webp b/packs/Icons/Archetypes/Jar'Kai Form.webp new file mode 100644 index 00000000..f89f9dc4 Binary files /dev/null and b/packs/Icons/Archetypes/Jar'Kai Form.webp differ diff --git a/packs/Icons/Archetypes/Juggernaut Approach.webp b/packs/Icons/Archetypes/Juggernaut Approach.webp new file mode 100644 index 00000000..5b8f15b9 Binary files /dev/null and b/packs/Icons/Archetypes/Juggernaut Approach.webp differ diff --git a/packs/Icons/Archetypes/Juyo Vapaad Form.webp b/packs/Icons/Archetypes/Juyo Vapaad Form.webp new file mode 100644 index 00000000..79b73969 Binary files /dev/null and b/packs/Icons/Archetypes/Juyo Vapaad Form.webp differ diff --git a/packs/Icons/Archetypes/Kage Order.webp b/packs/Icons/Archetypes/Kage Order.webp new file mode 100644 index 00000000..0e16f02a Binary files /dev/null and b/packs/Icons/Archetypes/Kage Order.webp differ diff --git a/packs/Icons/Archetypes/Kyuzo Order.webp b/packs/Icons/Archetypes/Kyuzo Order.webp new file mode 100644 index 00000000..7c5af2b7 Binary files /dev/null and b/packs/Icons/Archetypes/Kyuzo Order.webp differ diff --git a/packs/Icons/Archetypes/Lethality Practice.webp b/packs/Icons/Archetypes/Lethality Practice.webp new file mode 100644 index 00000000..520f6278 Binary files /dev/null and b/packs/Icons/Archetypes/Lethality Practice.webp differ diff --git a/packs/Icons/Archetypes/Makashi Form.webp b/packs/Icons/Archetypes/Makashi Form.webp new file mode 100644 index 00000000..29de1c48 Binary files /dev/null and b/packs/Icons/Archetypes/Makashi Form.webp differ diff --git a/packs/Icons/Archetypes/Marauder Approach.webp b/packs/Icons/Archetypes/Marauder Approach.webp new file mode 100644 index 00000000..dd3ba33c Binary files /dev/null and b/packs/Icons/Archetypes/Marauder Approach.webp differ diff --git a/packs/Icons/Archetypes/Mastermind Technique.webp b/packs/Icons/Archetypes/Mastermind Technique.webp new file mode 100644 index 00000000..2ba60cd2 Binary files /dev/null and b/packs/Icons/Archetypes/Mastermind Technique.webp differ diff --git a/packs/Icons/Archetypes/Matukai Order.webp b/packs/Icons/Archetypes/Matukai Order.webp new file mode 100644 index 00000000..0aa691ae Binary files /dev/null and b/packs/Icons/Archetypes/Matukai Order.webp differ diff --git a/packs/Icons/Archetypes/Mounted Specialist.webp b/packs/Icons/Archetypes/Mounted Specialist.webp new file mode 100644 index 00000000..1a039f87 Binary files /dev/null and b/packs/Icons/Archetypes/Mounted Specialist.webp differ diff --git a/packs/Icons/Archetypes/Nightsister Order.webp b/packs/Icons/Archetypes/Nightsister Order.webp new file mode 100644 index 00000000..00fd186b Binary files /dev/null and b/packs/Icons/Archetypes/Nightsister Order.webp differ diff --git a/packs/Icons/Archetypes/Niman Form.webp b/packs/Icons/Archetypes/Niman Form.webp new file mode 100644 index 00000000..1d07f083 Binary files /dev/null and b/packs/Icons/Archetypes/Niman Form.webp differ diff --git a/packs/Icons/Archetypes/Path of Aggression.webp b/packs/Icons/Archetypes/Path of Aggression.webp new file mode 100644 index 00000000..fe821780 Binary files /dev/null and b/packs/Icons/Archetypes/Path of Aggression.webp differ diff --git a/packs/Icons/Archetypes/Path of Communion.webp b/packs/Icons/Archetypes/Path of Communion.webp new file mode 100644 index 00000000..70cace08 Binary files /dev/null and b/packs/Icons/Archetypes/Path of Communion.webp differ diff --git a/packs/Icons/Archetypes/Path of Etherealness.webp b/packs/Icons/Archetypes/Path of Etherealness.webp new file mode 100644 index 00000000..6d5675a9 Binary files /dev/null and b/packs/Icons/Archetypes/Path of Etherealness.webp differ diff --git a/packs/Icons/Archetypes/Path of Focus.webp b/packs/Icons/Archetypes/Path of Focus.webp new file mode 100644 index 00000000..1356f498 Binary files /dev/null and b/packs/Icons/Archetypes/Path of Focus.webp differ diff --git a/packs/Icons/Archetypes/Path of Shadows.webp b/packs/Icons/Archetypes/Path of Shadows.webp new file mode 100644 index 00000000..3e0b1e40 Binary files /dev/null and b/packs/Icons/Archetypes/Path of Shadows.webp differ diff --git a/packs/Icons/Archetypes/Path of Synthesis.webp b/packs/Icons/Archetypes/Path of Synthesis.webp new file mode 100644 index 00000000..164b2958 Binary files /dev/null and b/packs/Icons/Archetypes/Path of Synthesis.webp differ diff --git a/packs/Icons/Archetypes/Path of Tenacity.webp b/packs/Icons/Archetypes/Path of Tenacity.webp new file mode 100644 index 00000000..55491f31 Binary files /dev/null and b/packs/Icons/Archetypes/Path of Tenacity.webp differ diff --git a/packs/Icons/Archetypes/Path of Witchcraft.webp b/packs/Icons/Archetypes/Path of Witchcraft.webp new file mode 100644 index 00000000..33e058b5 Binary files /dev/null and b/packs/Icons/Archetypes/Path of Witchcraft.webp differ diff --git a/packs/Icons/Archetypes/Path of the Corsair.webp b/packs/Icons/Archetypes/Path of the Corsair.webp new file mode 100644 index 00000000..7f25641a Binary files /dev/null and b/packs/Icons/Archetypes/Path of the Corsair.webp differ diff --git a/packs/Icons/Archetypes/Path of the Forceblade.webp b/packs/Icons/Archetypes/Path of the Forceblade.webp new file mode 100644 index 00000000..37d873be Binary files /dev/null and b/packs/Icons/Archetypes/Path of the Forceblade.webp differ diff --git a/packs/Icons/Archetypes/Performance Practice.webp b/packs/Icons/Archetypes/Performance Practice.webp new file mode 100644 index 00000000..4992ca0d Binary files /dev/null and b/packs/Icons/Archetypes/Performance Practice.webp differ diff --git a/packs/Icons/Archetypes/Politician Pursuit.webp b/packs/Icons/Archetypes/Politician Pursuit.webp new file mode 100644 index 00000000..d5f17fa2 Binary files /dev/null and b/packs/Icons/Archetypes/Politician Pursuit.webp differ diff --git a/packs/Icons/Archetypes/Praetorian Specialist.webp b/packs/Icons/Archetypes/Praetorian Specialist.webp new file mode 100644 index 00000000..3a3662e0 Binary files /dev/null and b/packs/Icons/Archetypes/Praetorian Specialist.webp differ diff --git a/packs/Icons/Archetypes/Precision Approach.webp b/packs/Icons/Archetypes/Precision Approach.webp new file mode 100644 index 00000000..74cf7a7c Binary files /dev/null and b/packs/Icons/Archetypes/Precision Approach.webp differ diff --git a/packs/Icons/Archetypes/Predator Technique.webp b/packs/Icons/Archetypes/Predator Technique.webp new file mode 100644 index 00000000..aa232058 Binary files /dev/null and b/packs/Icons/Archetypes/Predator Technique.webp differ diff --git a/packs/Icons/Archetypes/Ruffian Practice.webp b/packs/Icons/Archetypes/Ruffian Practice.webp new file mode 100644 index 00000000..86243bf2 Binary files /dev/null and b/packs/Icons/Archetypes/Ruffian Practice.webp differ diff --git a/packs/Icons/Archetypes/Saboteur Practice.webp b/packs/Icons/Archetypes/Saboteur Practice.webp new file mode 100644 index 00000000..cf44c34c Binary files /dev/null and b/packs/Icons/Archetypes/Saboteur Practice.webp differ diff --git a/packs/Icons/Archetypes/Sawbones Practice.webp b/packs/Icons/Archetypes/Sawbones Practice.webp new file mode 100644 index 00000000..8975f2d6 Binary files /dev/null and b/packs/Icons/Archetypes/Sawbones Practice.webp differ diff --git a/packs/Icons/Archetypes/Scrapper Practice.webp b/packs/Icons/Archetypes/Scrapper Practice.webp new file mode 100644 index 00000000..5bf5e028 Binary files /dev/null and b/packs/Icons/Archetypes/Scrapper Practice.webp differ diff --git a/packs/Icons/Archetypes/Sharpshooter Practice.webp b/packs/Icons/Archetypes/Sharpshooter Practice.webp new file mode 100644 index 00000000..482b5bc9 Binary files /dev/null and b/packs/Icons/Archetypes/Sharpshooter Practice.webp differ diff --git a/packs/Icons/Archetypes/Shield Specialist.webp b/packs/Icons/Archetypes/Shield Specialist.webp new file mode 100644 index 00000000..a487247b Binary files /dev/null and b/packs/Icons/Archetypes/Shield Specialist.webp differ diff --git a/packs/Icons/Archetypes/Shien Djem So Form.webp b/packs/Icons/Archetypes/Shien Djem So Form.webp new file mode 100644 index 00000000..1073bd72 Binary files /dev/null and b/packs/Icons/Archetypes/Shien Djem So Form.webp differ diff --git a/packs/Icons/Archetypes/Shii-Cho Form.webp b/packs/Icons/Archetypes/Shii-Cho Form.webp new file mode 100644 index 00000000..a8971763 Binary files /dev/null and b/packs/Icons/Archetypes/Shii-Cho Form.webp differ diff --git a/packs/Icons/Archetypes/Slayer Technique.webp b/packs/Icons/Archetypes/Slayer Technique.webp new file mode 100644 index 00000000..aa232058 Binary files /dev/null and b/packs/Icons/Archetypes/Slayer Technique.webp differ diff --git a/packs/Icons/Archetypes/Slicer Pursuit.webp b/packs/Icons/Archetypes/Slicer Pursuit.webp new file mode 100644 index 00000000..47ce8414 Binary files /dev/null and b/packs/Icons/Archetypes/Slicer Pursuit.webp differ diff --git a/packs/Icons/Archetypes/Sokan Form.webp b/packs/Icons/Archetypes/Sokan Form.webp new file mode 100644 index 00000000..f4932af8 Binary files /dev/null and b/packs/Icons/Archetypes/Sokan Form.webp differ diff --git a/packs/Icons/Archetypes/Soresu Form.webp b/packs/Icons/Archetypes/Soresu Form.webp new file mode 100644 index 00000000..72081409 Binary files /dev/null and b/packs/Icons/Archetypes/Soresu Form.webp differ diff --git a/packs/Icons/Archetypes/Stalker Technique.webp b/packs/Icons/Archetypes/Stalker Technique.webp new file mode 100644 index 00000000..a95e2fbb Binary files /dev/null and b/packs/Icons/Archetypes/Stalker Technique.webp differ diff --git a/packs/Icons/Archetypes/Tactical Specialist.webp b/packs/Icons/Archetypes/Tactical Specialist.webp new file mode 100644 index 00000000..d0aedd85 Binary files /dev/null and b/packs/Icons/Archetypes/Tactical Specialist.webp differ diff --git a/packs/Icons/Archetypes/Tactician Pursuit.webp b/packs/Icons/Archetypes/Tactician Pursuit.webp new file mode 100644 index 00000000..243c4638 Binary files /dev/null and b/packs/Icons/Archetypes/Tactician Pursuit.webp differ diff --git a/packs/Icons/Archetypes/Teleportation Technique.webp b/packs/Icons/Archetypes/Teleportation Technique.webp new file mode 100644 index 00000000..ac4cd42f Binary files /dev/null and b/packs/Icons/Archetypes/Teleportation Technique.webp differ diff --git a/packs/Icons/Archetypes/Trakata Form.webp b/packs/Icons/Archetypes/Trakata Form.webp new file mode 100644 index 00000000..25e38e11 Binary files /dev/null and b/packs/Icons/Archetypes/Trakata Form.webp differ diff --git a/packs/Icons/Archetypes/Trickster Order.webp b/packs/Icons/Archetypes/Trickster Order.webp new file mode 100644 index 00000000..a0f9465d Binary files /dev/null and b/packs/Icons/Archetypes/Trickster Order.webp differ diff --git a/packs/Icons/Archetypes/Unstable Engineering.webp b/packs/Icons/Archetypes/Unstable Engineering.webp new file mode 100644 index 00000000..ea6bf69a Binary files /dev/null and b/packs/Icons/Archetypes/Unstable Engineering.webp differ diff --git a/packs/Icons/Archetypes/Warchief Approach.webp b/packs/Icons/Archetypes/Warchief Approach.webp new file mode 100644 index 00000000..5edb97bf Binary files /dev/null and b/packs/Icons/Archetypes/Warchief Approach.webp differ diff --git a/packs/Icons/Archetypes/Way of Balance.webp b/packs/Icons/Archetypes/Way of Balance.webp new file mode 100644 index 00000000..587b3377 Binary files /dev/null and b/packs/Icons/Archetypes/Way of Balance.webp differ diff --git a/packs/Icons/Archetypes/Way of Confluence.webp b/packs/Icons/Archetypes/Way of Confluence.webp new file mode 100644 index 00000000..3fa8bbaa Binary files /dev/null and b/packs/Icons/Archetypes/Way of Confluence.webp differ diff --git a/packs/Icons/Archetypes/Way of Endurance.webp b/packs/Icons/Archetypes/Way of Endurance.webp new file mode 100644 index 00000000..448b99e0 Binary files /dev/null and b/packs/Icons/Archetypes/Way of Endurance.webp differ diff --git a/packs/Icons/Archetypes/Way of Lightning.webp b/packs/Icons/Archetypes/Way of Lightning.webp new file mode 100644 index 00000000..12ae4cea Binary files /dev/null and b/packs/Icons/Archetypes/Way of Lightning.webp differ diff --git a/packs/Icons/Archetypes/Way of Manipulation.webp b/packs/Icons/Archetypes/Way of Manipulation.webp new file mode 100644 index 00000000..56947eae Binary files /dev/null and b/packs/Icons/Archetypes/Way of Manipulation.webp differ diff --git a/packs/Icons/Archetypes/Way of Negation.webp b/packs/Icons/Archetypes/Way of Negation.webp new file mode 100644 index 00000000..c6a11f2e Binary files /dev/null and b/packs/Icons/Archetypes/Way of Negation.webp differ diff --git a/packs/Icons/Archetypes/Way of Suggestion.webp b/packs/Icons/Archetypes/Way of Suggestion.webp new file mode 100644 index 00000000..b9410526 Binary files /dev/null and b/packs/Icons/Archetypes/Way of Suggestion.webp differ diff --git a/packs/Icons/Archetypes/Way of Telekinetics.webp b/packs/Icons/Archetypes/Way of Telekinetics.webp new file mode 100644 index 00000000..edbbfc1d Binary files /dev/null and b/packs/Icons/Archetypes/Way of Telekinetics.webp differ diff --git a/packs/Icons/Archetypes/Way of the Sage.webp b/packs/Icons/Archetypes/Way of the Sage.webp new file mode 100644 index 00000000..6d1cbf83 Binary files /dev/null and b/packs/Icons/Archetypes/Way of the Sage.webp differ diff --git a/packs/Icons/Archetypes/Way of the Seer.webp b/packs/Icons/Archetypes/Way of the Seer.webp new file mode 100644 index 00000000..d9f5341c Binary files /dev/null and b/packs/Icons/Archetypes/Way of the Seer.webp differ diff --git a/packs/Icons/Archetypes/Whills Order.webp b/packs/Icons/Archetypes/Whills Order.webp new file mode 100644 index 00000000..6c44f4e6 Binary files /dev/null and b/packs/Icons/Archetypes/Whills Order.webp differ diff --git a/packs/Icons/Archetypes/Zoologist Pursuit.webp b/packs/Icons/Archetypes/Zoologist Pursuit.webp new file mode 100644 index 00000000..f82a7429 Binary files /dev/null and b/packs/Icons/Archetypes/Zoologist Pursuit.webp differ diff --git a/packs/Icons/monsters/228_-_Officer_2C_Senior/Admiral Strife.jpg b/packs/Icons/monsters/228_-_Officer_2C_Senior/Admiral Strife.jpg new file mode 100644 index 00000000..82464a9c Binary files /dev/null and b/packs/Icons/monsters/228_-_Officer_2C_Senior/Admiral Strife.jpg differ diff --git a/packs/packs/archetypes.db b/packs/packs/archetypes.db new file mode 100644 index 00000000..e9c60405 --- /dev/null +++ b/packs/packs/archetypes.db @@ -0,0 +1,103 @@ +{"_id":"0s8yk4E0Kneqe4zt","name":"Echani Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Echani Order

\n

Monks of the Echani Order train relentlessly both with and without their weapons, to the point where the weapon becomes an extension of the body. Founded on a mastery of sword fighting, the tradition has expanded to include many different weapons.

\n

Path of the Echani

\n

Beginning when you choose this order at 3rd level, your special martial arts training leads you to master the use of certain weapons. You gain the following benefits.

\n

Echani Weapons

\n

Choose two types of weapons to be your Echani weapons: one vibroweapon and one blaster. Each of these weapons can be any simple or martial weapon that lacks the special property. You gain proficiency with these weapons if you don't already have it. Weapons of the chosen types are monk weapons for you. Many of this tradition's features work only with your Echani weapons. When you reach 6th, 11th, and 17th level in this class, you can choose another type of weapon to be an Echani weapon for you, following the criteria above.

\n

Agile Parry

\n

If you make an unarmed strike as part of the Attack action on your turn and are holding an Echani weapon, you can use it to defend yourself if it is a melee weapon. You gain a +2 bonus to AC until the start of your next turn, while the weapon is in your hand and you aren't incapacitated.

\n

Echani's Shot

\n

You can use a bonus action on your turn to make your ranged attacks with an Echani weapon more deadly. When you do so, any target you hit with a ranged attack using an Echani weapon takes an extra 1d4 damage of the weapon's type. You retain this benefit until the end of the current turn.

\n

One with the Blade

\n

At 6th level, you extend your focus into your Echani weapons, granting you the following benefits.

\n

Enhanced Echani Weapons

\n

Your attacks with your Echani weapons count as enhanced for the purpose of overcoming resistance and immunity to unenhanced attacks and damage.

\n

Deft Strike

\n

When you hit a target with an Echani weapon, you can spend 1 focus point to cause the weapon to deal extra damage to the target equal to your Martial Arts die. You can use this feature only once on each of your turns.

\n

Sharpen the Blade

\n

Starting at 11th level, you gain the ability to augment your weapons further with your focus. As a bonus action, you can expend up to 3 focus points to grant one Echani weapon you touch a bonus to attack and damage rolls when you attack with it. The bonus equals the number of points you spent. This bonus lasts for 1 minute or until you use this feature again. This feature has no effect on an enhanced weapon that already has a bonus to attack and damage rolls.

\n

Unerring Accuracy

\n

At 17th level, your mastery of weapons grants you extraordinary accuracy. If you miss with an attack roll using a monk weapon on your turn, you can reroll it. You can use this feature only once on each of your turns.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Echani%20Order.webp"} +{"_id":"12fYGPcLSITUYHMK","name":"Way of the Seer","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of the Seer

\n

The Force guides us in innumerable ways, often manifesting as visions. Those consulars who follow the Way of Seer attempt to harness these visions in an attempt to work towards the best possible future, as they see it.

\n

Force Visions

\n

When you choose this tradition at 3rd level, glimpses of the future begin to press in on your awareness. When you finish a long rest, roll two d20s and record the numbers rolled. You can replace any attack roll, saving throw, or ability check made by you or a creature that you can see with one of these foretelling rolls. You must choose to do so before the roll, and you can replace a roll in this way only once per turn. Each foretelling roll can be used only once. When you finish a long rest, you lose any unused foretelling rolls.

\n

Powerful Mind

\n

At 6th level, you can use your force abilities to read a creature's thoughts. You can then use your access to the creature's mind to command it.

\n

As an action, choose one creature that you can see within 60 feet of you. That creature must make a Wisdom saving throw against your universal force save DC. If the creature succeeds on the saving throw, you can't use this feature on it again until you finish a long rest. If the creature fails its save, you can read its surface thoughts (those foremost in its mind, reflecting its current emotions and what it is actively thinking about.) when it is within 60 feet of you. This effect lasts for 1 minute. During that time, you can use your action to end this effect and use the coerce mind force power on the creature without expending force points. The target automatically fails its saving throw against the power.

\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 any expended uses when you finish a long rest.

\n

Visions of the Past

\n

Beginning at 10th level, you can call up visions of the past that relate to an object you hold or your immediate surroundings. You spend at least 1 minute in meditation, then receive dreamlike, shadowy glimpses of recent events. You can meditate in this way for a number of minutes equal to your Wisdom score and must maintain concentration during that time, as if you were casting a force power. Once you've used this feature, you can't use it again until you finish a short or long rest.

\n

Object Reading. Holding an object as you meditate, you can see visions of the object's previous owner. After meditating for 1 minute, you learn how the owner acquired and lost the object, as well as the most recent significant event involving the object and that owner. If the object was owned by another creature in the recent past (within a number of days equal to your Wisdom score), you can spend 1 additional minute for each owner to learn the same information about that creature.

\n

Area Reading. As you meditate, you see visions of recent events in your immediate vicinity (a room, street, tunnel, clearing, or the like, up to a 50-foot cube), going back a number of days equal to your Wisdom score. For each minute you meditate, you learn about one significant event, beginning with the most recent. Significant events typically involve powerful emotions, such as battles and betrayals, marriages and murders, births and funerals. However, they might also include more mundane events that are nevertheless important in your current situation.

\n

Shielded Thoughts

\n

At 14th level, your thoughts can't be read by telepathy or other means unless you allow it. You also have resistance to psychic damage, and whenever a creature deals psychic damage to you, that creature takes the same amount of damage that you do.

\n

Clarity of Vision

\n

Starting at 18th level, the visions in your dreams intensify and paint a more accurate picture in your mind of what is to come. You roll three d20s for your Force Visions feature, rather than two.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20the%20Seer.webp"} +{"_id":"174qCi5FWBd5LDP0","name":"Illusionist Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Illusionist Technique

\n

Throughout the galaxy you may find various infiltrators and agents who make ample use of holographic technology to get themselves in and out of danger. Followers of the Illusionist Technique make use of this holographic technology to give themselves an illusory edge in combat.

\n

Holographic Decoy

\n

When you choose this technique at 3rd level, as an action, you can create a perfect illusion of yourself that lasts for 10 minutes, or until you lose your concentration (as if you were concentrating on a power). The decoy appears in an unoccupied space that you can see within 30 feet of you. The decoy is purely visual. If anything passes through it, it is revealed to be an illusion. For the duration, you can cast tech powers as though you were in the decoy's space. Both your decoy and the target of your tech power must be within your line of sight.

\n

You can use your bonus action to cause the decoy to move up to 30 feet. As your decoy changes location, you can alter its appearance so that its movements appear natural for the decoy. If your decoy is ever more than 120 feet away from you, it immediately disappears.

\n

Additionally, when both you and your decoy are within 5 feet of a creature that can see the decoy, but is not aware it is an illusion, you have advantage on attack rolls against that creature.

\n

A creature that uses its action to examine your decoy can determine that it is an illusion with a successful Intelligence (Investigation) check against your tech save DC. If a creature discerns the illusion for what it is, the creature can see through the image.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Mark of the Illusionist

\n

Also at 3rd level, the target of your Ranger's Quarry feature has disadvantage on all checks made to discern the nature of your illusions. Additionally, when the target of your Ranger's Quarry is reduced to 0 hit points, you can use your reaction to immediately cause an active illusion, or your Holographic Decoy, to take the form of the creature as long as the creature's dimensions fall within the power's capacity restrictions.

\n

Charged Illusions

\n

Beginning at 7th level, when a creature discerns the nature of an illusion you have created using a tech power or class feature while within 5 feet of it, you can dispel the illusion (no action required) to have the creature take energy damage equal to 1d10 + half your scout level (rounded down).

\n

Quick Escape

\n

Starting at 11th level, whenever you take damage, you can use your reaction to swap places with an illusion of yourself that you have created using a tech power or class feature. The illusion must be within 60 feet of you, and you must be able to see it.

\n

Improved Decoys

\n

At 15th level, you can create up to four duplicates of yourself, instead of one, when you use your Holographic Decoy feature. When you use your bonus action to move a decoy, you can move any number of them with the same bonus action.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Illusionist%20Technique.webp"} +{"_id":"2Cloz2rrPw76ACn0","name":"Armormech Engineering","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Engineer","description":{"value":"

Armormech Engineering

Those engineers who choose the Armormech Engineering discipline focus on the ability to work with hard metals and electronic shielding to construct and enhance all types of personal armor.

Bonus Proficiencies

When you choose this discipline at 3rd level, you gain proficiency in armormech's tools, medium armor, and heavy armor. Additionally, when you engage in crafting with armormech's tools, the rate at which you craft doubles.

Modified Armor

Also at 3rd level, you learn to modify one unenhanced suit of armor or shield utilizing your armormech knowledge. Over the course of a long rest, you can expend materials equal to half the cost of the armor in order to modify it. You must have the armor, materials, and armormech's tools in order to perform this modification.

Your modified armor is enhanced, requires attunement, can only be used by you, and counts as a tech focus for your tech powers while you are attuned to it. Your modified armor has 4 modification slots, and it gains more at higher levels, as shown in the Modification Slots column of the engineer class table. For each modification installed, your tech point maximum is reduced by 1. Over the course of a long rest, you can replace or remove a number of modifications up to your Intelligence modifier (minimum of one).

Some modification effects require saving throws. When you use such an effect from this class, the DC equals your tech save DC.

At 9th level, you can maintain both a modified suit of armor and shield. Each modified item has modification slots as shown in the Modification Slots column of the engineer class table.

Damage Absorption

Lastly at 3rd level, when you take damage, you can use your reaction and expend one use of your Potent Aptitude to absorb some of that damage. When you do so, the damage you take from the attack is reduced by the amount rolled on the die + your Intelligence modifier (minimum of one).

Armormech's Celerity

Beginning at 6th level, when you take the Attack action, you can make one weapon attack as a bonus action.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a long rest.

Casting Celerity

At 14th level, when you use your action to a cast a tech power, you can use your Armormech's Celerity feature.

Suit Reliability

Starting at 18th level, your suit is like a second skin. Whenever you make an ability check or saving throw that uses Strength, Dexterity, or Constitution, you can treat a d20 roll of 9 or lower as a 10. You must be wearing your modified armor to gain this benefit.

Armormech Modifications

If a modification has prerequisites, you must meet them to install it. You can install the modification at the same time that you meet its prerequisites.

Absorption Shield

Prerequisite: Physical Shield You modify your physical shield to block incoming damage. As a bonus action you can activate this ability and gain temporary hit points equal to 1d4 + Intelligence modifier, which last for one hour.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain any expended uses when you finish a long rest.

Accelerated Movement

Prerequisite: Armor You reduce the weight of your modified armor's bulk and increase the power to joints. If the armor has a Strength requirement, you ignore it. The modified armor's weight is reduced by 15 lbs. While wearing your modified armor your speed increases by 10 feet. This applies to all movement speeds you have while wearing your armor.

Adaptable Armor

Prerequisite: Armor You integrate deployable hooks and fins into your armor, augmenting its mobility. While wearing your modified armor, you gain a climbing speed equal to your walking speed, and you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. Additionally, you gain a swim speed equal to your walking speed.

Advanced Power Fist

Prerequisite: 11th level, Armor Prerequisite: Prototype Power Fist You further modify your modified armor's gauntlet with increased reinforcement and weight. Your modified armor's unarmed strike deals 1d8 kinetic damage. Additionally, your unarmed strikes score a critical hit on a roll of 19 or 20.

Artificially Intelligent

Prerequisite: 7th level, Armor You install an artificial intelligence into your modified armor. While wearing your modified armor, when you make an ability check, your armor's artificial intelligence can take the Help action.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a long rest.

Bonded Plates

Prerequisite: 5th level You gain a +1 bonus to AC against melee attacks. This bonus increases to +2 at 9th level and +3 at 13th level.

Collapsible Suit

Prerequisite: 5th level, Armor Your modified armor can collapse into a case for easy storage. When transformed this way the armor is indistinguishable from a normal case and weighs 1/3

its normal weight. As an action you can don or doff the armor, allowing it to transform as needed.

Darkvision Visor

Prerequisite: Armor While wearing your modified armor, you have darkvision to a range of 60 feet. If you already have darkvision, this modification increases its range by 30 feet.

Enhanced Endurance

Prerequisite: Armor When you are reduced to 0 hit points while wearing your modified armor but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.

Electroshock Shield

Prerequisite: Shield Generator You install electroshockers in your shield generator. Whenever an enemy misses you with a melee attack, you can use your reaction to do 1d4 + your Intelligence modifier lightning damage to the attacker.

Flight

Prerequisite: 9th level, Armor You integrate a propulsion system into your modified armor. While wearing your modified armor you have an enhanced flying speed of 30 feet.

Grappling Harpoon

Prerequisite: Armor Your modified armor gains an integrated grappling harpoon set into your gauntlet. With this harpoon, you can make a ranged weapon attack with a range of 30/60. On a hit, it deals 1d6 kinetic damage. This attack can target a surface, object, or creature.

A creature struck by this attack is impaled by the harpoon. As an action, a creature can attempt to remove the harpoon. Removing the harpoon requires a Strength check. While the harpoon is stuck in the target, you are connected to the target by a 60 foot cable.

While the harpoon is deployed, you can use your bonus action to activate the reel, pulling yourself to the location if the target is larger than you. A creature or object your size or smaller is pulled to you. Alternatively, you can opt to release the cable (no action required).

Once you've used this feature, you can't use it again until you recover and reinsert the harpoon as an action.

Heavy Suit

Prerequisite: 5th level, Armor You enhance your suit, making it difficult to move. As a bonus action, you can anchor your feet to the ground. While anchored, your speed is 0, you have advantage on Strength checks and Strength saving throws, and you count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.

Infiltration Suit

Prerequisite: Armor You install a cloaking device in your modified armor. This device has 2 charges. As an action you can use 1 charge to cast infiltrate targeting yourself.

The cloaking device regains all expended charges after a long rest.

Magnetized Shield

Prerequisite: Physical Shield You modify your physical shield such that when a melee weapon attack misses you by an amount less than or equal to your bonus to AC from your shield, the attacking creature must make a Strength check against your tech save DC. On a failed save, the creature's weapon adheres to the shield. As an action, a creature can repeat this check. On a success, the weapon is freed.

Overload Shield

Prerequisite: Shield Generator You modify your shield generator to overload. As an action you can overload your shield. Each Large or smaller creature within 5 feet of you must make a Dexterity or Strength saving throw (their choice) against your tech save DC. On a failed save, they are pushed back 5 feet and knocked prone.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain any expended uses when you finish a long rest.

Power Fist

Prerequisite: Armor You modify your modified armor gauntlet with increased reinforcement and weight. Your modified armor's unarmed strike deals 1d4 kinetic damage.

Additionally, when you take the Attack action and make an unarmed attack, you can make an additional unarmed attack as a bonus action.

Prototype Power Fist

Prerequisite: 7th level, Armor Prerequisite: Power Fist You further modify your modified armor gauntlet with increased reinforcement and weight. Your modified armor's unarmed strike deals 1d6 kinetic damage and has the following property.

If you or your target move at least 10 feet in a straight line immediately before making an unarmed attack, the first unarmed attack you make deals additional damage equal to your Intelligence modifier.

Reinforced Underlay

Prerequisite: 5th level You gain a +1 bonus to AC against ranged attacks. This bonus increases to +2 at 9th level and +3 at 13th level.

Resistance

Prerequisite: Armor You tune your modified armor against certain forms of damage. Choose acid, cold, fire, ion, lightning, or sonic damage. While wearing your modified armor you have resistance to that type of damage.

You can select this modification multiple times. Each time you do so, you must choose a different damage type.

Sealed Suit

Prerequisite: 5th level, Armor As a bonus action you can hermetically seal your modified armor, giving you an air supply for up to 1 hour and making you immune to poison (but not curing you of existing poisoned conditions). Your armor regains 1 minute of air for every minute that you are not submerged and the armor is not sealed.

Additionally, while you are wearing your modified armor you are considered adapted to cold and hot climates as well as high altitude, as described in chapter 5 of the Dungeon Master's Guide.

Sentient Armor

Prerequisite: 13th level Prerequisite: Artificially Intelligent Your artificial intelligence has learned to control the suit without you being in it. It is now a valid target of the tracker droid interface tech power.

While your armor is acting independently, it uses your ability scores, saving throws, and skills, and it has hit points equal to your engineer level. If reduced to 0 hit points, it falls directly to the ground, and it can not be equipped again until you finish a long rest.

Shield Amplifier

Prerequisite: Shield Generator You modify your shield generator to project outward. As a bonus action you can amplify your shield until the start of your next turn. Each creature within 5 feet of you gains a bonus to AC equal to your shield's bonus.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain any expended uses when you finish a long rest.

Shield Anchor

Prerequisite: Physical Shield You modify your shield to be used as a portable source of cover. As an action, you can anchor or recover the shield. While anchored, you gain no benefit from a shield, and it does not require the use of a hand. Instead, while anchored, a light shield provides one-quarter cover, a medium shield provides half cover, and a large shield provides three-quarters cover.

Tech Blast

Prerequisite: Armor You modify your modified armor gauntlet to allow you to make a ranged tech attack. The weapon fires blasts of energy which deal 1d8 + your Intelligence modifier energy damage with a range of 30 feet. When you would make a ranged weapon attack, you can use this ranged tech attack in place of it.

Weapon Integration Armoring

Prerequisite: Armor You can integrate a single weapon that weighs no more than 8 lb. into your armor. While integrated, that weapon gains the hidden property. Additionally, you have advantage on Strength saving throws to avoid being disarmed.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.toolProf.value","value":"armor","mode":"+","targetSpecific":false,"id":1,"itemId":"2Cloz2rrPw76ACn0","active":false,"_targets":[],"label":"Traits Tool Prof"},{"modSpecKey":"data.traits.armorProf.value","value":"med","mode":"+","targetSpecific":false,"id":2,"itemId":"2Cloz2rrPw76ACn0","active":false,"_targets":[],"label":"Traits Armor Prof"},{"modSpecKey":"data.traits.armorProf.value","value":"hvy","mode":"+","targetSpecific":false,"id":3,"itemId":"2Cloz2rrPw76ACn0","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Archetypes/Armormech%20Engineering.webp"} +{"_id":"3GmBJl9h0FpyIKFg","name":"Path of Aggression","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of Aggression

\n

From the murky depths of the dark side comes seething fury. Those sentinels who follow the Path of Aggression charge their weapon with lightning, culminating in a massive discharge that can ravage their opponents.

\n

Voltaic Slash

\n

Starting when you choose this calling at 3rd level, you learn the lightning charge force power, which does not count against your total powers known. Additionally, you can use Wisdom or Charisma as your forcecasting ability for it, and you can use your Kinetic Combat feature when you cast it as your action. Finally, when you deal lightning damage with the lightning charge force power, you deal additional lightning damage equal to half your Wisdom or Charisma modifier (your choice, minimum of one) if it doesn't already include that modifier.

\n

Thunderous Momentum

\n

Also at 3rd level, your stride becomes nigh unbreakable. You are immune to the shocked condition, and other effects that would reduce your speed only reduce it by 5 feet.

\n

Entropic Rush

\n

At 7th level, you've learned to move with speed and precision, discharging your lightning in a massive burst. When you move at least half your speed before casting lightning charge, you make the attack roll with advantage. Additionally, on a hit, the lightning can leap a second time, to a third creature within range or back to the first creature.

\n

Living Current

\n

By 13th level, you've learned to channel the damage done to you to enhance your strikes. The first time you deal damage on your turn, if you took damage since the start of your last turn, you can deal additional lightning damage equal to your Kinetic Combat die + half the amount of damage taken (rounded down).

\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 short or long rest.

\n

Retaliatory Strike

\n

At 18th level, when a creature hits you with an attack while within 5 feet of you, you can use your reaction to cast the lightning charge force power, targeting them.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20Aggression.webp"} +{"_id":"3yOiMsM439IfwEBm","name":"Form VII: Juyo/Vapaad","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form VII: Juyo/Vapaad

\n

Form VII, also known as Ferocity Form, revels in the satisfaction of battle and victory. Those guardians who focus on Juyo/Vapaad Form channel their emotions into their fighting, making heavy, sweeping strikes.

\n

Bonus Proficiencies

\n

You gain proficiency in heavy armor.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Great Weapon Fighting, Two-Weapon Fighting, or Versatile Fighting Fighting Style options for Juyo, or Brawling, Equilibrium, or Sentinel Fighting Style options for Vapaad, detailed in Chapter 6. You can't take a Fighting Style option more than once, even if you later get to choose again.

\n

The Way of the Vornskr

\n

Also at 3rd level, as a bonus action, you can take a savage stance, designating one creature you can see within 10 feet of you as your prey for 1 minute. You have advantage on attack rolls against the creature. If the target drops to 0 hit points, you can use a bonus action on a subsequent turn to mark a new creature.

\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you complete a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain one of the following Channel the Force options. Choose Snap Aggression for Juyo or Assertive Defense for Vapaad.

\n

Snap Aggression

\n

If you are surprised at the start of combat and aren't incapacitated, you can expend a use of your Channel the Force to act normally on your first turn.

\n

Assertive Defense

\n

When you reduce the damage dealt by a force power to 0 using the saber reflect power, and you're wielding a lightweapon or vibroweapon, you can expend a use of your Channel the Force to reflect the attack at a target within range, regardless of what type the damage is.

\n

Fury

\n

At 7th level, you gain one of the following features. Choose Relentless for Juyo or Punishing Charge for Vapaad.

\n

Relentless

\n

You have advantage on initiative checks, and gain a 10 foot bonus to your speed on your first turn of combat.

\n

Punishing Charge

\n

When a creature you can see or hear within 30 feet of you casts a force power, you can use your reaction to move up half your speed. You must end this move closer to the enemy than you started. If you end this movement within 5 feet of the creature, and the triggering force power required a ranged attack roll, they have disadvantage on the roll.

\n

Vengeance

\n

Starting at 15th level, you gain one of the following features. Choose Devastating Critical for Juyo or Their Power, My Strength for Vapaad.

\n

Devastating Critical

\n

When you score a critical hit with a melee weapon attack, you gain a bonus to that weapon's damage roll equal to your guardian level.

\n

Their Power, My Strength

\n

When you are dealt damage by a force power, you can reduce that damage by an amount equal to your guardian level (no action required).

\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 complete a short or long rest.

\n

Master of Ferocity

\n

At 20th level, you are a paragon of extraordinary martial prowess. Your Strength and Dexterity scores increase by 2. Your maximum for those scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you complete a long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Juyo%20Vapaad%20Form.webp"} +{"_id":"4afEpKVpPAUq3lMe","name":"Path of the Forceblade","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of the Forceblade

\n

Some few master their weapon in ways that differ from their peers. Those sentinels who follow the Path of the Forceblade channel the Force into their weapon, forming a unique connection that grants you greater control over the weapon; it becomes an extension of their will.

\n

Phasethrow

\n

Starting when you choose this calling at 3rd level, you learn the saber throw force power. Additionally, you no longer have disadvantage on the attack roll with it if you are within 5 feet of a hostile creature, and you can use your Kinetic Combat feature when you cast it as your action. Finally, once per turn, when you hit a creature within 30 feet of you with the saber throw force power, you can spend 1 force point to teleport to an unoccupied space within 5 feet of the creature.

\n

Forceblade Bond

\n

Also at 3rd level, you learn how to bond with a lightweapon or vibroweapon through the Force, making it part of you.

\n

You perform the ritual over the course of 1 hour, which can be done during a short rest. The weapon must be within your reach throughout the ritual, at the conclusion of which you touch the weapon and forge the bond, gaining the following benefits:

\n\n

You can have two weapons bonded to you in this way at a time, and you can summon both of them to you with the same bonus action.

\n

Twin Saber Throw

\n

At 7th level, when you cast saber throw while wielding your forceblade, you add half your forcecasting ability modifier (rounded down) to the damage rolls, and you can att-ack the same target multiple times. Additionally, when you make your Kinetic Combat attack, if you spent a force point to teleport to within 5 feet of the target, you make the attack roll with advantage.

\n

Disruptive Throw

\n

By 13th level, when you are the target of a ranged attack, you can use your reaction to throw your forceblade at the source of the attack. Make a ranged force attack. On a hit, this attack deals damage equal to your Kinetic Combat Damage Die and you impose disadvantage on the triggering attack roll.

\n

Forceblade Mastery

\n

At 18th level, you've mastered controlling your forceblade with your mind, using it to keep your enemies at bay. As an action, you can telekinetically control your forceblade and have it strike any number of creatures within 10 feet of you, spending 1 force point per target. Each target must make a Dexterity saving throw (DC = 8 + your proficiency bonus + your Wisdom or Charisma modifier + any bonuses to the weapon's attack rolls). On a failed save, it takes damage equal to your Kinetic Combat Damage Die + half your sentinel level (rounded down), is pushed back 10 feet and knocked prone.

\n

Additionally, when you do so, you can use your Kinetic Combat feature.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20the%20Forceblade.webp"} +{"_id":"4zUolY92dTrk3e5B","name":"Frenzied Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Frenzied Approach

\n

For some berserkers, rage is a means to an end—that end being violence. The Frenzied Approach is that of untrammeled fury, slick with blood. As you enter the berserker’s rage, you thrill in the chaos of battle, heedless of your own health or well-being.

\n

Frenzy

\n

When you choose this approach at 3rd level, you can go into a frenzy when you rage. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).

\n

When you finish a long rest, you reduce your exhaustion level by 2 rather than 1. Additionally, any effect that removes exhaustion reduces your exhaustion by 1 additional level.

\n

Maniacal Rage

\n

Also at 3rd level, while raging, when you make a Charisma (Intimidation) check, or a creature makes a Wisdom saving throw to avoid being frightened of you, you add your Strength modifier to the check or save DC, as appropriate.

\n

Mindless Rage

\n

At 6th level, you can’t be charmed or frightened while raging. If you are charmed or frightened when you enter your rage, the effect is suspended for the duration of the rage.

\n

Intimidating Presence

\n

Starting at 10th level, you can use your action to frighten someone with your menacing presence. When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On sub-sequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.

\n

If the creature succeeds on its saving throw, you can’t use this feature on that creature again for 24 hours.

\n

Retaliation

\n

At 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Frenzied%20Approach.webp"} +{"_id":"5ZfztAWnxh7mqTL7","name":"Crimson Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Crimson Order

\n

Monks of the Crimson Order are unyielding in their resolve. They pledge themselves to a singular entity or belief, and uphold their service with solemnity and diligence.

\n

Crimson Armaments

\n

Beginning when you choose this order at 3rd level, you've learned to perform your martial arts while armored. You gain proficiency in all armor, and you can now gain the benefits of your Martial Arts and Unarmored Movement features while wearing armor but not wielding a shield.

\n

Additionally, you've learned to adapt to new weaponry. Over the course of an hour, which can be performed during a short rest, you can perform a kata with a weapon of your choice. You gain proficiency in that weapon if you do not already have proficiency, and it becomes a monk weapon for you. You can only adapt to one weapon at a time, and if you attempt to adapt to another weapon you immediately lose your proficiency with the chosen weapon.

\n

Divert Strike

\n

Also at 3rd level, you can use your reaction to divert an attack when you or a friendly creature within 5 feet of you are hit by a melee weapon attack. When you do so, the damage taken by the attack is reduced by 1d10 + your Dexterity modifier + your monk level.

\n

Crimson Squall

\n

At 6th level, you've learned to enhance your kata. As a bonus action while wielding a monk weapon, you can expend 1 focus to cause the area within 5 feet of you to become difficult terrain for 1 minute. This area travels with you, and creatures within the area can not make opportunity attacks.

\n

At 11th level, the range of this area increases to 15 feet, and at 17th level, the range of this area increases to 30 feet.

\n

Vigilant Sentinel

\n

Starting at 11th level, when you attempt to perceive your surroundings on your turn, you can opt to not move on that turn. If you avoid moving, you gain a +10 bonus to your 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.

\n

Sovereign Protector

\n

At 17th level, your mastery of focus has allowed you to unlock your fullest potential in combat, tapping into a degree of the force. As a bonus action, you can gain the following effects for 1 minute.

\n\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Crimson%20Order.webp"} +{"_id":"6HRxOPMOmOiKmuIG","name":"Adept Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Adept Specialist

\n

Those fighters who choose to become Adept Specialists tap into a latent Force-sensitivity to augment their martial prowess, blending the two to accelerate their bodies and blows. An adept speeds across the battlefield, attacking opponents in a flurry of blows before dashing off again.

\n

Forcecasting

\n

When you choose this specialty at 3rd level, 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 4 force powers of your choice, and you learn more at higher levels, as shown in the Force Powers Known column of the Adept Specialist Forcecasting 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 fighter level, as shown in the Force Points column of the Adept Specialist Forcecasting 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 Adept Specialist Forcecasting table.

\n

You may only cast force powers at 4th-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

Growing Momentum

\n

Also at 3rd level, you can cast the burst of speed force power targeting yourself at 1st-level without expending force points. At 10th level, when you do so, your speed increases by an additional 10 feet. At 18th level, when you do so, your speed increases by an additional 10 feet.

\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 any expended uses when you finish a long rest.

\n

Whirling Weapons

\n

Beginning at 7th level, your constant blur of motion and attacks becomes an unending barrage as you build momentum. Once on your turn when you miss with a weapon attack you can make another weapon attack, no action required.

\n

Adept Specialist Forcecasting

\n

Focused Breathing

\n

At 10th level, you learn to recover some of your expended power quickly. When you use your Second Wind you also regain a number of force points equal to your Wisdom or Charisma modifier (your choice, a minimum of one).

\n

Unstoppable Force

\n

Starting at 15th level, you learn to completely ignore many of the most devastating impediments of combat. You can expend a use of Indomitable to gain the effect of the freedom of movement force power until the end of your next turn.

\n

Instant Acceleration

\n

At 18th level you reach the pinnacle of your training, moving faster than eyes or most sensors can track. When you use Action Surge feature, you can teleport up to 30 feet to an unoccupied space you can see. You can teleport before or after the additional action.

\n

The Adept Specialist

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelForce Powers KnownForce PointsMax Power Level
3rd431st
4th541st
5th651st
6th761st
7th872nd
8th982nd
9th1092nd
10th11102nd
11th12112nd
12th13122nd
13th14133rd
14th15143rd
15th16153rd
16th17163rd
17th18174th
18th18184th
19th19194th
20th19204th
"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Adept%20Specialist.webp"} +{"_id":"6JrXY2jDqQiuuUGq","name":"Way of Negation","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of Negation

\n

Some force users seek mastery over the fundamentals of energy manipulation, known as tutaminis. Those consulars who follow the Way of Negation harness this power to limit the havoc that other force-wielders might wreak.

\n

Force Deflection

\n

At 3rd level, when you fail a saving throw, you can use your reaction to gain a +4 bonus to that saving throw.

\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 short or long rest.

\n

Power Surge

\n

Starting at 6th level, you learn to simultaneously limit a creature's force powers and store that power within yourself to later strengthen your damaging force powers.

\n

You can store a maximum number of power surges equal to your Wisdom or Charisma modifier (your choice, minimum of one). Whenever you successfully end a force power with a power such as force suppression or sever force, or use your Force Shield or Force Deflection features to successfully avoid an attack or succeed on a saving throw, you gain one power surge, as you redirect the flow of the Force into yourself.

\n

Once per turn, when you deal damage to a creature or object with a force power, you can spend one power surge to deal extra damage to that target. The extra damage is of the same type as the power's damage, and it equals half your consular level (rounded down).

\n

Whenever you finish a long rest, your number of power surges resets to one. If you end a short rest with no power surges, you gain one power surge.

\n

Enduring Focus

\n

At 10th level, you can casually deflect attacks while channeling your power. While you are concentrating on a Force power, you have a +2 bonus to your AC and all saving throws.

\n

Additionally, you can extend your Force Deflection to a creature within 5 feet of you when they fail a saving throw.

\n

Conflux

\n

At 14th level, when you use your Force Deflection feature, you can cause a ripple in the Force to expand from you. Up to three creatures of your choice that you can see within 60 feet of you each take force damage equal to half your consular level.

\n

Tutaminis Mastery

\n

At 18th level, when you use a Force-Empowered Casting option, you can spend a power surge to use it without spending additional force points.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20Negation.webp"} +{"_id":"7OqolLOiiu5K59rD","name":"Blademaster Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Blademaster Specialist

\n

Those fighters who choose to become Blademaster Specialists hone their focus to a blade's edge, becoming so in tune with their arsenal that it becomes both their weapon and their armor.

\n

Unarmored Defense

\n

When you choose this specialty at 3rd level, while you are wearing no armor and not wielding a shield, your AC equals 10 + your Dexterity modifier + your Strength modifier.

\n

Adaptive Fighting

\n

Also at 3rd level, you've learned to make adaptations to your fighting style on the fly. You have three such effects: Change Up, Draw, and Stow. When you use your Adaptive Fighting, you choose which effect to create.

\n

You can use this features a number of times equal to your Strength or Dexterity modifier (your choice, a minimum of once). You regain all expended uses when you complete a short or long rest.

\n

Change Up

\n

You can use your object interaction and expend a use of your Adaptive Fighting to change the Fighting Style option granted to you by your fighter class feature. You can't take a Fighting Style option more than once.

\n

Draw

\n

When you use your object interaction to draw one or more weapons, you can expend a use of your Adaptive Fighting (no action required) to make your weapon attacks with the weapon(s) score a critical hit on a roll of 19 or 20 until the start of your next turn.

\n

Stow

\n

When you use your object interaction to stow a weapon, you can expend a use of your Adaptive Fighting (no action required) to take the Disengage action.

\n

Dervish

\n

Beginning at 7th level, when you score a critical hit with a melee weapon attack, you regain a use of your Adaptive Fighting, to a maximum of your Strength or Dexterity modifier (your choice, minimum of one).

\n

Resilient Fighting

\n

At 10th level, when you expend a use of your Adaptive Fighting, you gain resistance to energy and kinetic damage dealt by weapons until the start of your next turn.

\n

Adrenaline Rush

\n

Starting at 15th level, when you use your Action Surge feature, you can take an extra bonus action on top of the additional action.

\n

Bladestorm

\n

At 18th level, you can use your action to make a single melee weapon attack against each creature within your reach. Make a separate attack roll against each target. The first attack gains a +1 bonus to its attack roll, and each attack after the first gains an additional +1 bonus to its attack roll, cumulatively, to a maximum bonus of +6. If you are wielding two light- or vibro-weapons, or a weapon with the double property, you also add this bonus to your damage rolls, and you can use your bonus action to engage in Two-Weapon Fighting.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Blademaster%20Specialist.webp"} +{"_id":"9AQImD6JBpd9c1UK","name":"Path of the Corsair","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of the Corsair

\n

There may come a time when a sentinel finds themselves stranded, hunted, or in any situation where they must hide their nature as a force wielder. Those sentinels who follow the Path of the Corsair make use of alternative weaponry not commonly associated with force-wielders to great effect.

\n

Scavenger's Reach

\n

Starting when you choose this calling at 3rd level, you learn the force disarm force power. Additionally, you can use your Kinetic Combat feature when you cast it as your action. Finally, when you cast the force disarm power, disarm a blaster weapon, and catch it, you can reload the weapon as a part of the same action.

\n

Corsair Weapons

\n

Also at 3rd level, you can use the force to quickly learn the use of unfamiliar weapons. When you hold a weapon that you are not proficient in, you can spend 1 force point (no action required) to gain proficiency with that weapon until the end of your next long rest. If that weapon is a blaster, you can use it to make Kinetic Combat attacks as long as the target of the attack is within the weapon's normal range.

\n

Additionally, when you throw a grenade, you can use Wisdom or Charisma instead of Strength when determining your throwing range.

\n

Force-Empowered Detonators

\n

At 7th level, you learn to infuse a number of small detonators with the Force. Over the course of a short or long rest, you can create a number of detonators equal to your Wisdom or Charisma modifier (your choice, minimum of one). Your detonators can only be used by you, and they lose their potency at the end of your next short or long rest.

\n

As a bonus action on each of your turns, you can throw one of your detonators at a point within range. Your detonators have a range equal to 30 feet + your Wisdom or Charisma modifier x 5. Make a universal ranged force attack. On a hit, the detonator adheres to the target, and if the target is a Large or smaller creature, it is pushed back 5 feet. On a miss, it falls to the ground. Hit or miss, the detonator then explodes. The target and each creature within 5 feet must make a Dexterity saving throw against your universal force save DC. If the detonator adhered to a target, the creature has disadvantage on the saving throw. A creature takes force damage equal to your Kinetic Combat Damage Die + your Wisdom or Charisma modifier (your choice) on a failed save, or half as much on a successful one.

\n

Energized Kinetics

\n

By 13th level, once per turn, when you deal damage with a Force-Empowered Detonator or your Double Strike feature, you can deal additional damage equal to your Kinetic Combat Damage Die. The damage type is force, lightning, necrotic, or psychic (your choice).

\n

Disorienting Detonations

\n

At 18th level, when a creature fails the saving throw against your Force-Empowered Detonators feature, you can spend 2 force points to subject it to the effects of one of the following force powers: affliction, force blind/deafen, stun, or stun droid. They automatically fail the saving throw for the selected power, but the effects only last until the end of your next turn.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20the%20Corsair.webp"} +{"_id":"9Hva27QHj2ruQXTA","name":"Form IV: Ataru","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form IV: Ataru

\n

Form IV, also know as Aggression Form, is a kinetically active form that relies on speed, acrobatics, and power. Those guardians who focus on Ataru Form utilize high energy tactics to confuse and distract their opponents, quickly moving about the battlefield.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Great Weapon Fighting, Two-Weapon Fighting, or Versatile Fighting 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

The Way of the Hawk-Bat

\n

Also at 3rd level, as a bonus action, you you can take an aggressive stance, leaping around the battlefield for 1 minute. As a part of this bonus action, and as a bonus action on each of your turns, you can cast the force jump power at 1st-level without expending force points. Additionally, when you cast force jump, you have advantage on the first attack roll you make against each creature within 5 feet of where you land.

\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain the following Channel the Force option.

\n

Retreating Leap

\n

When a creature makes a melee attack roll against you, you can expend a use of your Channel the Force and your reaction to jump 10 feet in a direction of your choice, imposing disadvantage on the roll. This movement does not provoke opportunity attacks. You can wait until after the attack roll is made, but before the DM determines whether the attack hits.

\n

Hawk-Bat Swoop

\n

At 7th level, you gain the ability to move along vertical surfaces without falIing during the move. If you end your turn in the air, you fall immediately to the ground.

\n

Additionally, you no longer take damage when falling from a distance no greater than your walking speed.

\n

Whirlwind Attack

\n

At 15th level, you can use your action to make melee attacks against any number of creatures within 5 feet of you, with a separate attack roll for each target.

\n

Master of Aggression

\n

At 20th level, your presence on the field of battle is as a graceful blur of deadly blades and daring acrobatics. Your Dexterity and Wisdom or Charisma scores (your choice) increase by 2. Your maximum for those scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Ataru%20Form.webp"} +{"_id":"A3MyNIRoyvE9fP64","name":"Ruffian Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Ruffian Practice

\n

Those operatives who choose the Ruffian Practice use rough-and-tumble tactics to handle any fight, big or small. They incite chaos and make devious moves that keep their enemies reeling.

\n

Rakish Audacity

\n

When you choose this practice at 3rd level, your unmistakable confidence propels you into battle. You can add your Charisma modifier to your initiative rolls.

\n

Additionally, you don't need advantage on your attack roll to use your Sneak Attack if no creature other than your target is within 5 feet of you, as long as the target of the attack is within 5 feet of you. All the other rules for the Sneak Attack class feature still apply to you.

\n

Finally, during your turn, if you make a melee attack against a creature, that creature can't make opportunity attacks against you for the rest of your turn.

\n

Nimble Step

\n

Also at 3rd level, you learn to fluidly strike and maneuver through combat. When you deal Sneak Attack damage to a creature, you may choose to forgo two of your Sneak Attack Dice in order to maneuver across the battlefield.

\n

Some of your fancy footworks require your target to make a saving throw to resist the debilitating strike's effects. The saving throw DC is calculated as follows:

\n

Nimble Step save DC = 8 + your proficiency bonus + your Dexterity modifier.

\n

Blade Defense

\n

You attempt to determine your target's next strike. Roll two Sneak Attack dice, and the target must make a Charisma saving throw. On a failed save, your AC increases by the higher amount rolled on the dice against the first attack it makes against you before the start of your next turn. On a successful save, your AC instead increases by the lower amount.

\n

Disarming Strike

\n

You attempt to disarm a creature with your attack. The target must succeed on a Strength saving throw or be forced to drop one item of your choice that it's holding. If you have a free hand, you can catch the item. Otherwise, it lands at your feet.

\n

Fancy Footwork

\n

Roll two Sneak Attack dice. Your speed increases by 5 x the greater result of the two dice, and you ignore difficult terrain until the end of your current turn.

\n

Panache

\n

Beginning at 9th level, your charm becomes extraordinarily beguiling. As an action, you can make a Charisma (Persuasion) check contested by a creature's Wisdom (Insight) check. The creature must be able to hear you, and the two of you must share a language.

\n

If you succeed on the check and the creature is hostile to you, it has disadvantage on attack rolls against targets other than you and can't make opportunity attacks against targets other than you. This effect lasts for 1 minute, until one of your companions attacks the target or affects it with a power, or until you and the target are more than 60 feet apart.

\n

If you succeed on the check and the creature isn't hostile to you, it is charmed by you for 1 minute. While charmed, it regards you as a friendly acquaintance. This effect ends immediately if you or your companions do anything harmful to it.

\n

Elegant Maneuver

\n

Starting at 13th level, you can use a bonus action on your turn to gain advantage on the next Dexterity (Acrobatics) or Strength (Athletics) check you make during the same turn.

\n

Master Duelist

\n

At 17th level, your mastery of the blade lets you turn failure into success in combat. If you miss with an attack roll, you can roll it again with advantage. Once you do so, you can't use this feature again until you finish a short or long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Ruffian%20Practice.webp"} +{"_id":"BEMJgPn6JKghk2zh","name":"Inquisitor Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Inquisitor Technique

\n

Across history, there have been those who live to hunt those who wield the Force, be they Jedi or Sith. Followers of the Inquisitor Technique combine technology with force techniques to track down and eliminate force-wielders. For those practitioners of the Force, they are the greatest adversary.

\n

Whispers of the Force

\n

When you choose this technique at 3rd level, you have learned secrets from a subtle attunement to the force. Choose two force powers of no higher level than your Max Power Level, as shown in the scout class table. The chosen powers count as tech powers for you, but are not included in the number in the Powers Known column of the scout class table.

\n

You learn two additional powers at 5th, 9th, and 13th level. Whenever you gain a level in this class, you can choose one of the force powers you know and replace it with another force power of no higher level than your Max Power Level.

\n

Mark of the Inquisitor

\n

Also at 3rd level, when the target of your Ranger's Quarry feature is within 15 feet of you, you gain the following benefits:

\n\n

At 11th level, the radius of this feature increases to 30 feet.

\n

Sense Force

\n

Beginning at 7th level, you can use your action to gain the benefits of the force sight force power until the end of your next turn.

\n

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

\n

Force Resistance

\n

Starting at 11th level, while the target of your Ranger's Quarry feature is within 30 feet of you, you gain the following benefits:

\n\n

Inquisitor's Wrath

\n

At 15th level, you can cast the force suppression and sever force force powers at 3rd level against the target of your Ranger's Quarry without expending tech points. If they are within 30 feet of you, you have advantage on the forcecasting ability check for these powers.

\n

You can use this feature a number of times equal to 1 + your Intelligence modifier (a minimum of once). You regain all expended uses when you finish a long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster, Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Inquisitor%20Technique.webp"} +{"_id":"BtUr8K0noVfAE11J","name":"Path of Tenacity","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of Tenacity

\n

The tenacious are ever mindful that the Force ebbs and flows and use this knowledge to great advantage. Those sentinels who follow the Path of Tenacity use their connection to the Force to draw the opposition's attention while also warding off their attacks, serving as an effective bulwark against even the most implacable of foes.

\n

Protector

\n

Starting when you choose this calling at 3rd level, you learn the saber ward force power. Additionally, you can use your Kinetic Combat feature when you cast it as your action. Finally, when you cast it, you can spend 2 force points to extend the benefits to creatures of your choice within 5 feet of you while the power is active. The creatures immediately lose this benefit if they move more than 5 feet away from you.

\n

Kinetic Ward

\n

Also at 3rd level, you can use your reaction to deflect a strike when you are hit by a melee weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your sentinel level.

\n

If you reduce the damage to 0, you can redirect it at another target if you have a weapon capable of doing so. You can spend 1 force point to make a melee weapon attack at a target within 5 feet of you with the weapon, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and if the attack hits it uses your Kinetic Combat die for its damage roll. If saber ward is active, you have advantage on the attack roll.

\n

Kinetic Bulwark

\n

At 7th level, you can extend your Kinetic Ward to a creature within 5 feet of you when they are hit by a melee weapon attack. If this damage is not reduced to 0, the warded creature takes any remaining damage.

\n

Indomitable

\n

By 13th level, the Force flowing through you makes it harder for movement to be forced upon you. You have advantage on ability checks and saving throws to avoid being grappled or moved. If you fail the saving throw or ability check, you can spend 1 force point to reroll one of the dice once. You must use the new roll.

\n

Additionally, if allies within 5 feet of you are gaining the benefit of your saber ward force power, they also gain the benefit of this feature.

\n

Kinetic Bastion

\n

At 18th level, you can protect allies even further from you. When a creature within 30 feet of you is hit by a melee weapon attack, you can use your reaction to teleport to them and extend your Kinetic Ward. If this damage is not reduced to 0, the warded creature takes any remaining damage.

\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.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20Tenacity.webp"} +{"_id":"ECxUMB1p8nu6WAGL","name":"Form III: Soresu","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form III: Soresu

\n

Form III, also known as Resilience Form, relies on tight bladework and subtle dodges to provide maximum defensive coverage, minimizing exposure to ranged weaponry. Those guardians who focus on Soresu Form use broad footwork to move around the playing field, making broad, short sweeping motions that protect the body.

\n

Bonus Proficiencies

\n

You gain proficiency in heavy armor.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Defense, Shielding, or Sentinel 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

The Way of the Mynock

\n

Also at 3rd level, as a bonus action, you can enter a defensive stance for one minute. As a part of this bonus action, and as a bonus action on each of your turns, you can cast the saber ward power. When you do so, you have a number of special reactions equal to your proficiency bonus that you can only use to cast the saber reflect force power. You can only take one reaction per turn.

\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain the following Channel the Force option.

\n

Advancing Defender

\n

When you cast the saber reflect power, you can expend a use of your Channel the Force to move up to 10 feet as a part of that same reaction. This movement does not provoke opportunity attacks.

\n

Circle of Shelter

\n

At 7th level, you learn to fend off strikes directed at you, your mount, or other creatures nearby. If you or a creature you can see within 5 feet of you is hit by an attack, you can use your reaction to ward the creature if you're wielding a melee weapon or a shield. Roll 1d8 and add the number rolled to the target's AC against that attack. If the attack still hits, the target has resistance against the attack's damage.

\n

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

\n

Stand Against the Tide

\n

Beginning at 15th level, when a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.

\n

Master of Resilience

\n

At 20th level, your presence on the field of battle is an inspiration to your allies. Your Constitution and Wisdom or Charisma scores (your choice) increase by 2. Your maximum for those scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Soresu%20Form.webp"} +{"_id":"EEBl6B5YPcztiGRm","name":"Slayer Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Slayer Technique

\n

Some scouts seek to learn the most about their foes and to capitalize on that knowledge. Follower of the Slayer Technique focus on identifying the strengths and weaknesses of their prey, taking advantage of that knowledge to vanquish their foes.

\n

Bonus Proficiencies

\n

You gain proficiency in heavy armor.

\n

Slayer's Pride

\n

When you choose this technique at 3rd level, you have advantage on saving throws against being frightened.

\n

Mark of the Slayer

\n

Also at 3rd level, you immediately learn if the target of your Ranger's Quarry feature has any damage immunities, resistances, or vulnerabilities and what they are. Additionally, the first time you hit the target of your Ranger's Quarry feature with a weapon attack each turn, it takes extra damage equal to your Ranger's Quarry Damage Die. The damage is of the same type as the weapon's damage.

\n

Supernatural Defense

\n

Beginning at 7th level, whenever the target of your Ranger's Quarry forces you to make a saving throw, or whenever you make an ability check to escape that targets grapple, you can use your reaction and roll your Ranger's Quarry Damage Die, adding it to the roll.

\n

Nemesis

\n

Starting at 11th level, when you score a critical hit or reduce a creature to 0 hit points on your turn, you can use your bonus action to force one creature of your choice that you can see within 30 feet of you to make a Wisdom saving throw against your tech save DC. On a failed save, a creature becomes frightened of you for 1 minute. At the end of each of the creature's turns it repeats this saving throw, ending the effect on a success.

\n

Slayer's Counter

\n

At 15th level, if the target of your Ranger's Quarry feature forces you to make a saving throw, you can use your reaction to make one weapon attack against it. You make this attack immediately before making the saving throw. If your attack hits, you automatically succeed on the saving throw, in addition to the attack's normal effects.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Slayer%20Technique.webp"} +{"_id":"EOnRnPaACPP1vRTQ","name":"Mastermind Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Mastermind Technique

\n

Preparation, preparation, preparation. Some scouts are serious students of battle and any creatures they might encounter. Followers of the Mastermind Technique focus on being prepared for any eventuality, and using their breadth of knowledge to gain insights into their enemies.

\n

Instinctive Combatant

\n

When you choose this technique at 3rd level, you have learned to use your wits to help you survive. While you are wearing light or medium armor, you can use your Intelligence modifier instead of your Dexterity modifier when determining your AC.

\n

Mark of the Meticulous

\n

Also at 3rd level, you can use Intelligence instead of Dexterity for the attack and damage rolls made with weapons with the finesse property or blaster weapons against the target of your Ranger's Quarry.

\n

Additionally, once per round, when you hit the target of your Ranger's Quarry with a tech attack, or it fails a saving throw against a tech power you cast that deals damage, you can deal additional damage equal to your Ranger's Quarry damage die of the same type as the tech power's damage.

\n

Adaptive Techie

\n

Beginning at 7th level, when you complete a long rest, you can choose up to a number of tech powers you know equal to half your Intelligence modifier (rounded down) and replace them with another tech power, as long as that power is not of a higher level than your Max Power Level.

\n

Emergency Planning

\n

Starting at 11th level, you've learned to formulate and execute a plan. As an action, you can choose up to six creatures (including yourself) that you can see within 60 feet of you. For each creature, choose one of the following: ability check, attack roll, or saving throw. Each creature gains an Emergency Planning die, which is a d8.

\n

Once within the next 10 minutes, each creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw, as determined when you use this feature. The creature can wait until after it rolls the d20 before deciding to use the Emergency Planning die, but must decide before the GM says whether the roll succeeds or fails. Once the Emergency Planning die is rolled, it is lost.

\n

A creature can have only one Emergency Planning die at a time.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Your Emergency Planning die changes when you reach certain levels in this class. to 1d10 at 13th level, and to 1d12 at 17th level.

\n

Exploit Weakness

\n

At 15th level, your training has taught you to find and exploit weaknesses in your prey. As a bonus action, you can impose disadvantage on the next saving throw the target of your Ranger's Quarry makes against an effect you control before the end of your next turn. Once you've done so, you must complete a short or long rest before you can do so again.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Mastermind%20Technique.webp"} +{"_id":"EipqN28Px01dBfmH","name":"Stalker Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Stalker Technique

\n

Some Scouts become consumed by the thrill of the hunt. Only heard and never seen they revel in the violence of battle. Followers of the Stalker Technique hone their abilities to track others utilizing a variety of techniques: camouflage, infiltration, surveillance, and target acquisition.

\n

Accomplished Ambusher

\n

When you choose this technique at 3rd level, when you take the Attack action against a creature that is surprised, you can make one additional attack against that creature as a part of that action.

\n

Mark of the Stalker

\n

Also at 3rd level, while you are hidden from the target of your Ranger's Quarry feature, the first attack roll you make each round against that creature does not automatically reveal your presence to that creature. Make a Dexterity (Stealth) check contested by your target's Wisdom (Perception) check. On a success, you remain hidden. If you are less than 30 feet from your target, the Dexterity (Stealth) check is made with disadvantage.

\n

Concealment

\n

Beginning at 7th level, you've become adept at evading creatures that rely on darkvision. While in darkness, you are invisible to any creature that relies on darkvision to see you in that darkness.

\n

Additionally, when you hit a creature with a ranged weapon attack while hidden, you can force that creature to make a Dexterity saving throw against your tech save DC. On a failed save, the creature's speed is reduced to 0 until the end of your next turn. You can use this feature a number of times equal to your Intelligence modifier (minimum of one). You regain all expended uses when you finish a short or long rest.

\n

Stalker's Flurry

\n

Starting at 11th level, if you have advantage on a weapon attack against a target on your turn, you can forgo that advantage to immediately make an additional weapon attack against the same target as a bonus action.

\n

Stalker's Dodge

\n

At 15th level, whenever a creature attacks you and does not have advantage, you can use your reaction to impose disadvantage on the creature's attack roll against you. You can use this feature before or after the attack roll is made, but it must be used before the outcome of the roll is determined.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Stalker%20Technique.webp"} +{"_id":"F3eJbFw1kKde9Zg9","name":"Artificer Engineering","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Engineer","description":{"value":"

Artificer Engineering

Those engineers who choose the Artificer Engineering discipline focus on building and modifying lightsabers, while tapping into the latent presence of the Force in these lightsaber crystals.

Bonus Proficiencies

When you choose this discipline at 3rd level, you gain proficiency in artificer's tools, and with the lightsaber simple lightweapon. Additionally, when you engage in crafting with artificer's tools, the rate at which you craft doubles.

Modified Lightsaber

Also at 3rd level, you learn to modify an unenhanced lightsaber utilizing your artificer knowledge. Over the course of a long rest, you can expend materials equal to half the cost of the lightsaber in order to modify it. You must have the lightsaber, materials, and artificer's tools in order to perform this modification.

Your modified lightsaber is enhanced, requires attunement, can only be used by you, and counts as a tech focus for your tech powers while you are attuned to it. Your modified lightsaber has 4 modification slots, and it gains more at higher levels, as shown in the Modification Slots column of the engineer class table. For each modification installed, your tech point maximum is reduced by 1. Over the course of a long rest, you can replace or remove a number of modifications up to your Intelligence modifier (minimum of one).

Some modification effects require saving throws. When you use such an effect from this class, the DC equals your tech save DC.

At 9th level, you can maintain two different modified lightsabers. The total modification slots are split across the two items.

Force Resonance

Lastly at 3rd level, once per round, when you hit a creature with your modified lightsaber, you can expend one use of your Potent Aptitude to deal an extra 2d6 damage to that target. The damage is the same type as your modified lightsaber's damage.

The damage increases when you reach certain levels in this class, increasing to 3d6 at 5th level, 5d6 at 11th level, and 8d6 at 17th level.

Kyber Knowledge

Beginning at 6th level, your study of kyber crystals has awakened a latent force sensitivity. Choose two force powers of 1st level. The chosen powers count as tech powers for you, but are not included in the number in the Powers Known column of the engineer class table.

At 10th level, you learn two additional force powers of 1st or 2nd level. At 14th level, you learn two force powers of 1st-3rd level, and at 18th level, you learn two force powers of 1st-4th level. Whenever you gain a level in this class, you can choose one of the force powers you know and replace it with another force power of the same level.

Disruptive Resonance

At 14th level, when you hit a creature that is concentrating on a power with your modified lightsaber, the creature has disadvantage on the Constitution saving throw to maintain concentration. Additionally, on a failed save, the creature immediately takes psychic damage equal to your engineer level + your Intelligence modifier.

Resonating Recovery

Starting at 18th level, once per turn, when you reduce a hostile creature to 0 hit points, you regain a use of your Potent Aptitude. Your number of Potent Aptitude uses can not exceed your Intelligence modifier.

Artificer Modifications

If a modification has prerequisites, you must meet them to install it. You can install the modification at the same time that you meet its prerequisites.

Additonal Beam Port

You install a second beam port into your modified lightsaber. Your modified lightsaber gains the double (1d8) property. You can only benefit from this property while wielding your modified lightsaber with two hands.

Adegan Crystal

Prerequisite: 5th level You gain a +1 bonus to damage rolls made with this weapon. This bonus increases to +2 at 11th level and +3 at 17th level.

Advanced Blastsaber

Prerequisite: 15th level Prerequisite: Prototype Blastsaber You further fine tune your blastsaber. As an action, you can disable a single electronic device not being worn or held by another creature within 5 feet of you. The device is then disabled until it is rebooted.

Additionally, when you activate this conversion to alter the properties of your lightweapon, you create a projected barrier of ion energy in a 10-foot-radius sphere around you until the start of your next turn. Hostile creatures treat this area as difficult terrain. When a hostile creature enters the shielded area or starts its turn there, that creature takes 3d4 ion damage. Any electronics not being worn or held within the barrier's radius are disabled until rebooted.

Advanced Brightsaber

Prerequisite: 15th level Prerequisite: Prototype Brightsaber You further fine tune your brightsaber. While activated, your modified lightsaber's bright light now automatically dispels illusions and can detect invisibility, as with truesight.

Additionally, when you activate this conversion to alter the properties of your lightweapon and use a bonus action to attempt to blind your target, it makes the saving throw with disadvantage.

Advanced Disruptorsaber

Prerequisite: 15th level Prerequisite: Prototype Disruptorsaber You further fine tune your disruptorsaber. While activated, your modified lightsaber lightly obscures the area within 5 feet of it.

Additionally, when you activate this conversion to alter the properties of your lightweapon and use a bonus action to attempt to knock your target prone, the next saving throw you make before the end of your next turn has advantage.

Barrier

Prerequisite: 5th level On your turn, when you make an attack roll with your modified lightsaber, you can choose to forgo your proficiency bonus. If you do, you can use your reaction to erect a temporary barrier that lasts until the start of your next turn. While the barrier is activated, you have a bonus to AC against the first attack roll made against you equal to your proficiency bonus.

Beam Gem Lens

Prerequisite: 5th level You gain a +1 bonus to attack rolls made with this weapon. This bonus increases to +2 at 11th level and +3 at 17th level.

Biometric Safety Measures

A security system is installed into the hilt of your lightweapon. When a creature other than you attempts to activate your lightweapon, the activation fails. Additionally, the creature attempting to activate must make on a Constitution saving throw or take lightning damage equal to engineer level, and become shocked until the start of its next turn. On a successful save the creature takes half damage and is not shocked. Regardless of success or failure, the creature drops your modified lightsaber.

Blastsaber Conversion

Incompatible with other conversions You heavily modify your lightweapon to allow you to make a ranged weapon attack. With this modification, you can make a ranged weapon attack with a range of 30/60. On a hit, it deals 1d6 energy damage.

Additionally, when you make your first attack on your turn, you can alter the properties of your modified lightsaber. Until the start of your next turn, the damage type of your modified lightsaber is changed to ion.

You can use this trait a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Brightsaber Conversion

Incompatible with other conversions You modify your lightweapon, giving it a brigher glow. While activated, your modified lightsaber sheds bright light in a 20-foot radius and dim light for an additional 20 feet.

Additionally, when you make your first attack on your turn, you can alter the properties of your modified lightsaber. Until the start of your next turn, the damage type of your modified lightsaber is changed to fire.

You can use this trait a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Burn Through

When you score a critical hit with your modified lightsaber, you have advantage on the next attack roll you make against that creature.

Comfortable Handle

You make minor modifications to the ergonomics of your modified saber's hilt. Your modified lightsaber gains the finesse property.

Crossguard

You add an energy guard at the base of your modified lightsaber's blade. While wielding your modified lightsaber, you gain a +1 bonus to your armor class against melee weapon attacks.

Disruptorsaber Conversion

Incompatible with other conversions You modify your lightweapon, causing it to eminate a sickly green light. Your modified lightsaber loses the luminous property.

Additionally, when you make your first attack on your turn, you can alter the properties of your modified lightsaber. Until the start of your next turn, the damage type of your modified lightsaber is changed to acid.

You can use this trait a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Extended Beam

You install a series of beam focusing amplifiers into your modified lightsaber. Your modified lightsaber gains the reach property.

Greatsaber Array

You augment the configuration of your modified lightsaber. Your modified lightsaber gains the two-handed property, and it's damage die increases to 1d12.

Intense Beam

Prerequisite: 11th level Prerequisite: Burn Through Your modified lightsaber now scores a critical hit on a roll of 19 or 20.

Magnetic-Lock Grip

You insert a series of magnetically charged grips into your modified lightsaber's hilt. While wielding your modified lightsaber, you have advantage on ability checks and saving throws made to disarm or avoid being disarmed.

Prototype Blastsaber

Prerequisite: 7th level Prerequisite: Blastsaber Conversion You fine tune your blastsaber. When you activate this conversion to alter the properties of your lightweapon, you can use your bonus action to cause your modified lightsaber to let loose a burst of energy. Creatures other than yourself within 5 feet of the target creature must succeed on a Dexterity saving throw. On a failed save, they take ion damage equal to your Intelligence modifier.

Prototype Brightsaber

Prerequisite: 7th level Prerequisite: Brightsaber Conversion You fine tune your brightsaber. When you activate this conversion to alter the properties of your lightweapon, you can use your bonus action to attempt to blind the target of the attack. The creature must succeed on a Constitution saving throw or be blinded.

Prototype Disruptorsaber

Prerequisite: 7th level Prerequisite: Disruptorsaber Conversion You fine tune your disruptorsaber. When you activate this conversion to alter the properties of your lightweapon, you can use your bonus action to attempt to knock the target of your attack prone. The creature must make a Strength saving throw or be knocked prone.

Returning Weapon

You install a retractible chain in the hilt of your modified lightsaber. Your modified lightsaber gains the thrown property with a range of 20/60, and when you throw the weapon, it immediately returns to your hand.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster, Tech-caster"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.toolProf.value","value":"arti","mode":"+","targetSpecific":false,"id":1,"itemId":"F3eJbFw1kKde9Zg9","active":false,"_targets":[],"label":"Traits Tool Prof"},{"modSpecKey":"data.traits.weaponProf.custom","value":"simple lightsabers","mode":"+","targetSpecific":false,"id":2,"itemId":"F3eJbFw1kKde9Zg9","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Archetypes/Artificer%20Engineering.webp"} +{"_id":"FLN1Vqb53UECBMVu","name":"Way of the Sage","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of the Sage

\n

The rejuvenating power of the Force is incredible, and the consular is the master of this usage. Those consulars who follow the Way of the Sage assist with an array of healing powers that grant allies the strength to continue through even the harshest of encounters. Separated from the heart of the fray, the sage can be an unfailing warden to those in need.

\n

Disciple of Life

\n

When you choose this tradition at 3rd level, when you cast a force power that restores hit points, you can use Wisdom or Charisma as your forcecasting ability for it.

\n

Additionally, whenever you use a power of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the power's level.

\n

Preserve Life

\n

At 6th level, as an action, you can channel the Force and evoke healing energy that restores a number of hit points equal to five times your consular level. Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. This feature has no effect on droids or constructs.

\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

Blessed Healer

\n

Beginning at 10th level, the healing powers you cast on others heal you as well. When you cast a force power that restores hit points to a creature other than you, you regain hit points equal to 2 + the power's level.

\n

Blessed by the Force

\n

At 14th level you gain the ability to overcome grievous injuries. As a bonus action when you have fewer than half of your hit points remaining, you can regain a number of hit points equal to half your hit point maximum.

\n

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

\n

Supreme Healing

\n

Starting at 18th level, when you would normally roll one or more dice to restore hit points with a power, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20the%20Sage.webp"} +{"_id":"Fo2ZNwCWXfWuDJji","name":"Marauder Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Marauder Approach

\n

Few things are more terrifying than being in the path of a Berserker who has learned the ways of the Force. Those who follow this path unlock something deep within them, a well of untamed power from the depths of their fury. When a marauder unleashes their rage, they channel their brute strength into primal might, and uses it to devastate his foes in a hail of fire, blades, and blood. Due to the uncontrolled nature of their powers, marauders have a dangerous predilection for the strength and raw power offered by the dark side, and many fall into it’s clutches. Even those who do not are always temped by the voices of fury barely contained within.

\n

Forcecasting

\n

When you choose this approach at 3rd level, you have derived powers from your primal connection to the Force. See chapter 10 for the general rules of forcecasting and chapter 11 for the force powers list.

\n

Force Powers Known

\n

You learn 4 force powers of your choice, and you learn more at higher levels, as shown in the Force Powers Known column of the Marauder Approach Forcecasting 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 berserker level, as shown in the Force Points column of the Marauder Approach Forcecasting 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 Marauder Approach Forcecasting table.

\n

You may only cast force powers at 4th-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
\n

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

\n
\n

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

\n
\n

Furious Force

\n

Also at 3rd level, you can cast force powers while raging as long as the power’s casting time is no more than 1 action, the power does not require concentration, and you are not wearing heavy armor or wielding a medium or heavy shield. While raging, you add your rage damage to damage rolls from force powers you cast. If a force power damages more than one target, you may only apply your rage damage to one of the targets.

\n

Casting force powers during rage counts as attacking for the purposes of maintaining rage, and you can use your Reckless Attack feature to gain advantage when casting a force power that requires an attack roll.

\n
Marauder Approach Forcecasting
\n

Reckless Power

\n

At 6th level, weapons and the force are equally an extension of your rage. While you are raging and you use your action to cast a force power, you can make a single melee weapon attack as a bonus action.

\n

Powerful Presence

\n

Starting at 10th level, as a bonus action, you unleash a battle cry infused with force energy. Choose up to ten other creatures of within 60 feet of you that can hear you. Friendly creatures have advantage on attack rolls and saving throws until the start of your next turn, and hostile creatures have disadvantage on attack rolls and saving throws until the end of your next turn.

\n

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

\n

Force Storm

\n

At 14th level, you can expel the might of your rage all at once to unleash a devastating storm of force energy. As an action, you can end your rage early, forcing each creature within 15 feet of you to make a Dexterity saving throw against your universal force save DC. On a failed save, a creature takes 1d12 force damage for each round you’ve spent in rage, or half as much on a successful one.

\n

The Marauder Approach

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelForce Powers KnownForce PointsMax Power Level
3rd431st
4th541st
5th651st
6th761st
7th872nd
8th982nd
9th1092nd
10th11102nd
11th12112nd
12th13122nd
13th14133rd
14th15143rd
15th16153rd
16th17163rd
17th18174th
18th18184th
19th19194th
20th19204th
"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Marauder%20Approach.webp"} +{"_id":"G1F7NBAvLma5Aot4","name":"Lethality Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Lethality Practice

\n

Those operatives who choose the Lethality Practice use disguises to get close to their enemies, then leverage the toxic power of poisons to debilitate them and capitalize on their weaknesses.

\n

Bonus Proficiencies

\n

When you choose this practice at 3rd level, you gain proficiency with the disguise kit and the poisoner's kit.

\n

Assassinate

\n

Also at 3rd level, you are at your deadliest when you get the drop on your enemies. You have advantage on attack rolls against any creature that hasn't taken a turn in the combat yet. Additionally, any hit you score against a creature that is surprised is a critical hit.

\n

Lethal Strikes

\n

Lastly at 3rd level, you learn how to read your foes and strikes their weak points. When you deal Sneak Attack damage to a creature, you may choose to forgo two of your Sneak Attack dice to make the attack a lethal strike.

\n

Some of your lethal strikes require your target to mak ea saving throw to resist the lethal strike's effects. The saving throw DC is calculated as follows:

\n

Lethal Strike save DC = 8 + your proficiency bonus + your Dexterity modifier

\n

Priming Attack

\n

You attempt to prime the target. The target must make a Dexterity, Constitution, or Wisdom saving throw (your choice). On a failed save, the next time you deal Sneak Attack damage against the target before the end of your next turn, you roll four additional Sneak Attack dice.

\n

Target Assessment

\n

You attempt to infer crucial details about your foe. The creature must make a Charisma saving throw. On a failed save, the GM tells you two of the following characteristics of your choice:

\n\n

Vulnerable Strike

\n

You attempt to stagger the target. The target must make a Wisdom saving throw. On a failed save, the next time you would make an attack roll against the target before the end of your next turn, you can instead force the target to make a saving throw with the ability score of your choice. On a failed save, the creature takes normal weapon damage and you can apply your Sneak Attack dice to the roll.

\n

Poisoner

\n

Beginning at 9th level, you are a master of poisons. You can apply a poison as a bonus action, and you have advantage on Dexterity (Sleight of Hand) checks made to conceal the application of poisons.

\n

Additionally, you can improve the capability of one dose of poison. To use this benefit, you must have a poisoner's kit, and the poison must be within reach. If the poison is applied before the end of your next short or long rest, the target has disadvantage on the saving throw made to resist your poison. Once you've used this feature, you must complete a long rest before you can use it again.

\n

Impostor

\n

Starting at 13th level, you gain the ability to unerringly mimic another person's speech, writing, and behavior. You must spend at least 1 minute studying these three components of the person's behavior: listening to speech, examining handwriting, and observing mannerisms. If you can only study some of these aspects (such as only having writing samples, or only audio recordings), you can mimic that aspect of the person, but not other aspects you have not studied.

\n

Your ruse is indiscernible to the casual observer. If a wary creature suspects something is amiss, you have advantage on any Charisma (Deception) check you make to avoid detection.

\n

Death Strike

\n

At 17th level, you become a master of instant death. When you deal weapon damage to a creature that is surprised, it must make a Constitution saving throw against your lethal strike save DC. On a failed save, double the damage of your attack against the creature.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Lethality%20Practice.webp"} +{"_id":"HAbjFjbdRHO3mBss","name":"Gunslinger Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Gunslinger Practice

\n

Those operatives who choose the Gunslinger Practice are the masters of the trick shot. The Gunslinger and his blaster are the perfect team, utilizing knowledge of their enemies vulnerabilities to take advantage of every opportunity.

\n

Dive For Cover

\n

When you choose this practice at 3rd level, you learn to quickly move into cover when under fire. Once per round, when you are the target of a ranged attack, or you are subjected to an effect that allows you to make a Dexterity saving throw, and there is cover within 10 feet of you, you can move up to 10 feet (no action required). You must end this movement in cover.

\n

You can use this feature a number of times equal to your Dexterity modifier (a minimum of once). You regain all expended uses when you complete a long rest.

\n

Trick Shooter

\n

Also at 3rd level, you learn a number of trick shots you can use to debilitate enemies and impress allies. When you deal Sneak Attack damage to a creature, you may choose to forgo two of your Sneak Attack dice to make the attack a trick shot.

\n

Some of your trick shots require your target to make a saving throw to resist the trick shot's effects. The saving throw DC is calculated as follows:

\n

Trick Shot save DC = 8 + your proficiency bonus + your Dexterity modifier

\n

Blinding Shot

\n

You attempt to blind the target. The target must make a Constitution saving throw or be blinded until the end of your next turn.

\n

Brutal Shot

\n

You attempt to knock the target prone. The target must make a Strength saving throw or be knocked prone.

\n

Hampering Shot

\n

You attempt to hobble the enemy's movement. The target must make a Dexterity saving throw. If it fails, its movement speed is reduced by half and it makes Dexterity saving throws with disadvantage until the end of its next turn.

\n

Spinning Flourish

\n

Beginning at 9th level you can flourish your weapon in an intimidating or charming manner. As an action, you can cause one creature within 60 feet to make a Wisdom saving throw (DC = 8 + your proficiency bonus + your Dexterity modifier). On a failed save, the target is charmed or frightened by you (your choice) until the end of your next turn.

\n

Ricochet Shot

\n

Starting at 13th level you learn how to work all the angles. Once per turn, when you take the Attack action and miss with a ranged weapon attack, you can repeat the attack against a different target within 10 feet of the original target (no action required).

\n

Quickdraw

\n

At 17th level, you learn to perform miracles with just a blaster and some nerve. On your first turn in combat, if you aren't surprised, you can use your action to attack creatures that have not yet acted. Choose up to six such creatures that you can see, making a ranged weapon attack against each. On a hit, you deal normal weapon damage and can apply a single trick shot to each attack made this way.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Gunslinger%20Practice.webp"} +{"_id":"Iu4lcoPb7S2tLZ8w","name":"Teräs Käsi Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Teräs Käsi Order

\n

Monks of the Teräs Käsi Order are the ultimate masters of martial arts combat, whether armed or unarmed. They learn techniques to push and trip their opponents, manipulate focus to heal damage to their bodies, and practice advanced meditation that can protect them from harm.

\n

Open Hand Technique

\n

Beginning when you choose this order at 3rd level, you can manipulate your enemy's focus when you harness your own. Whenever you hit a creature with one of the attacks granted by your Flurry of Blows, you can impose one of the following effects on that target:

\n\n

Wholeness of Body

\n

At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level.

\n

Once you've used this feature, you must complete a long rest before you can use it again.

\n

Tranquility

\n

Starting at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a sanctuary force power that lasts until the start of your next long rest (the power can end early as normal). The saving throw DC for the power equals your focus save DC.

\n

Quivering Palm

\n

At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 focus points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same planet. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.

\n

You can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly (no action required).

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"icons/svg/mystery-man.svg"} +{"_id":"KDx2Pjxk4RZQD05d","name":"Unstable Engineering","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Engineer","description":{"value":"

Experimental Engineering

\n

Those engineers who choose the Experimental Engineering discipline create and use untested combinations, resulting in powerful—and often unpredictable—effects.

\n

Bonus Proficiencies

\n

When you choose this discipline at 3rd level, you gain proficiency in a set of tools of your choice. Additionally, when you engage in crafting with tinker's tools, the rate at which you craft doubles.

\n

Modified Tinkercannon

\n

Also at 3rd level, you learn to enhance your tinker's tools with unproven science, modifying them into a backpack with a cannon. Over the course of a long rest, you can expend 500 cr worth of materials to modify your tinker's tools. You must have materials and tinker's tools in order to perform this modification.

\n

Whenever you cast a tech power of 1st level or higher while wielding your tinker's tools, you risk unexpected complications. Your GM can have you roll a d20. If you roll a 1, roll on the Experimental Engineering Surge table to create a random effect.

\n

Additionally, your tinker's tools come equipped with 4 overrides, and they gain more at higher levels, as shown in the Modification Slots column of the engineer class table. Each time you trigger an Experimental Engineering Surge, you can use an override to reroll the percentile dice. You must use the new result, you can only do this once per surge, and your maximum tech points is reduced by 1 until you complete a long rest. You regain all expended overrides when you complete a long rest.

\n

Unstable Volley

\n

Lastly at 3rd level, as a bonus action you can expend one use of your Potent Aptitude to launch a volley of unstable energy at a surface located with-in 30 feet of you that you can see. This energy adheres to the surface for 1 minute, after which it erupts. As a part of this bonus action, or as a bonus action on each of your turns, you can cause the energy to erupt early. Each creature within 5 feet of it must make a Dext-erity saving throw against your tech save DC. A creature takes 1d6 lightning damage on a failed save, or half as much on a successful one.

\n

This damage increases when you reach certain levels in this class, increasing to 2d6 at 5th level, 3d6 at 11th level, and 4d6 at 17th level.

\n

Creative Destruction

\n

Beginning at 6th level, you can add your Intelligence modifier (a minimum of +1) to any damage you deal with tech powers and class features. If the tech power or class feature would damage multiple creatures, you can only deal this additional damage to one of them.

\n

If you choose to deal this additional damage, your GM can have you roll on the Experimental Engineering Surge table.

\n

Experimental Overrides

\n

At 14th level, you gain a modicum of control over your surges. Whenever you roll on the Experimental Engineering Surge table and use one of your overrides, you can choose either total.

\n

Engineering Bombardment

\n

Starting at 18th level, the harmful energies of your tech powers and class features intensify. When you roll damage for a tech power or class feature and roll the highest number possible on any of the dice, you can roll it again and use both results. You can only use this ability once per tech power or class feature.

\n

Experimental Engineering Surge

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
d100Result
01-02Roll on this table at the start of each of your turns for 1 minute, ignoring this result on subsequent rolls.
03-04For the next minute, you can see any invisible creature if you have line of sight to it.
05-06A DRK-1 tracker droid appears with 5 feet of you, then disappears 1 minute later.
07-08You cast explosion at 3rd-level centered on yourself without expending tech points.
09-10You cast homing rockets at 5th-level without expending tech points.
11-12Roll a d10. Your height changes by a number of inches equal to the roll: if odd, you shrink; if even, you grow.
13-14You fall asleep standing for 1 minute or until you take damage.
15-16For the next minute, you regain 5 hit points at the start of each of your turns
17-18You grow a long beard made of feathers that remains until you sneeze.
19-20You cast oil slick centered on yourself without expending tech points.
21-22Creatures have disadvantage on the first saving throw they make against you in the next minute.
23-24Your skin turns a vibrant shade of blue. Any effect that ends a curse ends this.
25-26You grow an extra eye, granting advantage on Wisdom (Perception) checks that rely on sight for 1 minute.
27-28For the next minute, all your tech powers with a casting time of 1 action have a casting time of 1 bonus action.
29-30You teleport up to 60 feet to an unoccupied space of your choice that you can see.
31-32You take 2d10 lightning damage and are shocked for 1 minute.
33-34Maximize the damage of the next damaging tech power you cast within the next minute.
35-36Roll a d10. Your age changes by a number of years equal to the roll: if odd, younger; if even, older.
37-38You start running uncontrollably for 1 minute, moving your entire speed each turn.
39-40You regain 2d10 hit points.
41-42Each creature within 30 feet of you is subjected to the gleaming outline tech power for 1 minute.
43-44For the next minute, you can teleport up to 20 feet as a bonus action on each of your turns.
45-46You are blinded and deafened for 1 minute.
47-48You have disadvantage on the first ability check, attack roll, or saving throw you make each turn for 1 minute.
49-50You can’t speak for the next minute. Whenever you try, pink bubbles float out of your mouth.
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
d100Result
51-52A shimmering energy barrier grants you a +2 bonus to AC for 1 minute.
53-54You are immune to being intoxicated by alcohol for the next 5d6 days.
55-56Your hair falls out but grows back within 24 hours. If you don’t have hair, you instead grow it for 24 hours.
57-58For 1 minute, any flammable object not worn or carried you touch bursts into flame.
59-60You regain tech points equal to your Intelligence modifier (minimum of one).
61-62For the next minute, you shout whenever you speak.
63-64You cast smoke cloud centered on yourself without expending tech points.
65-66Up to three creatures you choose within 30 feet of you take 4d10 lightning damage.
67-68You are frightened by the nearest creature until the end of your next turn.
69-70Each creature within 30 feet of you becomes invisible for 1 minute, or until it attacks or casts a power.
71-72You gain resistance to all damage for the next minute.
73-74A random creature within 60 feet of you becomes poisoned for 1d4 hours.
75-76You emit bright light in a 30-foot radius for 1 minute.
77-78Each creature within 30 feet of you except you gains the benefits of mirror image for 1 minute.
79-80Illusory butterflies and flower petals flutter in the air within 10 feet of you for the next minute.
81-82You can take one additional action immediately.
83-84Each creature within 30 feet of you takes 1d10 necrotic damage and you gain hit points equal to the damage.
85-86You cast mirror image without expending tech points.
87-88You are frozen in carbonite and paralyzed for 1 minute or until you take damage.
89-90You turn invisible and can’t make sound for 1 minute, or until you attack or cast a power.
91-92If you die within the next minute, you immediately come back to life as if by the defibrillate power.
93-94Your size increases by one size category for the next minute.
95-96You and all creatures within 30 feet of you gain vulnerability to energy damage for the next minute.
97-98You are surrounded by faint, ethereal music for the next minute.
99-100You regain half your expended tech points.
"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Unstable%20Engineering.webp"} +{"_id":"KXH9dZsv2CAXAa6X","name":"Disabling Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Disabling Practice

\n

Those operatives who choose the Disabling Practice utilize a variety of pushes, pulls, weight shifts, and joint locks to immobilize their opponent. They use these techniques to manipulate their opponent, moving them across the battlefield before incapacitating them.

\n

Clinch Strike

\n

When you choose this practice at 3rd level, you learn how to discourage, debilitate, and harm your enemies. You gain the following benefits while you aren't wearing medium or heavy armor or a medium or heavy shield:

\n\n

Skilled Grappler

\n

Also at 3rd level, you learn a number of grappling techniques to subdue your opponents. When you hit a creature grappled by you with an unarmed strike and deal Sneak Attack damage, you may choose to forgo two of your Sneak Attack dice to make the attack a grappling technique.

\n

Some of your grappling techniques require your target to make a saving throw to resist the grappling technique's effects. The saving throw DC is calculated as follows:

\n

Grapple Technique save DC = 8 + your proficiency bonus + your Strength modifier.

\n

Constrict

\n

You attempt to choke the target into unconscious-ness. The target must make a Constitution saving throw or be restrained until the end of your following turn.

\n

If you maintain this technique for 1 minute, the target falls unconscious for 1 hour. Droids and constructs can not be knocked unconscious in this way.

\n

Disarm

\n

You attempt to disarm a weapon or other object the target is holding. The target must make a Strength saving throw. On a failed save, it releases the object. If you have a free hand, you can catch the object. Otherwise, it lands at your feet.

\n

Hip Toss

\n

You attempt to throw your target to the ground. The target must make a Dexterity saving throw. On a failed save, the target is pushed back 5 feet, knocked prone, and stunned until the start of your next turn. This ends the grapple.

\n

Human Shield

\n

Beginning at 9th level you learn to manipulate the body of a grappled target to make attacks against you more difficult to land. Moving a grappled creature the same size as you or smaller no longer halves your speed, and when a creature grappled by you would grant you half cover, you instead have three-quarters cover. Additionally, when you are hit by an attack while grappling a creature, you can use your reaction to force that attack to instead hit the grappled creature.

\n

Kiss the Wall

\n

Starting at 13th level, you can use your surroundings to further punish the target of your grapple. When you roll a 1 or 2 on a Sneak Attack damage die for an unarmed attack you make against a creature grappled by you, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2.

\n

Neck Snap

\n

At 17th level, you learn how to immediately remove your grappled opponent from the fight. As an action, you can force a creature grappled by you to make a Constitution saving throw. On a failed save, if the creature has 100 hit points or fewer, it dies. If the target has more than 100 hit points, it immediately takes 10d10 kinetic damage. This damage can't be reduced in any way.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Disabling%20Practice.webp"} +{"_id":"Ls55Gc4qha7Muacz","name":"Hunter Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Hunter Technique

\n

Some scouts seek to master weapons to better protect civilization from the terrors of their enemies. Followers of the Hunter Technique learn specialized fighting techniques for use against the most dire threats, from an onslaught of soldiers to towering walkers.

\n

Hunter's Prey

\n

When you choose this technique at 3rd level, you gain one of the following features of your choice.

\n

Colossus Slayer

\n

Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn, and this damage is the same type as the weapon's damage.

\n

Giant Killer

\n

When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.

\n

Horde Breaker

\n

Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon, no action required.

\n

Mark of the Hunter

\n

Also at 3rd level, when you use your Ranger's Quarry feature, the first time you make a tech or weapon attack against the target of your Ranger's Quarry each round, roll your Ranger's Quarry Damage Die and add it to the roll.

\n

Defensive Tactics

\n

Beginning at 7th level, you gain one of the following features of your choice.

\n

Escape the Horde

\n

Opportunity attacks against you are made with disadvantage.

\n

Multiattack Defense

\n

When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.

\n

Steel Will

\n

You have advantage on saving throws against being frightened.

\n

Multiattack

\n

Starting at 11th level, you gain one of the following features of your choice.

\n

Volley

\n

You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.

\n

Whirlwind Attack

\n

You can use your action to make melee attacks against any number of creatures within 5 feet of you, with a separate attack roll for each target.

\n

Superior Hunter's Defense

\n

At 15th level, you gain one of the following features of your choice.

\n

Evasion

\n

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

Stand Against the Tide

\n

When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attac against another creature (other than itself) of your choice.

\n

Uncanny Dodge

\n

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.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Hunter%20Technique.webp"} +{"_id":"Lz0gdQ5ou3k5E7Fo","name":"Way of Confluence","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of Confluence

\n

The Force binds us, creating an intangible bridge connecting all living things. Those consulars who follow the Way of Confluence master this power, manipulating those connections to both sustain and torment.

\n

Manipulate Life Force

\n

Starting when you choose this tradition at 3rd level, when you reduce a hostile creature to 0 hit points with a force power, or restore hit points to a creature with 0 hit points with a force power, you gain temporary hit points equal to half your consular level (rounded down) + your Wisdom or Charisma modifier (your choice, minimum of one).

\n

Empowered Connection

\n

At 6th level, while you have temporary hit points, you can add half your Wisdom or Charisma modifier (your choice, rounded up, minimum of one) to any damage or healing you do with force powers that doesn't already include that modifier.

\n

Life Eternal

\n

Beginning at 10th level, you can use your powerful connection to the Force to keep fighting when others would fall. When you are reduced to 0 hit points but not killed outright, you can spend 5 force points to drop to 1 hit point instead.

\n

Interconnectedness

\n

At 14th level, when you cast a 5th level or lower force power that deals damage or restores hit points and targets only one creature, the power can instead target two creatures within range and within 5 feet of each other.

\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

Dynamic Attachment

\n

Starting at 18th level, while you have temporary hit points, you have resistance against the damage of force powers, and your force powers ignore resistances.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20Confluence.webp"} +{"_id":"Mbe9qsurpJ0mb4F2","name":"Armstech Engineering","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Engineer","description":{"value":"

Armstech Engineering

Those engineers who choose the Armstech Engineeering discipline focus on the skill of constructing and modifying blasters and vibroweapons.

Bonus Proficiencies

When you choose this discipline at 3rd level, you gain proficiency in armstech's tools, medium armor, martial blasters, and martial vibroweapons. Additionally, when you engage in crafting with armstech's tools, the rate at which you craft doubles.

Modified Weaponry

Also at 3rd level, you learn to modify one unenhanced weapon with which you are proficient utilizing your armstech experience. Over the course of a long rest, you can expend materials equal to half the cost of a weapon in order to modify it. You must have the weapon, materials, and armstech's tools in order to perform this modification.

Your modified weapon is enhanced, requires attunement, can only be used by you, and counts as a tech focus for your tech powers while you are attuned to it. Your modified weapon has 4 modification slots, and it gains more at higher levels, as shown in the Modification Slots column of the engineer class table. For each modification installed, your tech point maximum is reduced by 1. Over the course of a long rest, you can replace or remove a number of modifications up to your Intelligence modifier (minimum of one).

Some modification effects require saving throws. When you use such an effect from this class, the DC equals your tech save DC.

At 9th level, you can maintain two modified weapons. Each modified weapon has modification slots as shown in the Modification Slots column of the engineer class table.

Close Call

Lastly at 3rd level, when you make an attack roll with your modified weapon and miss, you can expend one use of your Potent Aptitude to attempt to turn that miss into a hit. Roll the die and add it to the attack roll.

Armstech's Strike

Beginning at 6th level, once per round, when you deal damage to a creature with your modified weapon, you can increase the damage by 1d6. The damage is of the same type as the weapon's damage.

The damage increases to 2d6 at 11th level and 3d6 at 17th level.

Targeting Matrix

At 14th level, when you cast a tech power that allows you to force creatures in an area to make a saving throw, you can instead make an attack roll with your modified weapon against a single target that would be in the range of the power. On a hit, the target suffers the effects as though they failed their saving throw. If the power would affect more than one creature, it instead affects only one.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain any expended uses when you finish a long rest.

Armstech's Salvo

Starting at 18th level, when you use your Targeting Matrix feature, and the tech power would affect more than one creature, you can instead attack each affected creature that would be in the range of the power. Make a separate attack roll for each target. On a hit, each target suffers the effects as though they failed their saving throw.

Armstech Modifications

If a modification has prerequisites, you must meet them to install it. You can install the modification at the same time that you meet its prerequisites.

Accuracy Focus

Prerequisite: 5th level, Blaster You gain a +1 bonus to attack rolls made with this weapon. This bonus increases to +2 at 9th level and +3 at 13th level.

Amplifying Barrel

Prerequisite: 5th level, Blaster You gain a +1 bonus to damage rolls made with this weapon. This bonus increases to +2 at 9th level and +3 at 13th level.

Bayonet

Prerequisite: Blaster You affix a short blade to the barrel of your modified blaster weapon, allowing you to make a melee weapon attack with it. The blade is a melee weapon with the finesse property that you are proficient with, and deals 1d6 kinetic damage.

Burst Core

Prerequisite: Blaster Your weapon gains the burst property, with a burst number equal to its reload number.

Booming Strikes

Prerequisite: 7th level You pack extra power into your modified weapon. Once per turn, when you hit with the weapon, you can deal an additional 1d6 damage. If you do so, the weapon makes a loud boom which can be heard 100 feet away. If you are hidden, Intelligence (Investigation) and Wisdom (Perception) checks made to locate you that rely on sound have advantage.

Celerity Oscillator

Once per turn, when you deal damage with your modified weapon, your walking speed increases by 10 feet until the start of your next turn, and the damaged creature can't make opportunity attacks against you for the rest of your turn.

Collapsible Frame

Prerequisite: Vibroweapon You install an expandable hilt on your modified weapon. Your modified weapon gains the reach property.

Contoured Grip

Prerequisite: 5th level, Vibroweapon You gain a +1 bonus to attack rolls made with this weapon. This bonus increases to +2 at 9th level and +3 at 13th level.

Expanded Magazine

Prerequisite: Blaster Your modified weapon can be more efficiently reloaded. You can reload your modified weapon once without using an action. You can't use this feature again until you reload the weapon with an action.

Flashlight

You affix a targeted light to your weapon. As a bonus action, you can toggle the light on or off. While on, your weapon sheds bright light in a 60-foot cone.

Harpoon Reel

You install a secondary firemode that launches a harpoon attached to a tightly coiled cord. With this harpoon, you can make a ranged weapon attack with a range of 30/60. On a hit, it deals 1d6 kinetic damage. This attack can target a surface, object, or creature.

A creature struck by this attack is impaled by the harpoon. As an action, a creature can attempt to remove the harpoon. Removing the harpoon requires a Strength check. While the harpoon is stuck in the target, you are connected to the target by a 60 foot cable.

While connected in this manner, you can use your bonus action to activate the reel, pulling yourself to the location if the target is your size or larger. A creature or object smaller than you is pulled to you. Alternatively, you can opt to release the cable (no action required).

Once you've used this feature, you can't use it again until you recover and reinsert the harpoon as an action.

Imbue Weapon

Prerequisite: 9th level You modify your weapon to carry a charge. Over the course of a short rest, you can cast an at-will tech power, channeling it into your weapon. The next time you hit with your weapon, the stored power is released. If the power would require an attack roll, make a tech attack roll. If the power would require a saving throw, the target must make the saving throw as normal. On a hit, or a failure, the target suffers the power's normal effects.

Improved Burst Core

Prerequisite: 9th level Prerequisite: Burst Core Your weapon's burst number is reduced to half its reload number.

Integrated Magazine

Prerequisite: Expanded Magazine Your modified weapon can be more efficiently reloaded. You can reload your modified weapon twice without using an action. You can't use this feature again until you reload the weapon with an action.

Jagged Oscillator

Prerequisite: Vibroweapon When you critically hit with the weapon, you deal an additional 1d8 kinetic damage.

Keen Oscillator

Prerequisite: 5th level Prerequisite: Jagged Oscillator Your weapon now scores a critical hit on a roll of 19 or 20.

Neutronium Edge

Prerequisite: 5th level, Vibroweapon You gain a +1 bonus to damage rolls made with this weapon. This bonus increases to +2 at 9th level and +3 at 13th level.

Overcharge Weapon

Prerequisite: 11th level Prerequisite: Booming Strikes You gain the ability to channel your tech power to enhance your weapon's damage. You can expend one tech slot to deal additional damage to the target. The extra damage is 1d6 for a 1st-level tech slot, plus 1d6 for each slot level higher than 1st, to a maximum of 5d6. The damage is the same type as the weapon damage. If you also use your Booming Strikes with an attack, you add this damage to the extra damage of your Booming Strikes.

Power Loop

Prerequisite: 7th level When you hit with the weapon, you can choose channel the energy generated, gaining temporary hit points equal to half the damage dealt.

Once you've used this feature, you must complete a long rest before you can use it again.

Recoil Dampener

Prerequisite: Blaster with the strength property You install a recoil dampener in your modified blaster, removing the strength property from it.

Returning Weapon Guard

Prerequisite: Vibroweapon You install a retractible chain in your modified vibroweapon. If the weapon does not already have the thrown property, it gains it with a range of 20/60. Additionally, it gains the returning property.

Screening Weapon

You modify your modified weapon with a sound dampening module. When you make a weapon attack with your weapon while hidden, Investigation and Perception checks made to locate you that rely on sound have disadvantage.

Siege Weapon

You modify your weapon to be more effective against barriers. Your weapon deals double damage against structures.

Shock Absorber

You add a reclamation device to your modified weapon to gather energy from the surroundings when it is present. While wielding your modified weapon, you can cast the absorb energy tech power and the power's extra damage applies to both melee and ranged weapon attacks.

Shock Harpoon

Prerequisite: 9th level Prerequisite: Harpoon Reel After hitting a creature with the harpoon fire mode, you can use the connection to deliver an at-will tech power. As a bonus action, you can cast an at-will tech power at the target as if you were standing in the

target's space. If the power requires a saving throw, the target has disadvantage.

Once you've used this feature, you can't use it again until you recover the harpoon.

Shocking Oscillator

Prerequisite: 9th level, Vibroweapon When you hit with the weapon, you can create an electronic burst. Each creature in a 15-foot cone centered on the creature you hit must make a Dexterity saving throw against your tech save DC, taking 1d8 lightning damage on a failed save or half as much on a successful one.

Once you've used this feature, you must complete a long rest before you can use it again.

Snap Fire

Prerequisite: 9th level, Blaster You modify your modified blaster weapon for quick shots. You can use your reaction to take a opportunity attack with your modified weapon if an enemy comes within 10 feet of you. You have disadvantage on this attack.

Stabilizer Cell

Prerequisite: Vibroweapon with the dexterity property You install a stabilizer cell in your modified vibroweapon, removing the dexterity property from it.

Staggering Oscillator

Prerequisite: Vibroweapon When you hit with the weapon, you can force the target to make a Strength saving throw. On a failed save, the creature is pushed back 10 feet and knocked prone.

Once you've used this feature, you must complete a short or long rest before you can use it again.

Tracker

Prerequisite: 5th level You add a tracking mechanism to your modified weapon. The tracker has 3 charges. As an action you can use 1 charge to cast target lock. As an action you can use 2 charges to cast detect invisibility.

The tracker regains all expended charges after a long rest.

Truelight

Prerequisite: 11th level Prerequisite: Flashlight When toggled on, your flashlight now automatically dispels illusions and can detect invisibility, as with truesight.

Venomous Oscillator

Prerequisite: 9th level, Vibroweapon As a bonus action, you can coat your weapon in a thin layer of poison for 1 minute. The next time you hit with the weapon, the creature must make a Constitution saving throw against your tech save DC. On a failed save, a creature takes 1d10 poison damage and becomes poisoned for 1 minute.

Once you've used this feature, you must complete a long rest before you can use it again.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.toolProf.value","value":"arms","mode":"+","targetSpecific":false,"id":1,"itemId":"Mbe9qsurpJ0mb4F2","active":false,"_targets":[],"label":"Traits Tool Prof"},{"modSpecKey":"data.traits.armorProf.value","value":"med","mode":"+","targetSpecific":false,"id":2,"itemId":"Mbe9qsurpJ0mb4F2","active":false,"_targets":[],"label":"Traits Armor Prof"},{"modSpecKey":"data.traits.weaponProf.custom","value":"martial blasters","mode":"+","targetSpecific":false,"id":3,"itemId":"Mbe9qsurpJ0mb4F2","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"martial vibroweapons","mode":"+","targetSpecific":false,"id":4,"itemId":"Mbe9qsurpJ0mb4F2","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Archetypes/Armstech%20Engineering.webp"} +{"_id":"MorU2Jy5yx77N9QO","name":"Kage Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Kage Order

\n

Monks of the Kage Order, known as Kage warriors, have mastered fighting in darkness, using that which others fear as a weapon against them. Kage warriors learn tricks to create darkness where none exists, and learn to fight using their intuition rather than relying on sight.

\n

Intuitive Sight

\n

Beginning when you choose this order at 3rd level, you can no longer have disadvantage on attack rolls against targets within 10 feet of you due to not being able to see them. Additionally, you have advantage on Dexterity (Stealth) checks that rely on sound.

\n

Conjure Darkness

\n

Also at 3rd level, you learn to create a number of small explosive devices that create darkness. Over the course of a short or long rest, you can create a number of devices equal to your Wisdom or Charisma modifier (your choice). Your devices can only be used by you, and they lose their potency at the end of your next short or long rest.

\n

Once per turn, when you would make a weapon attack or unarmed strike, you can instead throw one of your devices. Your devices have a range equal to 30 feet + your Strength modifier x 5. You can throw a device at a point you can see within range. The devices create a pocket of darkness in a 10-foot radius sphere centered on that point. The darkness spreads around corners. It lasts for 1 minute or until an enhanced source of brigiht light dispells it.

\n

Disruptive Shock

\n

At 6th level, once per turn, when you hit a creature with a melee weapon attack when you have advantage, or it fails a saving throw against an effect that you control, you can choose to roll a Martial Arts die and deal additional psychic damage equal to the amount rolled.

\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 any expended uses when you finish a short or long rest.

\n

One With Darkness

\n

Starting at 11th level, you have learned to become one with the shadows. When you are in an area of dim light or darkness, you can use your action to become invis-ible. You remain invisible until you make an attack, cast a power, or are in an area of bright light.

\n

Opportunist

\n

At 17th level, you can exploit a creature's momentary distraction when it is hit by an attack. Whenever a creature within 5 feet of you is hit by an attack made by a creature other than you, you can use your reaction to make a melee attack against that creature.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Kage%20Order.webp"} +{"_id":"N7iKTQc98TGrsg1t","name":"Augmented Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Augmented Approach

\n

The Augmented Approach is for those who seek to increase their prowess through cybernetic enhancement. Some who take this path go so far they are left with little more than the memory of the body they once owned, all to achieve in combat what they cannot with a body made of flesh and bone.

\n

Basic Cybernetics

\n

When you choose this approach at 3rd level, you learn the mending and analyse tech powers and can cast them without the use of a wristpad or spending tech points. You can cast analyse this way a number of times equal to your Constitution modifier (minimum of one). You regain all expended uses when you complete a long rest.

\n

Overdrive Enhancement

\n

Also at 3rd level, you gain a cybernetic enhancement. Choose one of the following enhancements and gain its feature. You must undergo cybernetic surgery by a person proficient in biotech’s tools that incorporates this enhancement into your body. This surgery costs 100 credits and takes 8 hours.

\n

Dermal Armor

\n

While raging you have resistance to all damage except psychic damage.

\n

Morbid Protrusions

\n

While raging, your unarmed strike deals 1d4 + Strength modifier kinetic damage and when you take the Attack action and attack with a melee weapon or unarmed strike, you can use a bonus action to make an unarmed attack.

\n

This unarmed attack die increases to 1d6 at 5th level, 1d8 at 11th level, and 1d10 at 17th level.

\n

Pressurised Limbs

\n

While raging, you can use your bonus action to leap up to 30 feet to an empty space you can see. When you land you deal kinetic damage equal to your Strength modifier to each creature within 5 feet of where you land. You can use this feature a number of times equal to your Consitution modifier (minimum of one). You regain all expended uses when you complete a long rest.

\n

Twitchlock Actuators

\n

While you’re raging, other creatures have disadvantage on opportunity attack rolls against you, you can also use the Dash action as a bonus action on your turn.

\n

Support Enhancement

\n

At 6th level you gain an additional cybernetic enhancement. Choose one of the following enhancements and gain its feature. You must undergo cybernetic surgery by a person proficient in biotech’s tools that incorporates this enhancement into your body. This surgery costs 600 credits and takes 8 hours.

\n

Body Sculpting

\n

You gain proficiency in two skills of your choice from Athletics, Acrobatics, Stealth, and Sleight of Hand.

\n

Holdout Cavity

\n

You have a shielded compartment built into your body that can be used to store and hide a light weapon or item of similar size.

\n

Krykna Anchors

\n

You gain a climbing speed equal to your movement speed.

\n

Panspectral Optics

\n

You can see up to 1 mile away with no difficulty. You are able to discern even fine details as though looking at something no more than 100 feet away from you. Additionally, dim light doesn’t impose disadvantage on your Wisdom (Perception) checks.

\n

Support Structure

\n

Your carrying capacity (including maximum load and maximum lift) is doubled and you have advantage on Strength checks made to push, pull, lift, or break objects.

\n

More Machine than Man

\n

Starting at 10th level, your cybernetics allow you to become immune to poison and disease. Additionally, you ignore unenhanced difficult terrain.

\n

Final Enhancement

\n

At 14th level you gain a final cybernetic enhancement. Choose one of the following enhancements and gain its feature. You must undergo cybernetic surgery by a person proficient in biotech’s tools that incorporates this enhancement into your body. This surgery costs 2000 credits and takes 8 hours.

\n

Holoskin Emitters

\n

While you’re raging any creature within 5 feet of you that’s hostile to you has disadvantage on attack rolls against targets other than you or another character with this feature. An enemy is immune to this effect if it can’t see or hear you or if it can’t be frightened.

\n

Hydraulic Overrides

\n

While you’re raging you can use a bonus action on your turn to knock a Large or smaller creature prone when you hit it with melee weapon attack.

\n

Integrated Boosters

\n

While raging you have a flying speed equal to your current walking speed. This benefit works only in short bursts; you fall if you end your turn in the air and nothing else is holding you aloft.

\n

Ysalamir Capacitor Mesh

\n

When you are forced to make a saving throw against a force power, you can immediately use your reaction to move up to half your speed towards the source power’s caster. If you end this movement within 5 feet of the target, you can immediately make one melee weapon attack against the target as a part of that reaction.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"icons/svg/mystery-man.svg"} +{"_id":"OPVska67MO0Zauct","name":"Trickster Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Trickster Order

\n

Monks of the Trickster Order embody the archetypal role of the \"trickster\"—one who seemingly bumbles their way into good fortune. They employ a unique fighting style composed of slips, trips, and falls to confuse and frustrate their enemies to no end. Whether your movements are actual foibles on your part or calculated strokes, they will surely leave others guessing long after your time is past.

\n

Bonus Proficiencies

\n

When you choose this tradition at 3rd level, your martial arts technique mixes combat training with the precision of a dancer and the antics of a jester. When you make a Charisma (Performance) check, you gain a bonus to the check equal to half your Wisdom modifier (rounded down, minimum of +1) if it doesn't already include that modifier.

\n

Bumbling Technique

\n

Also at 3rd level, you learn how to twist and turn quickly as part of your Flurry of Blows. Whenever you use Flurry of Blows, creatures you hit can't make opportunity attacks against you, and your walking speed increases by 10 feet until the end of your turn.

\n

Clumsy Sway

\n

At 6th level, you can move in sudden, swaying ways. You gain the following benefits.

\n

Leap to Your Feet. When you're prone, you can stand up by spending 5 feet of movement, rather than half your speed.

\n

Redirect Attack. When a creature misses you with a melee attack roll, you can spend 1 focus point as a reaction to cause that attack to hit one creature of your choice, other than the attacker, that you can see within 5 feet of you.

\n

Luck of the Fool

\n

Starting at 11th level, you always seem to get a lucky bounce at the right moment. When you make an ability check, an attack roll, or a saving throw and have disadvantage, you can spend 2 focus points to instead have advantage for that roll.

\n

Comic Frenzy

\n

At 17th level, you gain the ability to make an overwhelming number of attacks against a group of enemies. When you use your Flurry of Blows, you can make up to three additional attacks with it (up to a total of five Flurry of Blows attacks), provided that each Flurry of Blows attack targets a different creature this turn.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Trickster%20Order.webp"} +{"_id":"OZ0ln6ZxQgdEUxoy","name":"Tactician Pursuit","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scholar","description":{"value":"

Tactician Pursuit

\n

Tacticians study strategy and the ways of war. Those scholars who choose the Tactician Pursuit train themselves and their allies in combat maneuvers to deftly eliminate their foes through clever positioning, and fierce, timely attacks.

\n

Battle Proficiencies

\n

When you choose this pursuit at 3rd level, you gain proficiency in martial blasters and martial vibroweapons.

\n

Tactical Mastery

\n

Also at 3rd level, you learn to better command your allies to victory from afar. Your Critical Analysis range is increased to 90 feet.

\n

Additional Maneuvers

\n

Lastly at 3rd level, you gain access to new maneuvers which reflect your mastery in the field of combat. Whenever you learn a new maneuver, you can choose from any of the following as well. The maneuvers are listed in alphabetical order.

\n

Bolster

\n

On your turn, you can use a bonus action and expend one superiority die to bolster the resolve of one of your companions. When you do so, choose a friendly creature who can see or hear you. That creature gains temporary hit points equal to the superiority die roll + your Intelligence modifier.

\n

Commander's Strike

\n

When you take the Attack action on your turn, you can forgo one of your attacks and use a bonus action to direct one of your companions to strike. When you do so, choose a friendly creature within 60 feet who can see or hear you and expend one superiority die. That creature can immediately use its reaction to make one weapon attack, adding your superiority die to the attack's damage roll.

\n

Disarming Attack

\n

When you hit a creature with a weapon attack, you can expend one superiority die to attempt to disarm the target, forcing it to drop one item of your choice that it's holding. You add the superiority die to the attack's damage roll, and the target must make a Strength saving throw. On a failed save, it drops the object you choose. The object lands at its feet.

\n

Distracting Strike

\n

When you hit a creature with a weapon attack, you can expend one superiority die to distract the creature, giving your allies an opening. You add the superiority die to the attack's damage roll. The next attack roll against the target by an attacker other than you has advantage if the attack is made before the start of your next turn.

\n

Maneuvering Attack

\n

When you hit a creature with a weapon attack, you can expend one superiority die to maneuver one of your allies into a more advantageous position. You add the superiority die to the attack's damage roll, and you choose a friendly creature who can see or hear you.

\n

That creature can use its reaction to move up to half its speed without provoking opportunity attacks from the target of your attack.

\n

Pushing Attack

\n

When you hit a creature with a weapon attack, you can expend one superiority die to attempt to drive the target back. You add the superiority die to the attack's damage roll, and if the target is Large or smaller, it must make a Strength saving throw. On a failed save, you push the target up to 15 feet away from you.

\n

Riposte

\n

When a creature misses you with a melee attack, you can use your reaction and expend one superiority die to make a melee weapon attack against the creature. If you hit, you add the superiority die to the attack's damage roll.

\n

Scholar's Parry

\n

When a creature damages you with a weapon attack, you can use your reaction and expend one superiority die to reduce the damage by the number you roll on your superiority die + your Intelligence modifier.

\n

Targeted Attack

\n

When you make a weapon attack roll, you can expend one superiority die to add it to the roll. You can use this maneuver before or after making the attack roll, but before any effects of the attack are applied.

\n

Trip Attack

\n

When you hit a creature with a weapon attack, you can expend one superiority die to attempt to knock the target down. You add the superiority die to the attack's damage roll, and if the target is Large or smaller, it must make a Strength saving throw. On a failed save, you knock the target prone.

\n

Fire as One

\n

Beginning at 6th level, you can focus your target down with the help with an ally. Once per round, whenever the creature that is the target of your Critical Analysis feature is attacked by someone other than you, you can use your reaction to make one weapon attack against them.

\n

Battlefield Survey

\n

Starting at 9th level, you become a master at leading your allies around in a battlefield you have studied. When you spend 10 minutes observing an area that is within 120 feet from you, or by using a detailed map, select a number of creatures up to your Intelligence modifier. You and those selected allies ignore unenhanced difficult terrain, and have advantage on Dexterity (Stealth) checks in that area.

\n

All-Out Attack

\n

Once you've reached 17th level, you can use your action to initiate an all-out attack. Choose a number of allies up to your Intelligence modifier within 60 feet who can see or hear you. The chosen allies may then immediately use their reaction to make one weapon attack against a target of your choice. You may choose the target for each attack separately.

\n

Once you use this feature, you cannot use it again until you finish a short or long rest.

\n

Discoveries (Tactician)

\n

When you select this pursuit, you gain access to new discoveries which reflect your mastery in the field of combat. Whenever you learn a new discovery, you can choose from any of the following as well. The discoveries are listed in alphabetical order.

\n

Commander's Armor

\n

Prerequisite: 5th level

\n

You gain proficiency in medium armor.

\n

Contingency Plan

\n

Prerequisite: 9th level

\n

When the target of your Critical Analysis feature scores a critical hit, you can use your reaction and expend a superiority die to treat the attack as a normal hit instead.

\n

Fighting Style

\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

Firing Command

\n

As a bonus action, you can take the Help action. Additionally, when you take the Help action, it has a range of 30 feet.

\n

Observant Leader

\n

You can add your Intelligence modifier to any Wisdom (Perception) skill checks you make.

\n

Studied Commander

\n

When you make an Intelligence (Lore) or Intelligence (Technology) check related to battles, tactics, or weaponry, you may expend a superiority die and add it to the roll.

\n

Tactical Retreat

\n

When you take the Dash action, opportunity attacks made against you are made at disadvantage.

\n

Unbound Commander

\n

Prerequisite: 12th level

\n

You learn to command your allies to victory from afar. Your Critical Analysis range is increased to 120 feet.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Tactician%20Pursuit.webp"} +{"_id":"PCwepUZqHYlxr4T3","name":"Addicted Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Addicted Approach

\n

For some, the consumption of substances is the entirety of their life. For berserkers of the Addicted Approach, substances cause their fury to burn stronger and deeper, granting significant benefits.

\n

Slythmonger Savvy

\n

When you choose this approach at 3rd level, you gain proficiency in your choice of brewer’s kit or spicer’s kit. Additionally, you have advantage on saving throws to avoid the low or addiction to substances. Lastly, you can consume substances as a bonus action, and when you do so, you can also enter a rage as a part of this same bonus action.

\n

Freedom Through Slavery

\n

Also at 3rd level, while you are raging or experiencing the high of a substance, you have advantage on saving throws that would force you to act against your will, be frightened, or prevent you from attacking a creature. If you are both raging and experiencing the high of a substance, you are instead immune to effects that would force you to act against your will or would prevent you from attacking a creature.

\n

Release the Beast

\n

At 6th level, while you are raging or experiencing the high of a substance, when you hit a creature with a melee weapon attack, you can expend a Hit Die to deal additional damage to the target. Roll the Hit Die, adding the result of the die to the damage roll. If you are both raging and experiencing the high of a substance, you also add your Constitution modifier to the damage roll.

\n

Seeing Sound

\n

Starting at 10th level, while you are raging or experiencing the high of a substance, you have blindsight with a range of 10 feet. If you are both raging and experiencing the high of a substance, you instead have blindsight with a range of 30 feet.

\n

Fuel the Rampage

\n

At 14th level, while you are both raging and experiencing the high of a substance, having 0 hit points doesn’t knock you unconscious. You still must make death saving throws, and you suffer the normal effects of taking damage while at 0 hit points. However, if you would die due to failing death saving throws, you don’t die until your rage ends, and you die then only if you still have 0 hit points.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Addicted%20Approach.webp"} +{"_id":"PI1B9vYofzCXU9so","name":"Doctor Pursuit","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scholar","description":{"value":"

Doctor Pursuit

\n

Doctors study the medical, anatomical, and biological sciences. Those scholars who choose the Doctor Pursuit use their knowledge to mend their allies on the field and deal crippling blows with surgical precision.

\n

Medical Practitioner

\n

When you choose this pursuit at 3rd level, you gain proficiency with biochemist's kits and your choice of Medicine or Nature skills. Additionally, when you make a Wisdom (Medicine) check, you gain a bonus to the check equal to your Intelligence modifier.

\n

Remote Healer

\n

Also at 3rd level, you have learned to deploy medicine from a range. When you use a maneuver targeting an ally that is the target of your Critical Analysis feature, that maneuver's range becomes 30 feet.

\n

Additional Maneuvers

\n

Lastly at 3rd level, you gain access to new maneuvers which reflect the progress of your studies into the medical arts. Whenever you learn a new maneuver, you can choose from any of the following as well. The maneuvers are listed in alphabetical order.

\n

Adrenaline Hit

\n

You can use an action and expend one superiority die to inject a creature with regenerative medication that temporarily enhances their agility. When you do so, a creature you can touch regains hit points equal to the superiority die roll. Additionally, until the start of your next turn, when that creature would take damage, the amount is reduced by an amount equal to your Intelligence modifier.

\n

Emergency Prescription

\n

As an action, you can expend one superiority die and touch a creature. That creature regains hit points equal to result of the die + your Intelligence modifier, and when that creature makes their first ability check, attack roll, or saving throw before the start of your next turn they roll the superiority die and add it to the roll.

\n

Enhancement Injection

\n

As an action, you can expend one superiority die to inject a creature you can touch with enhancements, granting them temporary hit points equal to the superiority die roll + your Intelligence modifier, which last for 1 minute. Additionally, when the target makes a Strength or Constitution check or saving throw while it has these temporary hit points, it gains a bonus equal to your Intelligence modifier.

\n

Neuroblock

\n

When you make an attack roll, you can expend a superiority die and add it to the attack roll. On a hit, the creature's next attack has disadvantage and it cannot regain hit points until the start of your next turn.

\n

Reassure

\n

As an action, you can expend a superiority die and call out to a creature within 60 feet that can see or hear you that is charmed, frightened, or stunned. When you do so, that creature immediately makes another saving throw, adding the amount rolled to the save.

\n

Remove Toxins

\n

As an action, you can expend a superiority die to purge the toxins from a creature you can touch. The target regains hit points equal to the number rolled and, if it is poisoned or diseased, you neutralize the poison or disease. If more than one poison or disease afflicts the target, you neutralize one poison or disease that you know is present, or you neutralize one at random.

\n

Smelling Salts

\n

As a bonus action, you can expend a superiority die to heal a creature you can touch by a number of hit points equal to the number rolled.

\n

Transfusion

\n

Once per turn when you hit a creature with a finesse melee weapon, you can expend a superiority to give you or an ally that is within 5 feet of the creature a transfusion. Add the superiority dice to the damage you deal. You or your ally gain hit points equivalent to the damage you deal to the creature.

\n

You can be the creature hit with the attack as long as there is an ally with 5 feet of you, in which you can let it hit without rolling an attack and must choose an ally to heal with the transfusion.

\n

Weak Point Strike

\n

When you hit a creature with a weapon attack, you can expend a superiority die to temporarily daze the creature. Add the number rolled to the damage of the weapon attack and the creature must succeed on a Constitution saving throw or be stunned until the end of its next turn.

\n

Field Surgeon

\n

Beginning at 6th level, whenever you expend superiority dice to restore hit points or grant temporary hit points to a creature, you can roll an additional die d6 and add it to the roll. This die increases when you reach certain levels in this class: 1d8 at 7th level, 1d10 at 11th level, and to 1d12 at 15th level.

\n

Additionally, whenever you expend superiority dice to restore hit points or grant temporary hit points to a creature, if the creature is the target of your Critical Analysis, you can instead choose the maximum on both dice. Once you've used this feature, you must finish a short or long rest before you can use it again. Starting at 11th level, you can use it twice before a rest, but only once on the same turn.

\n

Resuscitate

\n

Starting at 9th level, through your medical studies you have learned to delay seemingly inevitable death. As a bonus action, you can stabilize a creature you can touch that has 0 hit points.

\n

Additionally, as an action, you can tend to a creature you can touch that has died since the end of your last turn. The creature immediately regains 1 hit point and stabilizes. Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Panacea

\n

Once you've reached 17th level, you've developed the formula to concoct a cure-all miracle solution: a panacea. Over the course of 10 minutes, you can expend rare medical supplies worth 1,000 cr to create your panacea in a simple syringe. The panacea retains its potency for 24 hours. As a bonus action, a creature can use the panacea. Alternatively, as an action, they can administer it to another creature within 5 feet.

\n

The target has its exhaustion level reduced by one and regains all of its hit points. If the target is diseased, poisoned, paralyzed, or stunned, the condition ends.

\n

Once you create a panacea, you can't create another until you finish a long rest.

\n

Discoveries (Physician)

\n

When you select this pursuit, you gain access to new discoveries which reflect the progress of your studies into the medical arts. Whenever you learn a new discovery, you can choose from any of the following as well. The discoveries are listed in alphabetical order.

\n

Advanced Remote Healer

\n

Prerequisite: 12th level, Physician Pursuit The range of your Remote Healer feature increases to 60 feet.

\n

Experimental Treatments

\n

Prerequisite: Physician Pursuit
Your medication and treatments are known to be untested and unstable. Immediately after you use a maneuver that causes a creature to regain hit points or gain temporary hit points, you can choose to roll on the Side Effects table to the right. The condition or effect lasts until the creature completes a long rest, or you use this feature again.

\n

You can use this feature a number of times equal to your Intelligence modifier. You regain all expended uses when you finish a short or long rest.

\n

From the Brink

\n

Prerequisite: 7th level, Physician Pursuit If the target of your Critical Analysis feature would be reduced to 0 hp, you may use your reaction and end your Critical Analysis feature to have them be reduced to 1 hp instead. Once a creature has benefited from this feature, they must complete a long rest before they can do so again.

\n

Health Advisor

\n

Prerequisite: Physician Pursuit Whenever a creature that is a target of your Critical Analysis feature begins their turn, you can use your reaction to give them temporary hit points equal to one-fourth your scholar level (rounded down) + your Intelligence modifier (minimum of one) which last until the start of their next turn.

\n

Patient Protector

\n

Prerequisite: 5th level, Physician Pursuit When you attack creatures that are within 5 feet of an ally that is the target of your Critical Analysis feature, attack rolls and damage rolls made on them with a finesse or ranged weapon may use your Intelligence modifier instead of Strength of Dexterity.

\n

Surgical Precision

\n

Prerequisite: 5th Level, Physician Pursuit When you hit a creature that is the target of your Critical Analysis feature with a weapon attack, it takes additional damage equal to your Dexterity modifier.

\n

Tend the Wounded

\n

Prerequisite: Physician Pursuit If you or any friendly creatures you can touch regain hit points by spending one or more Hit Dice at the end of a short rest, each of those creatures regain 1d6 extra hit points.

\n

This die increases when you reach certain levels in this class: 1d8 at 7th level, 1d10 at 11th level, and to 1d12 at 15th level.

\n

Side Effects

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
d20Side Effects
1The creature turns out to be allergic to this specific treatment. Every ability score is reduced by 1.
2The creature starts sneezing uncontrollably. Any attack rolls with a die roll value of 19 results in a miss due to a poorly timed sneeze.
3The creature's legs become swollen. Their move speed becomes at most half their normal movement speed.
4The creature becomes one size larger or smaller.
5The skin at their joints turns into a wooden material, giving them a bonus of +2 to AC.
6The creature's body starts producing powerful stomach acid in high amounts. The creature can use an action to spew stomach acid in a 15 feet cone. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 acid damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.
7The creature becomes mute and has uncontrollable gas. They have disadvantage on Dexterity (Stealth) checks that rely on smell.
8The creature's eyes glows bright red. The creature also gains darkvision, but if they already have darkvision they get a light headache instead.
9The creature gains +4 to perception checks based on hearing, but everything seems uncomfortably loud to them. They gain vulnerability to sonic damage.
10The treatment slows down their brain function, reducing their Intelligence by 4.
11The creature's skin turns dark purple. If they are already purple, they turn bright pink instead.
12The creature becomes covered in sickly, green pustules. When the creature is hit by a melee attack, the attacker takes 1d4 poison damage.
13The creature's skin starts to seriously bloat up from internal pressure build-up, and a strong impact may cause it to explode. Whenever the creature takes damage, the creature has to pass a concentration check or the creature takes kinetic damage equal to half their maximum hit points. Other creatures within 10 feet of the explosion also take a fourth of the damage. Once this explosion occurs, their skin becomes very soft.
14The creature rapidly grows body hair all over, including the face, until they resemble a wookiee. If they are already a wookiee, the reverse effect occurs; all hair immediately falls off, leaving the skin bare.
15The creature's body temperature fluctuates to extremes. They gain resistance to cold and fire damage.
16The creature becomes ravenous. Every hour they haven't eaten a meal they gain a level of exhaustion.
17The creature believes they are the chosen one.
18The creature has a difficult time resting. The amount they heal from Hit Dice is now halved.
19The creature's movement speed is increased by 15 feet, and opportunity attacks on them have disadvantage.
20The creature gains 10d10 hit points, and they feel happy and carefree.
"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Doctor%20Pursuit.webp"} +{"_id":"PoyYtrej7B5BZRRG","name":"Jal Shey Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Jal Shey Order

\n

Monks of the Jal Shey order, driven by the pursuit of knowledge, maintain one of the most well-respected and heavily guarded repositories of history and knowledge across the galaxy: the Archives of the Jal Shey. Here, young folk of all species seeking the clarity of truth and the strength of knowledge pledge to learn the arts of seeking enlightenment by understanding the world around them, and mastering the techniques to defend it. To become a Jal Shey monk is to give one's self to the quest for unveiling the deepest mysteries of the galaxy, to bring light to the secrets of the dark, and guard the most powerful and dangerous of truths.

\n

Mystical Erudition

\n

Beginning when you choose this order at 3rd level, you've undergone extensive training in lore from the Jal Shey's collected knowledge. You learn one language of your choice, and you gain proficiency in your choice of Lore, Medicine, Nature, or Technology.

\n

You learn an additional language and an additional skill proficiency from the above list at 11th and 17th level.

\n

Extract Aspects

\n

Also at 3rd level, you can strike multiple pressure points to extract crucial details about your foe. Whenever you hit a creature with one of the attacks granted by your Flurry of Blows, you can learn learn certain information about its capabilities. The GM tells you if the creature has two of the following characteristics of your choice:

\n\n

Extort Truth

\n

At 6th level, you can hit a series of hidden nerves on a creature with precision, temporarily causing them to be unable to mask their true thoughts and intent. When you hit a creature with a melee weapon attack, you can have the attack deal no damage and spend 1 focus point to force them to make a Charisma saving throw against your focus save DC. On a failed save, the creature is unable to speak a deliberate lie for 1 minute and all Charisma checks directed at the creature are made with advantage for the duration.

\n

On a success or failure, a creature is aware that you attempted to influence them. They can choose to avoid answering questions to which they would normally respond with a lie.

\n

Preternatural Counter

\n

Also at 6th level, your quick mind and study of your foe allows you to use their failure to your advantage. When a creature within 5 feet of you misses you with a melee attack, you can use your reaction to make an unarmed strike against that creature.

\n

Mind of Mercury

\n

Starting at 11th level, you've honed your awareness and reflexes through mental aptitude and pattern recognition. Once per turn, if you've already used your reaction, you can spend 1 focus point to take an additional reaction. You can only take one reaction per turn.

\n

Debilitating Barrage

\n

At 17th level, you've gained the knowledge to temporarily inhibit a creature's fortitude by striking a series of pressure points. Whenever you hit a creature with one of the attacks granted by your Flurry of Blows, you can spend 3 focus points to cause the creature to become vulnerable to a damage type of your choice. This effect lasts for 1 minute or until they take damage of the chosen type.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Jal%20Shey%20Order.webp"} +{"_id":"QRwypM2cIYxW0NVN","name":"Juggernaut Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Juggernaut Approach

\n

Certain berserkers find that the strongest offense is a good defense. Berserkers of the Juggernaut Approach wear the heaviest of armor not because they fear injury, but to strike fear in their hapless attackers.

\n

Armored Brute

\n

When you choose this approach at 3rd level, you’ve learned to fight in the heaviest of armors, using your weight to your advantage. You gain proficiency in heavy armor, and you can gain the benefits of your Rage feature while wearing heavy armor.

\n

When you reach 5th level, you can gain the benefits of your Fast Movement feature while wearing heavy armor.

\n

Unstoppable Force

\n

Also at 3rd level, your momentum makes you nigh unstoppable. While raging, you can move through a hostile creature’s space regardless of that creature’s size. When you do so, you must make a Strength (Athletics) check contested by the target’s Strength (Athletics) check. If you move at least 10 feet before moving through a hostile creature’s space, and that creature is your size or smaller, they have disadvantage on the check. If you succeed, you don’t treat the movement as difficult terrain, the creature is pushed 5 feet in a direction of your choice, and you don’t provoke opportunity attacks from that creature until the end of your turn.

\n

Raging Bulwark

\n

At 6th level, your imposing form acts as a shield for your allies. When a friendly creature you can see is the target of a ranged attack, or forced to make a Dexterity saving throw, and you can see the source of the effect, you can use your reaction to move up to half your speed towards the friendly creature. You must end this move closer to the ally than you started. If you end this movement between your ally and the source of the effect, you provide cover for the attack.

\n

Additionally, you provide three-quarters cover, instead of half-cover, to creatures your size, and you provide full cover to creatures smaller than you.

\n

Overwhelming Cleave

\n

Starting at 10th level, when you successfully push a creature into a surface or another creature while raging, the pushed creature takes kinetic damage equal to your Rage Damage. Additionally, the first time you hit with a melee weapon attack using Strength each turn, you can attempt to damage another creature with the same attack. Choose another creature within 5 feet of the original target and within your reach. If the original attack roll would hit the second creature, it takes damage equal to your Strength modifier. The damage is of the same type dealt by the original attack.

\n

Relentless Assault

\n

At 14th level, you’re able to charge in unerring bursts. As an action, you can charge up to twice your speed in a straight line without provoking opportunity attacks. Each creature within 5 feet of your path must make a Strength or Dexterity saving throw (DC = 8 + your proficiency bonus + your Strength modifier, the target chooses the ability they use use). On a failed save, a creature takes damage equal to your Strength modifier + your Rage Bonus and is pushed back 5 feet in a direction of your choice. Creatures smaller than you make this save with disadvantage. When you end this movement, if a creature is within 5 feet of you, you can make one melee weapon attack (no action required). On a hit, the creature takes additional damage equal to your berserker level.

\n

Once you’ve used this feature, you must complete a short or long rest before you can use it again.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Juggernaut%20Approach.webp"} +{"_id":"RulD3rQZqDk5H0Pl","name":"Scrapper Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Scrapper Practice

\n

Those operatives who choose the Scrapper Practice don't have the time or patience for the fair fight. They utilize close-quarters blaster combat blended with underhanded tactics to surprise and disable their foes.

\n

Back Blast

\n

When you choose this practice at 3rd level, you gain proficiency in all blasters with the burst or rapid property that lack the two-handed property. Additionally, when a creature fails a saving throw against the burst or rapid property of a weapon you control and with which you are proficient, you can apply your Sneak Attack damage to one creature dealt damage in this way as long as that creature didn't have advantage on the save.

\n

When you reach 9th level in this class, when multiple creatures fail a saving throw against the burst property of a weapon you control and with which you are proficient, you can divide your Sneak Attack dice amongst the targets as you see fit.

\n

Upper Hand

\n

Also at 3rd level, you learn to user underhanded tactics to gain the upper hand. When you deal Sneak Attack damage to a creature, you may choose to forgo two of your Sneak Attack Dice in order to perform an upper hand technique.

\n

Some of your upper hand techniques require your target to make a saving throw to resist the technique's effects. The saving throw DC is calculated as follows:

\n

Upper Hand save DC = 8 + your proficiency bonus + your Charisma modifier

\n

Brutal Hit

\n

You attempt to knock the target prone while within 15 feet of it. The target must make a Strength saving throw or be knocked prone.

\n

Low Blow

\n

You attempt to stun the target while within 15 feet of it. The target must make a Constitution saving throw or be stunned until the start of its next turn.

\n

Shank Shot

\n

You attempt to hamper the target while within 15 feet of it. The target must make a Dexterity saving throw. If it fails, its movement speed is to 0 and it makes Dexterity saving throws with disadvantage until the end of its next turn.

\n

Sleight of Foot

\n

Beginning at 9th level, when a creature moves to within 5 feet of you, you can use your reaction to move up to half your speed away from the creature without provoking opportunity attacks. You must end this movement further from the creature than you started.

\n

Hostile Negotiations

\n

Starting at 13th level, when you make a Charisma (Intimidation) or Charisma (Persuasion) check, you gain a bonus to the check equal to half your Dexterity modifier (rounded down) if it doesn't already include that modifier.

\n

Double Tap

\n

At 17th level, you can deal Sneak Attack damage twice per turn, but you can't deal more than your total Sneak Attack dice to a single target per turn.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Scrapper%20Practice.webp"} +{"_id":"SKluJRGJzsX03qlx","name":"Tactical Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Tactical Specialist

\n

Those fighters who choose to become Tactical Specialists employ martial techniques passed down through generations. To a Tactical Specialist, combat is an academic field, sometimes including subjects beyond battle such as armstech or armormech. Not every fighter absorbs the lessons of history, theory, and artistry that are reflected in the Tactical Specialty, but those who do are well-rounded fighters of great skill and knowledge.

\n

Improved Combat Superiority

\n

When you choose this specialty at 3rd level, your tactical skill in combat improves, granting bonuses to your Combat Superiority.

\n

Additional Maneuvers

\n

You learn two additional maneuvers of your choice, and you earn more at higher levels, as shown in the Maneuvers Known column of the Tactical Specialist Combat Superiority table.

\n

Additional Superiority Dice

\n

You have two additional superiority dice, and you earn more at higher levels, as shown in the Superiority Dice column of the Tactical Specialist Combat Superiority table.

\n

Additionally, your superiority dice become d6s. This die changes as you gain fighter levels, as shown in the Combat Superiority column of the Tactical Specialist Combat Superiority table.

\n

Student of War

\n

Also at 3rd level, you gain proficiency with one type of artisan's tools of your choice.

\n

Know Your Enemy

\n

Beginning at 7th level, if you spend at least 1 minute observing or interacting with another creature outside combat, you can learn certain information about its capabilities compared to your own. The GM tells you if the creature is your equal, superior, or inferior in regard to two of the following characteristics of your choice:

\n\n

Signature Maneuver

\n

At 10th level, you choose a maneuver as your signature maneuver. Whenever you use that maneuver, you can roll a d4 and use it instead of expending a Superiority Dice. You may only use this feature once per turn.

\n

Tactical Specialist Combat Superiority

\n

Relentless

\n

Starting at 15th level, when you roll initiative and have no superiority dice remaining, you regain 1 superiority die.

\n

Greater Signature Maneuver

\n

At 18th level, you can choose a second signature maneuver. Additionally, when you use your signature maneuver, you can roll a d6 instead of a d4.

\n

The Tactical Specialist

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelCombat SuperioritySuperiority DiceManeuvers Known
3rdd622
4thd622
5thd622
6thd622
7thd833
8thd833
9thd833
10thd833
11thd1034
12thd1034
13thd1034
14thd1034
15thd1245
16thd1245
17thd1245
18thd1245
19thd1245
20thd1245
"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Tactical%20Specialist.webp"} +{"_id":"SsvsNMkJX1wW2rs6","name":"Gadgeteer Engineering","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Engineer","description":{"value":"

Gadgeteer Engineering

\n

Those engineers who choose the Gadgeteer discipline focus on the ability to craft reusable consumables and items that augment and complement their techcasting abilities.

\n

Bonus Proficiencies

\n

When you choose this discipline at 3rd level, you gain proficiency in gadgeteer's implements. Additionally, when you engage in crafting with gadgeteer's implements, the rate at which you craft doubles.

\n

Gadgeteer Harness

\n

Also at 3rd level, you learn to create and modify adventuring gear utilizing your gadgeteer experience. Over the course of a long rest, you can expend 500 cr worth of materials to create your modified gadgeteer harness. You must have gadgeteer's implements and materials in order to perform this modification.

\n

Your gadgeteer harness is enhanced, requires attunement, can only be used by you, and counts as a tech focus for your tech powers while you are attuned to it. Your gadgeteer harness has 4 modification slots to which you can affix gadgets, and it gains more at higher levels, as shown in the Modification Slots column of the engineer class table. For each modification installed, your tech point maximum is reduced by 1. Over the course of a long rest, you can replace or remove a number of modifications up to your Intelligence modifier (minimum of one).

\n

Some modification effects require saving throws. When you use such an effect from this class, the DC equals your tech save DC.

\n

Projected Barrier

\n

Lastly at 3rd level, as a bonus action while wearing your gadgeteer harness, you can expend a use of your Potent Aptitude to project a barrier on a friendly creature you can see within 30 feet. A creature can only have one barrier active at a time.

\n

Environmental Barrier

\n

You project an environmental barrier that lasts until the end of your next short or long rest. The barrier has a number of hit points equal to the amount rolled on your Potent Aptitude die + your engineer level. Whenever a creature with this barrier takes damage (one of acid, cold, fire, force, lightning, necrotic, poison, psychic, or sonic, chosen by you when you activate the effect), the barrier takes the damage instead. If this damage reduces the barrier to 0 hit points, the creature take any remaining damage.

\n

Physical Barrier

\n

You project a physical barrier that lasts until the end of your next short or long rest. The barrier has a number of hit points equal to the amount rolled on your Potent Aptitude die + half your engineer level (rounded down). Whenever a creature with this barrier takes damage (one of energy, ion, or kinetic, chosen by you when you activate the effect), the barrier takes the damage instead. If this damage reduces the barrier to 0 hit points, the creature take any remaining damage.

\n

Versatile Direction

\n

Beginning at 6th level, you can take a second bonus action on each of your turns.

\n

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

\n

Reinforced Barriers

\n

At 14th level, when you cast a tech power while you have a barrier active, you can restore hit points to the barrier, provided it is within 30 feet of you. You restore a number of hit points equal to twice the power's level, or 1 hit point for an at-will power. This can't increase a barrier's hit points above its initial hit points. If you have multiple barriers active, you can divide these hit points between them as you see fit.

\n

Adaptive Barrier

\n

Starting at 18th level, when a creature who has one of your barriers within 30 feet of you that you can see takes damage, and that damage is of a type that could be affected by that barrier, you can use your reaction to grant them resistance to the triggering damage. If that damage is the same type as the barrier's chosen damage, you instead grant them immunity. Whether resistance or immunity, the barrier immediately drops to 0 hit points.

\n

Gadgeteer Contraptions

\n

If a modification has prerequisites, you must meet them to install it. You can install the modification at the same time that you meet its prerequisites.

\n

Advanced Grounding System

\n

Prerequisite: 13th level

\n

Prerequisite: Prototype Grounding System

\n

While wearing your gadgeteer harness you have immunity to lightning damage.

\n

Auto-Injection Regenerator

\n

Prerequisite: 5th level

\n

You install a special kolto injector into your gadgeteer harness that can inject you with kolto in response to pain. When you take damage, you can use your reaction and expend a Hit Die to regain health as long as the damage would not reduce your hit points to 0.

\n

Autothrusters

\n

Prerequisite: Jet Pack

\n

You can take the Dash and Disengage actions as a bonus action while your jet pack is active.

\n

Climbing Gloves

\n

You craft a set of gloves with a powerful assisted grip. While wearing these gloves, you have a climbing speed of 20 feet, and you have advantage on Strength saving throws and Strength (Athletics) checks that involve climbing.

\n

Darkvision Goggles

\n

You craft a pair of sight-enhancing goggles. While wearing these goggles, you have darkvision to a range of 60 feet. If you already have darkvision, this modification increases its range by 30 feet.

\n

Extended Tank

\n

Prerequisite: 5th level

\n

Prerequisite: Jet Pack

\n

Your jet pack now lasts up to 10 minutes when activated.

\n

Flame Vents

\n

Prerequisite: 9th level

\n

Prerequisite: Jet Pack

\n

You learn the flame sweep tech power and can cast it at first level without using tech points. Once you have used this ability, you cannot use it again until you finish a short or long rest.

\n

Additionally, while your jet pack is active, you can cast flame sweep using your bonus action instead of your action.

\n

Grounding System

\n

While wearing your gadgeteer harness you are immune to the shocked condition.

\n

Integrated Inhibitor

\n

Prerequisite: 5th level

\n

You gain a +1 bonus to your tech save DC. This bonus increases to +2 at 9th level and +3 at 13th level.

\n

Integrated Targeter

\n

Prerequisite: 5th level

\n

You gain a +1 bonus to tech attack rolls. This bonus increases to +2 at 9th level and +3 at 13th level.

\n

Intelligence Core Override

\n

Prerequisite: 9th level

\n

You can cast the override interface tech power at 5th level without spending tech points.

\n

Once you've used this feature, you must complete a long rest before you can use it again.

\n

Jet Pack

\n

You integrate a jet pack into your gadgeteer harness to grant you temporary, limited flight. Activating or deactivating the jets requires a bonus action and, while active, you have a flying speed of 30 feet.

\n

The jet pack lasts for 1 minute before deactivating. Once the jets have been activated, they can't be activated again until you finish a short or long rest.

\n

Mechanical Arm

\n

You create a mechanical arm which mounts to your shoulder, which you can use independently. You can only gain the benefit of items held by two of your arms at any given time.

\n

You can choose this modification twice.

\n

Mimicker

\n

Prerequisite: 9th level

\n

You create a device that attaches to your gadgeteer harness. Your mimicker casts a shadow that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function for 1 minute. Your mimicker is suppressed while you are incapacitated, restrained, or otherwise unable to move.

\n

Miniaturized Hydraulics

\n

Your gadgeteer harness can store 20 pounds of equipment without adding to your encumbrance.

\n

Oil Spill

\n

As an action, you can cast the oil slick tech power without expending tech points. Casting the power in this way does not require concentration, and the oil will remain in place for the full duration of the power.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Powered Grappling Hook

\n

Prerequisite: 9th level

\n

Prerequisite: Wrist-Mounted Grappling Hook

\n

While your wrist-mounted grappling hook is deployed, when you cast a tech power with a range of touch, your hook can deliver the power as if it had cast it.

\n

Prototype Grounding System

\n

Prerequisite: 9th level

\n

Prerequisite: Grounding System

\n

While wearing your gadgeteer harness you have resistance to lightning damage.

\n

Prototype Thruster

\n

Prerequisite: 9th level

\n

Prerequisite: Jet Pack

\n

While your jet pack is activated, your flying speed is now 45 feet.

\n

Quick Start Engine

\n

Prerequisite: 5th level

\n

Prerequisite: Jet Pack

\n

You can now activate your Jet Pack as an object interaction rather than as a bonus action.

\n

Recycled Adrenals

\n

You can augment a single adrenal to regain its charge. This adrenal can only be used by you, and it can only affect you. Once you've used this adrenal, you can't use it again until you finish a short or long rest.

\n

Recycled Explosives

\n

You can augment a single explosive to regain its charge. This explosive can only be used by you, and it uses your tech save DC instead of its own, unless its own DC would be higher. Once you've used this explosive, you can't use it again until you finish a short or long rest.

\n

Recycled Stimpacs

\n

You can augment a single stimpac to regain its charge. This stimpac can only be used by you, and it can only affect you. Once you've used this stimpac, you can't use it again until you finish a short or long rest.

\n

Sentry Turret

\n

You learn how to craft small sentry turrets shaped like globes that can adhere to any surface. As an action or bonus action (your choice), you can throw a sentry to a point you can see within range (30 feet + your Strength modifier x 5). At the end of each of your turns, a deployed sentry automatically targets a hostile creature within 10 feet of it. If multiple targets are available, one is chosen at random. The target must make a Dexterity saving throw. On a failed save, it takes 1d4 energy damage and gains 1 slowed level until the end of your next turn. If a creature would be targeted by more than one of these sentries, it only makes this saving throw once, taking an additional d4 damage for each sentry beyond the first.

\n

The sentries have 1 hit point, an armor class of 10, and can be repaired over the course of a long rest. Each sentry lasts for 1 minute before deactivating. You can maintain a number of sentries equal to your Intelligence modifier. Once a sentry has been activated, it can't be activated again until you finish a short or long rest.

\n

Shocking Hook

\n

Prerequisite: 9th level

\n

Prerequisite: Wrist-Mounted Grappling Hook

\n

After hitting a creature with your grappling hook, you can use the connection to deliver an at-will tech power. As a bonus action, you can cast an at-will tech power at the target with a range of touch. If the power requires an attack roll, you have advantage. If the target requires a saving throw, the target has disadvantage.

\n

Once you've used this feature, you can't use it again until you recover the harpoon.

\n

Stealth Field Generator

\n

Prerequisite: 9th level

\n

You create an augmented belt that functions as a portable, personal cloaking device. Activating or deactivating the generator requires a bonus action and, while active, you have advantage on Dexterity (Stealth) ability checks that rely on sight. The generator lasts for 1 minute. This effect ends early if you make an attack or cast a force- or tech- power.

\n

Once the belt has been activated, it can't be activated again until you finish a short or long rest.

\n

Shocking Barrier

\n

Prerequisite: 5th level

\n

You enhanced your barriers. Whenever a creature with one of your barriers active takes damage from a creature within 5 feet of it, the damaged creature can roll your Potent Aptitude die, dealing the result of the die as lightning damage to the creature that damaged it.

\n

Truesight Goggles

\n

Prerequisite: 11th level

\n

Prerequisite: Darkvision Goggles

\n

You modify your goggles with a toggle allowing you to briefly gain enhanced sight. As a bonus action, you can activate the truesight feature of your goggles. When toggled on, for the next minute your goggles now automatically dispel illusions and can detect invisibility, as with truesight.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Weapon Integration

\n

You can integrate a single weapon that weighs no more than 8 lb. into your gadgeteer harness. While integrated, that weapon gains the hidden and fixed properties.

\n

Wrist-Mounted Grappling Hook

\n

You craft a wrist-mounted grappling hook weapon attached to a tightly coiled cord. With this contraption, you can make a ranged weapon attack with a range of 30/60. On a hit, it deals 1d4 kinetic damage. This attack can target a surface, object, or creature.

\n

A creature struck by this attack is impaled by the hook. As an action, a creature can attempt to remove the hook. Removing the hook requires a Strength check. While the hook is stuck in the target, you are connected to the target by a 60 foot cable.

\n

While the hook is deployed, you can use your bonus action to activate the reel, pulling yourself to the location if the target is your size or larger. A creature or object smaller than you is pulled to you. Alternatively, you can opt to release the cable (no action required).

\n

Once you've used this feature, you can't use it again until you recover and reinsert the hook as an action.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Gadgeteer%20Engineering.webp"} +{"_id":"TgUiU6MrAP7Xyj3H","name":"Sawbones Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Sawbones Practice

\n

Those operatives who choose the Sawbones Practice have studied the humanoid body on a more intimate level than other operatives. While others may know where best to stab in order to kill, you also know how to repair the wounds you inflict, as well as how to make them even deeper. You delve into the secrets of the body, learning as much medical knowledge as you can get your hands on, regardless of how dirty the work becomes.

\n

General Practice

\n

When you choose this practice at 3rd level, you gain proficiency in Medicine, and you can use your Intelligence modifier instead of your Wisdom modifier for checks made with it.

\n

Additionally, you can expend one use of a medkit to help revitalize your wounded allies during a short rest. If you or any friendly creatures within 30 feet of you regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.

\n

The extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.

\n

Debilitating Strike

\n

Also at 3rd level, you learn to apply your anatomical knowledge in direct combat, in order to hinder your targets. When you deal Sneak Attack damage to a creature, you may choose to forgo two of your Sneak Attack Dice in order to hinder the creature, provided they have the appropiate physiology.

\n

Some of your debilitating strikes require your target to make a saving throw to resist the debilitating strike's effects. The saving throw DC is calculated as follows:

\n

Debilitating Strike save DC = 8 + your proficiency bonus + your Intelligence modifier.

\n

Bleeding Wound

\n

You attempt to create a lingering wound in the target for one minute. The target must make a Constitution saving throw. On a failed save, at the start of each of the target's turns, it loses 1d6 hit points and repeats this saving throw, ending the effect on a success. This damage can't be reduced in any way.

\n

Crippling Pain

\n

You attempt to cause cause distracting pain in the target. The target must make a Constitution saving throw. On a failed save, it has disadvantage on attack rolls until the end of your next turn.

\n

Hampering Shot

\n

You attempt to hamper the target's movement. The target must make a Constitution saving throw. On a failed save, its movement speed is reduced by half and it makes Dexterity saving throws with disadvantage until the end of its next turn.

\n

Swift Surgery

\n

Beginning at 9th level, you know how to quickly patch up wounds, given the right tools. You are able to use a medkit or administer a medpac as a bonus action, and when you use a medkit to stabilize a dying creature, that creature also regains a number of hitpoints equal to your Intelligence modifier.

\n

Dosage Control

\n

Starting at 13th level, your knowledge of medicine allows you to partition and ration healing supplies very effectively, without impacting its potency. Over the course of 1 hour, which can be done during a rest, you can carefully measure and mark out dosages of a medpac within reach. The medpac can now be used twice before it is consumed.

\n

At your DM's discretion, you may be able to use this feature on other pacs, stims, or adrenals, most likely involving an ability check to succeed.

\n

Self-Sustain

\n

At 17th level, you have advantage on death saving throws.

\n

Additionally, when you are stabilized, you regain 1 hit point. Once you've used this feature, you can't use it again until you finish a short or long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Sawbones%20Practice.webp"} +{"_id":"UZCwqqLLp7IBjqku","name":"Politician Pursuit","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scholar","description":{"value":"

Politician Pursuit

\n

Politicians study social & political sciences. Those scholars who choose the Politician Pursuit know how to best present themselves to manipulate the masses into doing their bidding or allow them and their allies to carry out their business without impediment. They also understand the importance of self-preservation for a political figure.

\n

Silver Tongue

\n

When you choose this pursuit at 3rd level, you learn one language of your choice. Additionally, you gain a bonus to your choice of Deception, Intimidation, Performance, or Persuasion equal to your Intelligence modifier.

\n

Motivating Diplomat

\n

Also at 3rd level, when you are the target of your Critical Analysis feature, you and all allies within 10 feet of you gain a bonus to their AC equal to half your Intelligence modifier (rounded down).

\n

Additional Maneuvers

\n

Lastly at 3rd level, you gain access to new maneuvers which reflect the progress of your studies into the political world. Whenever you learn a new maneuver, you can choose from any of the following as well. The maneuvers are listed in alphabetical order.

\n

Call to Arms

\n

If you are surprised at the start of combat and aren't incapacitated, you can expend one superiority die to act normally. Additionally, on your first turn in combat, as a bonus action you can make a call to arms. When you do so, a number of creatures equal to the amount rolled on the superiority die that you choose within 30 feet who can see or hear you may act normally on their first turn.

\n

Call the Guards

\n

When a creature makes an attack roll against you, you can use your reaction and expend a superiority die and command a willing ally within 5 feet of that creature to use their reaction to intercede. The creature is then forced to make an attack on the ally instead. If the attack misses, the ally can immediately make a weapon attack against that creature as a part of that same reaction. Roll the superiority die, and add the result to the ally's attack roll.

\n

Charge

\n

As a bonus action on your turn, you can expend one superiority die to spurn your allies to move. Until the start of your next turn, creatures you choose within 10 feet of you who can see or hear you can move an additional distance equal to 5 times the superiority die rolled on their turn and ignore unenhanced difficult terrain.

\n

Encouraging Speech

\n

You can expend a superiority die to give an encouraging speech, spending the next minute rallying your allies. You grant a number of creature up to your Intelligence modifier temporary hit points equal to the amount rolled on the superiority die + your Intelligence modifier.

\n

Incite

\n

On your turn, you can use an action and expend one superiority die to bolster the resolve of one of an ally. When you do so, choose an ally who can see or hear you within 30 feet of you. The ally can add your Intelligence modifier to every damage roll they make until the start of your next turn.

\n

Overwhelming Presence

\n

As an action, you can make a Charisma (Persuasion) or Charisma (Intimidation) skill check and expend one superiority die to attempt to charm or frighten a humanoid creature who can see or hear you within 60 feet. Add the superiority die to the roll. The target makes a contested Wisdom (Insight) check. If your check succeeds, the target is charmed by you if you used Persuasion, or frightened of you if you used Intimidation, until the end of your next turn.

\n

Self-Preservation

\n

As a reaction when you make a saving throw against an effect you can see, you can expend a superiority die and add the result. You can use this maneuver before or after making the saving throw, but before any effects of the saving throw are det-ermined.

\n

Steady the Nerves

\n

As an action, you can expend one superiority die to strengthen your allies' defences. Roll a superiority die. Until the end of your next turn, you and all allies within 5 feet of you when you use this action has a bonus to any saving throws they make equal to amount rolled.

\n

Tyrannical Strike

\n

When you hit a creature with a weapon attack, you can expend one superiority die and use your reaction to issue a one-word command to a creature who can see or hear you. You add the superiority die to the attack's damage roll, and the target must succeed on a Wisdom saving throw. On a failed save, the target must follow the command on its next turn.

\n

The target automatically succeeds if it is immuned to charm, it doesn't understand your language, or if your command is directly harmful to it.

\n

Force of Personality

\n

Beginning at 6th level, as an action, you suggest a course of activity (limited to a sentence or two) to influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the effect.

\n

The target must make a Wisdom saving throw against your maneuver save DC. On a failed save, the target is charmed by you, and it pursues the course of action you described to the best of its ability. The suggested course of action can continue for up to 24 hours. If the suggested activity can be completed in a shorter time, the effect ends when the subject finishes what it was asked to do.

\n

You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that an officer givers her gun to the first smuggler she meets. If the condition isn't met before the effect ends, the activity isn't performed.

\n

If you or any of your companions damage the target, the effect ends.

\n

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

\n

Reassemble

\n

Starting at 9th level, you may use to a bonus action to call your allies towards you. When you do so, choose a number of creatures that you can see within 60 feet of you equal to your Intelligence modifier (minimum of one). They can use their reaction to immediately move directly towards you up to their movement speed. This movement does not provoke opportunity attacks.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Beguiling Presence

\n

Once you've reach 17th level, humanoids within 60 feet are particularly susceptible to your presence. Humanoids within range have disadvantage on saving throws against any charm or fear effects from you.

\n

Discoveries (Politician)

\n

When you select this pursuit, you gain access to new discoveries which reflect the progress of your studies into the political world. Whenever you learn a new discovery, you can choose from any of the following as well. The discoveries are listed in alphabetical order.

\n

Charming Feint

\n

Allies within range of your Motivating Diplomat feature also gain a bonus to their damage roll equal to half your Intelligence modifier (rounded down).

\n

Demanding Leader

\n

Prerequisite: 5th level

\n

The range of each of your maneuvers increases by 10 feet. If the range is touch, it becomes 10 feet.

\n

Dominating Presence

\n

Prerequisite: 15th level

\n

As a bonus action, you can call out to a humanoid who can understand you that is charmed by you or frightened of you to direct their next action. The target must succeed a Wisdom saving throw against your maneuver save DC. On a failed save, until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do.

\n

During this time you can use your reaction to force the creature to use its reaction.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Influencer

\n

Prerequisite: 5th level

\n

The range on the your Motivating Diplomat feature is increased to 15 feet.

\n

Reliable Words

\n

Prerequisite: 9th level

\n

When you make a Deception, Intimidation, or Persuasion skill check, you may treat any roll 9 or lower as if you had rolled a 10.

\n

Social Opportunist

\n

You can add half your proficiency bonus (rounded down) to any Charisma check you make that doesn't already include your proficiency bonus.

\n

Tyrant's Ferocity

\n

You have advantage on any attack against a creature that is charmed by you or frightened of you.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Politician%20Pursuit.webp"} +{"_id":"UsIUJiNPmFWbEgjK","name":"Audiotech Engineering","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Engineer","description":{"value":"

Audiotech Engineering

Those engineers who choose the Audiotech Engineering focus on using a specially modified instrument to use music to assist their allies and disrupt their enemies.

Bonus Proficiencies

When you choose this discipline at 3rd level, you gain proficiency in three musical instruments of your choice, as well as the Performance skill. Additionally, you can use Intelligence instead of Charisma when you make a Performance check while wielding your modified instrument.

Modified Instrument

Also at 3rd level, you learn to modify an instrument utilizing your audiotech knowledge. Over the course of a long rest, you can expend 500 cr worth of materials to modify a single instrument. You must have the instrument, materials, and tinker's tools in order to perform this modification.

Your modified instrument is enhanced, requires attunement, can only be used by you, and counts as a tech focus for your tech powers while you are attuned to it. Your modified instrument has 4 modification slots, and it gains more at higher levels, as shown in the Modification Slots column of the engineer class table. For each modification installed, your tech point maximum is reduced by 1. Over the course of a long rest, you can replace or remove a number of modifications up to your Intelligence modifier (minimum of one).

Some modification effects require saving throws. When you use such an effect from this class, the DC equals your tech save DC.

Potent Amplitude

Lastly at 3rd level, as an action while wielding your modified instrument, you can begin performing an enhanced song, which lasts for 1 minute. While playing a song, you gain access to a new use for your Potent Aptitude, as determined by the song, listed below. You can end your song at any time, no action required.

Whenever you take damage while playing your song, you must make a Constitution saving throw to continue playing. The DC equals 10 or half the damage you take, which number is higher. If you take damage from multiple sources, you must make a separate saving throw for each source of damage.

When you cast a damage dealing tech power while playing your song that requires an attack roll or saving throw, you can cause that power to instead deal sonic damage. If you do so, instead of an attack roll or saving throw, the power instead requires a Constitution saving throw.

Your song ends early if you are incapacitated or die, or if you are no longer holding your modified instrument.

You can initiate playing an enhanced song twice. You regain all expended songs when you finish a short or long rest.

Song of Battle

When an ally within 60 feet of you that can hear you deals damage to a creature, you can use your reaction to expend one use of your Potent Aptitude, adding the result of the die to the damage dealt.

Song of Support

When an ally within 60 feet of you that can hear you makes a saving throw against a harmful effect, you can use your reaction to expend one use of your Potent Aptitude, adding the result of the die to their saving throw.

Song of Disruption

When an enemy within 60 feet of you that can hear you makes a saving throw, you can use your reaction to expend one use of your Potent Aptitude, subtracting the result of the die from their saving throw.

Concussive Blast

Beginning at 6th level, you add your Intelligence modifier (a minimum of +1) to any damage you deal with tech powers and class features that deal sonic damage.

Smooth Rhythm

At 14th level, whenever you use your Potent Aptitude while your playing an enhanced song, you can roll a d6 and use it instead of expending a Potent Aptitude Dice.

Legendary Coda

Starting at 18th level, you've gained mastery over your modified instrument. As an action, you can end your enhanced song in a triumphant blast of power with an effect determined by the song you are playing.

Once you've used this feature, you must complete a long rest before you can use it again.

Battle Crescendo

Choose up to 10 creatures of your choice that you can see and that can hear your song. Each must make a Constitution saving throw. On a failed save, a target takes 14d6 sonic damage and is stunned. On a success, it takes half damage and isn't stunned. If a creature is killed by this power, its head explodes.

Support Crescendo

Choose up to 10 creatures of your choice that you can see and that can hear your song. Once in the next minute, each creature can, as a free action in response to taking damage, choose to halve that damage. Additionally, if the damage would reduce them to 0 hit points, they are instead reduced to 1.

Disruption Crescendo

Choose up to 10 creatures of your choice that you can see and that can hear your song. Each creature must succeed on a Constitution saving throw or be paralyzed for 1d4+1 turns. If a creature affected by this feature is damaged in any way, the effect ends for that creature.

Audiotech Modifications

If a modification has prerequisites, you must meet them to install it. You can install the modification at the same time that you meet its prerequisites.

Advanced Battle Enhancement

Prerequisite: 15th level Prerequisite: Prototype Battle Enhancement While playing your Song of Battle, your tech powers and class features ignore resistance to sonic damage, and immunity to sonic damage is instead treated as resistance from any creature within range of your song that can hear you.

Additionally, when you use your Battle Song Enhancement feature, you create a fourth burst.

Advanced Disruption Enhancement

Prerequisite: 15th level Prerequisite: Prototype Disruption Enhancement While playing your Song of Disruption, any hostile creature within range of your song that can hear you must make a Constitution saving throw at the end of each of its turns to maintain concentration on the power.

Advanced Support Enhancement

Prerequisite: 15th level Prerequisite: Prototype Support Enhancement While playing your Song of Support, allies add your Intelligence modifier to their death saving throws (minimum of +1). If this amount would increase the roll of the d20 to 20 or greater, the creature regains 1 hit point.

Battle Song Enhancement

Prerequisite: 5th level While playing your Song of Battle, as an action, you can send forth busts of directed sonic energy, make two ranged power attacks. These attacks can target the same creature different ones. Make separate attack rolls for each burst. The attack has a range equal to the radius of your song, and deals 1d8 sonic damage on a hit.

Disruption Song Enhancement

Prerequisite: 5th level While playing your Song of Disruption, as an action, you can choose a number of creatures concentrating on a power equal to your Intelligence modifier (a minimum of one) within range of your song that can hear you, and force them to make a Concentration saving throw. If you cause at least one creature to lose concentration on a power using this feature, you can use your reaction to make all creatures that lost concentration take damage equal to your Intelligence modifier.

Enthralling Performance

Prerequisite: 13th level Prerequisite: Hypnotic Melody For the duration of an enhanced song you play, whenever any creature that can hear your song tries to attack you for the first time on a turn, the attacker must make a Charisma saving throw. On a failed save, it can't attack you on this turn, and it must choose a new target for its attack or the attack is wasted. On a successful save, it can attack you on this turn, but it has disadvantage on any saving throw it makes against your powers or features on your next turn.

Once you've used this feature, you must complete a long rest before you can use it again.

Finding My Way

Prerequisite: Rush While you are playing an enhanced song, when a creature makes a melee attack roll against you, you can use your reaction to move 5 feet without provoking opportunity attacks, imposing disadvantage on the roll.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Hypnotic Melody

As an action while wielding your modified instrument, you can begin to play a song woven with subtle hypnotic influence. Choose a number of creature up to your Intelligence modifier. If those creatures listen to this song for a full minute, they must succeed on a Wisdom saving throw or become charmed by you for 1 minute. Creatures that succeed the saving throw are not aware that you attempted to influence them, nor are creatures that failed their saving throw once the power ends.

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

Inaudible Casting

Prerequisite: 7th level Prerequisite: Simple Melodies When you cast a tech power or make use of a feature that requires playing your modified instrument, you can choose to do so quietly. Creatures have disadvantage on Intelligence (Investigation) and Wisdom (Perception) checks that rely on sound to determine you cast a tech power.

Long Range Noise

Prerequisite: 13th level The radius of your songs increases to 120 feet. Additionally, any tech power you cast with your modified instrument that deals sonic damage and has a range of 10 feet or greater gains a range of 120 feet.

Magnifying Device

Prerequisite: 5th level You gain a +1 bonus to tech attack rolls. This bonus increases to +2 at 11th level and +3 at 17th level.

Overwhelming Soundwaves

Prerequisite: 15th level While playing, creatures of your choice treat a 15-foot-radius sphere around you as difficult terrain. Additionally, as an action, you can cause each affected creature to make a Constitution saving throw, taking 3d8 sonic damage on a failed save.

Prototype Battle Enhancement

Prerequisite: 9th level Prerequisite: Battle Song Enhancement While playing your Song of Battle, when you cast a tech power or use a class feature that affects other creatures within the radius of your song, you can choose a number of them equal to 1 + the power's level. The chosen creatures automatically succeed on their saving throws against the power, and they take no damage if they would normally take half damage on a successful save.

Additionally, when you use your Battle Song Enhancement feature, you create a third burst.

Prototype Disruption Enhancement

Prerequisite: 9th level Prerequisite: Disruption Song Enhancement While playing your Song of Disruption, when a creature you can see that can hear you attempts to cast a power, you can use your reaction to cast the tech override power at 3rd level. When you cast this power using this feature, the power works against both tech and force powers, and when you make the techcasting ability check as a part of this casting, you add double your proficiency bonus to the check, instead of your normal proficiency bonus.

Once you've used this feature, you must complete a short or long rest before you can use it again.

Prototype Support Enhancement

Prerequisite: 9th level Prerequisite: Support Song Enhancement While playing your Song of Support, when you use your Song of Support's Potent Amplitude feature, the target instead takes no damage if they succeed on the saving throw, and only half damage if they fail.

Restful Melody

Over the course of a short rest, you can play a rejuvenating song to assist in the recovery of your allies. If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest, each of those creatures regains an extra 1d6 hit points.

The extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d 10 at 13th level, and to 1d12 at 17th level.

Rush

While you are playing an enhanced song, your speed increases by 10 feet, and opportunity attacks made against you have disadvantage.

Sharp Noise

As an action while wielding your modified instrument, choose a creature you can see. If it can hear you, it must succeed on a Constitution saving throw or take 1d4 sonic damage and have disadvantage on its next attack roll before the end of its next turn.

This feature's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).

Shock Mount

Prerequisite: 5th level You gain a +1 bonus to your tech save DC. This bonus increases to +2 at 11th level and +3 at 17th level.

Simple Melodies

When you are holding your modified instrument, and not actively playing a song, any tech power that you could cast that could have its damage type altered by your Potent Amplitude feature can be cast as if used with Potent Amplitude.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Sonar Pulse

As an action while wielding your modified instrument, you can release a wave of sound that provides feedback on your surroundings. For the next minute, you have advantage on Wisdom (Perception) and Intelligence (Investigation) checks to search for hidden doors, traps, or invisible creatures.

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

Song Flow

Prerequisite: 11th level While playing an enhanced song, you can use your bonus action to change from one song to another.

Support Song Enhancement

Prerequisite: 5th level While playing your Song of Support, when you cast a tech power that restores hit points or grants temporary hit points, the amount restored or granted is increased by an amount equal to your Intelligence modifier (minimum of +1).

Weapon Integration

You can integrate a single weapon that weighs no more than 8 lb. into your instrument. While integrated, that weapon gains the hidden property.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.toolProf.value","value":"music","mode":"+","targetSpecific":false,"id":2,"itemId":"UsIUJiNPmFWbEgjK","active":false,"_targets":[],"label":"Traits Tool Prof"},{"modSpecKey":"data.traits.toolProf.value","value":"music","mode":"+","targetSpecific":false,"id":3,"itemId":"UsIUJiNPmFWbEgjK","active":false,"_targets":[],"label":"Traits Tool Prof"},{"modSpecKey":"data.traits.toolProf.value","value":"music","mode":"+","targetSpecific":false,"id":4,"itemId":"UsIUJiNPmFWbEgjK","active":false,"_targets":[],"label":"Traits Tool Prof"},{"modSpecKey":"data.traits.toolProf.value","value":"aud","mode":"+","targetSpecific":false,"id":5,"itemId":"UsIUJiNPmFWbEgjK","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Archetypes/Audiotech%20Engineering.webp"} +{"_id":"V4vCxmTwJFxi0HGM","name":"Demolitions Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Demolitions Specialist

\n

Those fighters who choose to become Demolitions Specialists are experts in using explosives in combat. They have an explosive for every situation, whether it be breaching a fortified bunker, taking down a walker, or simply demonstrating that in combat, standing too close to your squadmates can be fatal.

\n

Bonus Proficiencies

\n

When you choose this specialty at 3rd level, you gain proficiency in demolitions kit. Additionally, when you would install a breaching charge, you can do so in half the time.

\n

Explosive Charge

\n

Also at 3rd level, you learn to create a number of small explosives known as charges. Over the course of a short or long rest, you can create a number of charges equal to your Intelligence modifier. You must have a demolitions kit in order to create these charges. Your charges can only be used by you, and they lose their potency at the end of your next short or long rest.

\n

Once per turn, when you would make a ranged weapon attack, you can instead throw one of your charges. Your charges have a range equal to 30 feet + your Strength modifier x 5. You can throw a charge at a point you can see within range. Each creat-ure within 5 feet must make a Dexterity sav-ing throw (DC = 8 + your proficiency bonus + your Intelligence modifier + any bonuses to ranged weapon attack rolls). A creature takes 2d4 + your Intelligence modifier kin-etic damage on a failed save, or half as much on a successful one.

\n

The damage of your charges increases to 3d4 at 7th level and 4d4 at 15th level.

\n

Cause and Effect

\n

Beginning at 7th level, you learn to throw grenades as a bonus action. Additionally, when a creature fails a saving throw against a charge or grenade, you can expend a superiority die to apply one of your maneuvers. You can only use this feature once per grenade.

\n

Volatile Reflexes

\n

At 10th level, when a creature within 5 feet of you makes a melee attack against you, you can use your reaction and throw a charge behind the target. If the target fails its saving throw against the charge, you impose disadvantage on the attack roll made against you.

\n

Backup Plans

\n

Starting at 15th level, when you roll initiative and have no charges remaining, you can create 2 charges. Additionally, whenever you create a charge, you can change the damage type to acid, energy, fire, ion, lightning, or sonic.

\n

Bombard

\n

At 18th level, when a creature fails its saving throw against a charge or grenade thrown by you, it has disadvantage on the next Dexterity saving throw it makes before the end of your next turn.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Demolitions%20Specialist.webp"} +{"_id":"VRfBQKAhumWExGiy","name":"Path of Witchcraft","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of Witchcraft

\n

The Force connects all living things. Those sentinels who follow the Path of Witchcraft use that connection to summon the aid of nature, both beasts and the elements, adapting them to their will.

\n

Wild Power

\n

Starting when you choose this calling at 3rd level, you learn the enfeeble force power, which does not count against your total powers known. Additionally, you can use Wisdom or Charisma as your forcecasting ability for it, and you can use all three Force-Empowered Self options when you cast it as your action and the target fails its save. Finally, you add your Wisdom or Charisma modifier (your choice, minimum of one) to damage rolls with it.

\n

Beast Companion

\n

Also at 3rd level, you learn to create a powerful bond through the Force with your own personal beast companion.

\n

Choose your beast, which is detailed at the end of this calling. Over the course of 8 hours, which can be done during a long rest, you can expend 500 cr worth of herbs and food to call forth an animal from the wilderness to serve as your companion.

\n

If your beast dies, or you want to bond with a different creature, you must first break the bond with your current beast companion. You may only have one beast companion at a time.

\n

Your beast gains a variety of benefits while it is bonded to you:

\n\n

Additionally, while your beast companion is within 5 feet of you, you gain the following benefits:

\n\n

This radius increases to 10 feet at 7th level, 20 feet at 13th level, and 30 feet at 18th level.

\n

Nature's Vigor

\n

At 7th level, you've learned to attune your senses with nature. If you spend at least 1 minute meditating while in nature, you gain the following benefits for 1 hour:

\n\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Beastwarden

\n

By 13th level, your bond with your beast companion strengthens, granting the following benefits while your beast companion is within 20 feet of you:

\n\n

This radius increases to 30 feet at 18th level.

\n

Stormcaller

\n

At 18th level, you've learned to command the elements to summon a fierce storm in a 30-foot radius around you. As an action, you can gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you use this feature, you can’t use it again until you finish a long rest.

\n

Generating Your Beast

\n

Choosing your beast companion is an integral part of being a Witchcraft Sentinel. Your beast takes a form of your choosing. Alternatively, your GM can choose what form your beast takes based on your environment.

\n

Once you've selected your type of beast, you assign your beast companion's ability scores. Your beast's Intelligence score is 6, and you assign its other ability scores using a limited standard array (16, 14, 14, 12, 10) as you see fit.

\n

Beast Features

\n

All beasts share the following traits.

\n

Hit Points

\n\n

Proficiencies

\n\n

Features

\n\n

Bestial Traits

\n

The traits are presented in alphabetical order.

\n

Aerial

\n

Your beast companion has a flying speed equal to its walking speed, and opportunity attacks made against it have disadvantage.

\n

Amphibious

\n

Your beast companion has a swimming speed equal to its walking speed, and it can breathe air and water.

\n

Burrower

\n

Your beast companion has a burrowing speed equal to its walking speed, and it has blindsight out to 10 feet.

\n

Charger

\n

If your beast moves at least half its speed straight towards a target before making a melee attack, it deals an additional 1d8 damage on a hit.

\n

Climber

\n

Your beast companion has a climbing speed equal to its walking speed, and it has advantage on Strength saving throws and Strength (Athletics) checks that involve climbing.

\n

Darkvision

\n

Your beast companion is accustomed to low-light environments. Your beast can see in dim light within 60 feet as if it were bright light, and in darkness as if it were dim light. Your beast can't discern color in darkness, only shades of gray.

\n

Evasive

\n

Your beast companion can take the Disengage action as a bonus action.

\n

Force Adept

\n

Prerequisite: Force Sensitive
Your beast companion knows one 2nd-level force power of your choice, and once per long rest it can cast it at 2nd-level without expending force points. Your beast's forcecasting ability is Wisdom or Charisma (depending on power alignment).

\n

Force Resistance

\n

Your beast companion has advantage on saving throws against force powers.

\n

Force-Sensitive

\n

Your beast learns one at-will force power and one 1st-level force power, which it can cast at its lowest level once per long rest. Your beast's forcecasting ability is Wisdom or Charisma (depending on power alignment). At-will powers chosen in this way do not scale with higher levels.

\n

Grappler

\n

When your beast hits with a melee weapon attack, it can use a bonus action to attempt to grapple the target. On a success, the target is both grappled and restrained, and your beast can't attack again while it has a creature grappled.

\n

Heavy Hide

\n

Your beast companion's armor class becomes 14.

\n

Keen Hearing

\n

Your beast companion has advantage on Wisdom (Perception) checks that rely on hearing.

\n

Keen Sight

\n

Your beast companion has advantage on Wisdom (Perception) checks that rely on sight.

\n

Keen Smell

\n

Your beast companion has advantage on Wisdom (Perception) checks that rely on smell.

\n

Light Hide

\n

Your beast companion's armor class becomes 11 + its Dexterity modifier.

\n

Medium Hide

\n

Your beast companion's armor class becomes 13 + its Dexterity modifier, to a maximum of +2.

\n

Natural Camouflage

\n

When your beast companion attempts to hide, it can opt to not move on its turn. If it avoids moving, it is considered lightly obscured until it moves.

\n

Nimble Weapon

\n

Your beast companion can use Dexterity instead of Strength for its attack and damage rolls.

\n

Pack Tactics

\n

Your beast companion has advantage on an attack roll against a creature if at least one ally of your beast companion is within 5 feet of the creature and the ally isn't incapacitated.

\n

Pouncer

\n

If your beast moves at least half its speed straight toward a creature and hits it with a melee attack, the creature must make a Strength saving throw (DC = 8 + your beast's proficiency bonus + its Strength modifier). If the creature is larger than your beast, it makes this save with advantage. On a failed save, the creature is knocked prone, and your beast can make one additional attack against it as a bonus action.

\n

Powerful Build

\n

Your beast companion counts as one size larger when determining its carrying capacity and the weight it can push, drag, or lift.

\n

Rampager

\n

If your beast reduces a creature to 0 hit points with a melee attack on its turn, your beast can take a bonus action to move up to half its speed and make a melee attack.

\n

Ranged Weapon

\n

Your beast companion has a natural ranged weapon, such as a spitter or tail spikes. It has a normal range of 30 feet and a long range of 90 feet, and on a hit it deals kinetic damage equal to its natural weapon damage die.

\n

Reach Weapon

\n

Your beast companion has a natural weapon with reach, such as a tail or wings. It has the reach property, and on a hit it deals kinetic damage equal to its natural weapon damage die.

\n

Size: Huge

\n

Prerequisite: Size Large
Your beast companion's size is Huge. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d12, its natural weapon damage die becomes a d12, and its walking speed increases to 40.

\n

Size: Large

\n

Prerequisite: Size Medium
Your beast companion's size is Large. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d10, its natural weapon damage die becomes a d10, and its walking speed increases to 35.

\n

Size: Medium

\n

Prerequisite: Size Small
Your beast companion's size is Medium. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d8, its natural weapon damage die becomes a d8, and its walking speed increases to 30.

\n

Size: Small

\n

Your beast companion's size is Small. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d6, its natural weapon damage die becomes a d6, and its walking speed increases to 25.

\n

Sturdy-Legged

\n

Your beast companion's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start, and it has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.

\n

Swift

\n

Your beast companion can take the Dash action as a bonus action.

\n

Tremorsense

\n

Your beast companion gains tremorsense out to 30 feet.

\n

Venomous Weapon

\n

When your beast companion deals damage to a creature, it must make a Constitution saving throw (DC = 8 + your beast's proficiency bonus + your beast's Constitution modifier) or become poisoned until the end of its next turn.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20Witchcraft.webp"} +{"_id":"Vtk1Pw4AILqZk27u","name":"Kyuzo Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Kyuzo Order

\n

Monks of the Kyuzo Order turn weapon throwing into a true art form. Inspired by the skill of native kyuzo wielding their war helmets as both shield and weapon, these monks utilize any thrown object they can find to defend themselves and others while they attack enemies from angles both surprising and devastating.

\n

Flurry of Throws

\n

When you choose this order at 3rd level, you've reached new heights at throwing weapons. When you take the Attack action and attack with a weapon with the thrown property, you can use your bonus action to make an additional attack with a weapon with the thrown property, or you can spend 1 focus point to make two attacks with weapons with the thrown property as a bonus action. Additionally, when you throw an improvised weapon, you are considered proficient in it, and it use your Martial Arts die instead of its 1d4.

\n

Intercept

\n

Also at 3rd level, you've learned to use thrown weapons to intercept projectiles traveling towards your allies. When you are wielding a weapon with the thrown property with which you are proficient, and a creature within your weapon's normal range is hit by a ranged weapon attack, you can use your reaction to throw your weapon to intercept the projectile. When you do so, the damage the creature takes from the attack is reduced by 1d10 + your Dexterity modifier + your monk level. If the weapon has the returning property, it then returns to your hand.

\n

Scattering Stance

\n

At 6th level, when you take the Dodge action, until the start of your next turn you gain a number of special reactions equal to your proficiency bonus that you can only use for your Intercept feature. You can only take one reaction per turn.

\n

Curved Throw

\n

Starting at 11th level, you can curve your throws behind cover. When you make an attack roll with a weapon with the thrown property, you can spend 1 focus point to cause the target to gain no benefit from shields or cover, unless that cover is full cover.

\n

Relentless Assault

\n

At 17th level, when you make multiple weapon attacks with thrown weapons against the same target on your turn, each attack after the first gains a +1 bonus to its attack roll, cumulatively, to a maximum bonus of +6.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Kyuzo%20Order.webp"} +{"_id":"Wdi8eckrcxpxQL3p","name":"Way of Suggestion","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of Suggestion

\n

There is power in a light touch, and no one knows this better than the consular. Those consulars who follow the Way of Suggestion have honed their attunement to the Force, allowing them to disappear, despite being in plain sight.

\n

Subtle Control

\n

At 3rd level, you can befuddle a creature's mind with nothing but a gesture. As an action, you can cause a creature you can see within 30 feet to make a Wisdom saving throw against your universal force save DC. On a failed save, you can force the creature to believe or forget a single aspect of a conversation, observation or encounter it had that you were present for in the past 10 minutes. Whether the creature succeeds or fails its saving throw, you can't use this feature on it again until you finish a long rest.

\n

Additionally, creatures who attempt to detect your use of the Force have disadvantage on ability checks to do so, and if a creature has the sense Force or Force sight power active, it must succeed on a universal forcecasting ability check against your universal force save DC in order to notice your usage of the Force, your alignment within the Force, or how strong your connection to the Force is.

\n

Out of Mind

\n

At 6th level, you can erase yourself from a single creature's sight momentarily. As a bonus action, choose a creature within 60 feet of you. That creature must make a Wisdom saving throw against your univesal force save DC. On a failed save, you become invisible to that creature for 1 minute, or until you deal damage to it with an attack or a Force power.

\n

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

\n

Delicate Potency

\n

Beginning at 10th level, your mind-affecting powers are particularly potent. When you cast cloud mind, dominate mind, mass coerce mind or dominate monster, you can choose to treat the power as if cast at your Max Power Level.

\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

Delayed Effect

\n

At 14th level, when you cast a Force power, you can delay the effects of the Force power for up to a number of rounds equal to half your consular level. If you do so, the power immediately takes effect at the start of your turn, after the specified number of round have passed.

\n

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

\n

Subtle Presence

\n

At 18th level, you've learned to weave the Force around you in a cloak of your choice. As an action, you can focus the Force for 10 minutes. For the duration, you gain your choice of one of the following effects.

\n

You can use each feature once. You regain all expended uses when you complete a long rest.

\n

Cloak of Fright

\n

Each creature of your choice that is within 60 feet must succeed on a Wisdom saving throw against your universal force save DC or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.

\n

Cloak of Invisibility

\n

You and everything you are wearing or carrying become invisible to creatures of your choice. If you damage a creature or affect it with a Force power, it can make a Wisdom saving throw against your universal force save DC. On a success, you are no longer invisible to that creature.

\n

Cloak of Memory

\n

Creatures that see you or any allies within 30 feet of you during this time cannot recall your physical appearance, your mannerisms, or any other identifying features.

\n

Creatures that interact with you must make a Wisdom saving throw against your universal force save DC once the interaction ends. You can choose to exclude a creature from this effect. On a failed save, the creature forgets all details of the interaction, rationalizing any of its outcomes.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20Suggestion.webp"} +{"_id":"X3FsoSbXFXkvJvZO","name":"Path of Shadows","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of Shadows

\n

In darkness, there is protection. Those sentinels who follow the Path of Shadows utilize a calculated plan, becoming masters of stealth and ambush who forgo the head-on attack for the vulnerable flank.

\n

Dead Silence

\n

Starting when you choose this calling at 3rd level, you learn the psychic charge force power, which does not count against your total powers known. Additionally, you can use Wisdom or Charisma as your forcecasting ability for it, and you can use your Kinetic Combat feature when you cast it as your action. Finally, when you hit a creature with the psychic charge force power and the target tries to speak, their voice does not produce sound until the end of your next turn.

\n

Cloak of Shadows

\n

Also at 3rd level, you can take the Hide action as a bonus action on your turn. Additionally, you can try to hide when you are lightly obscured from the creature from which you are hiding.

\n

Shadow Strike

\n

At 7th level, you learn to strike from the shadows. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the roll.

\n

The extra damage increases to 2d6 at 11th level and 3d6 at 17th level.

\n

Shadow Step

\n

By 13th level, you gain the ability to step from one shadow into another. While you are in dim light or darkness, as a bonus action you can teleport up to 60 feet to an unoccupied space you can see that is also in dim light or darkness. You then have advantage on the first melee attack you make before the end of the turn.

\n

Shadow's Wrath

\n

At 18th level, your training has taught you advanced techniques while you maneuver in the shadows. While you are hidden from your target, the first attack roll you make each round does not auto-matically reveal your presence. Make a Dexterity (Stealth) check against your target's Wisdom (Perception) check. On a success, you remain hidden. If you are also invisible, you remain invisible.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20Shadows.webp"} +{"_id":"XxG8t5Tr9agbjytr","name":"Brawling Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Brawling Approach

\n

Most berserkers require weapons. For berserkers of the Brawling Approach, however, everything is their weapon.

\n

Fists of Fury

\n

When you choose this approach at 3rd level, you’ve learned to hone your rage through your fists. You gain the following benefits:

\n\n

Reckless Strikes

\n

Also at 3rd level, while you are raging, not wearing heavy armor, and not wielding a shield, when you hit a creature with an unarmed strike or improvised weapon, you can choose to forgo your rage damage to make the attack a reckless strike.

\n

Some of your reckless strikes require your target to make a saving throw to resist the reckless strike’s effects. The saving throw DC is calculated as follows:

\n
\n

Reckless Strike save DC = 8 + your proficiency bonus + your Strength modifier

\n
\n

Bracing Strike

\n

You gain temporary hit points equal to your rage damage bonus. If the target is grappled by you, you instead gain temporary hit points equal to twice your rage damage bonus.

\n

Punishing Strike

\n

Your target must make a Constitution saving throw. On a failed save, the creature is deafened until the start of its next turn. If the target is grappled by you, it is instead incapacitated until the start of its next turn.

\n

Staggering Strike

\n

Your target must make a Strength or Dexterity saving throw (the target chooses the ability score to use). On a failed save, your target is pushed back 5 feet. If the target is grappled by you, it instead knocked prone.

\n

Shattering Strikes

\n

At 6th level, you rage causes your strikes to overcome the hardest of materials. While raging, you gain the following benefits:

\n\n

Stop Hitting Each Other

\n

Starting at 10th level, you can grapple creatures two sizes larger than you, instead of one.

\n

Additionally, you can use creatures you have grappled that are at least one size smaller than you as improvised weapons. When you do so, when you hit with an attack using a creature as a weapon, it takes damage equal to your Strength modifier. While raging, you can instead use creatures your size or smaller as improvised weapons.

\n

Enforcer

\n

At 14th level, when you would make an unarmed strike or attack with an improvised weapon with advantage, you can choose to forgo the advantage. If you do so, you score a critical hit on a roll of 19 or 20. Additionally, on a hit, you deal the maximum instead of rolling.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Brawling%20Approach.webp"} +{"_id":"Y1JjyA1CuOSRCjAb","name":"Way of Endurance","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of Endurance

\n

The Force manifests in myriad ways; while some use the Force to manipulate the world around them, others use it to enhance themselves. Those consulars who follow the Way of Endurance channel the Force to allow them to overcome and reflect the most grievous of injuries.

\n

Upheld by the Force

\n

Starting when you choose this tradition at 3rd level, the Force flowing through your body strengthens you, granting the following benefits:

\n\n

Additionally, as an action, you can gain resistance to kinetic and energy damage for 1 minute. This effect lasts until you end it as a bonus action, you are incapacitated, or you don armor other than a shield. You can use this feature twice. You regain all expended uses of it when you finish a short or long rest.

\n

Retaliation Strike

\n

At 6th level, you learn to turn an opponent's aggression back on them. When you deal damage with a force power or a melee weapon attack, if you took damage since the start of your last turn, you deal an extra 1d6 damage. The damage is the same type as the power or weapon's damage.

\n

This die increases when you reach certain levels in this class: to 1d8 at 10th level, to 1d10 at 14th level, and to 1d12 at 18th level.

\n

Boundless Vitality

\n

Beginning at 10th level, when you take damage, you can use your reaction and expend a force point to regain health equal to 1d8 + your Wisdom or Charisma modifier (your choice, minimum of one) as long as the damage would not reduce your hit points to 0.

\n

This die increases when you reach certain levels in this class: to 1d10 at 14th level, and to 1d12 at 18th level.

\n

Unrelenting Resilience

\n

At 14th level, when you use your Boundless Vitality feature while concentrating on a force power, you can add the result of the roll to the Constitution saving throw made to maintain concentration.

\n

Additionally, when you are reduced to 0 hit points but not killed outright while Upheld by the Force is active, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.

\n

The Force Unleashed

\n

Starting at 18th level, as an action, you can choose a point within 60 feet. Each creature of your choice within 30 feet of that point must make a Constitution saving throw against your universal force save DC. On a failed save, a creature takes 5d10 force damage and suffers 1 level of exhaustion. On a successful save, a creature takes half damage and does not suffer exhaustion.

\n

For each creature that fails this saving throw, a friendly creature within 30 feet of them can regain hit points equal to the amount of damage dealt. A friendly creature can only gain this benefit once per turn.

\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.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20Endurance.webp"} +{"_id":"YByrgf4R9lfeVVBQ","name":"Sharpshooter Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Sharpshooter Practice

\n

Those operatives who choose the Sharpshooter Practice are bringers of death. Striking from a safe distance, the Sharpshooter uses precision shooting to control the battlefield and bring targets down quickly.

\n

Assume the Position

\n

Beginning at 3rd level, you don't need advantage on your attack roll to use your Sneak Attack if your target is greater than 30 feet from you and no enemies are within 5 feet of you. In addition, standing up from prone now only costs 5 feet of movement.

\n

Additionally, you gain proficiency with two martial blasters of your choice.

\n

Place Shot

\n

Also at 3rd level, you perfect the art of placing distant shots for maximum effectiveness in debilitating and controlling your enemies. When you deal Sneak Attack damage to a creature, you may choose to forgo two of your Sneak Attack dice to make the attack a placed shot.

\n

Some of your placed shots require your target to make a saving throw to resist the placed shot's effects. The saving throw DC is calculated as follows:

\n

Placed Shot save DC = 8 + your proficiency bonus + your Dexterity modifier

\n

Disarming Shot

\n

You attempt to disarm a creature with your attack. The target must succeed on a Strength saving throw or be forced to drop one item of your choice that it's holding. The object lands at its feet.

\n

Penetrating Shot

\n

You attempt to damage another target with the same attack. Choose a second target within 15 feet of and directly behind your initial target. If the original attack roll would hit the second target, it takes two dice worth of Sneak Attack damage.

\n

The damage is of the same type dealt by the original attack.

\n

Suppressive Shot

\n

You attempt to pin the target to its location. The target must succeed on a Wisdom saving throw or be frightened of you until the end of its next turn.

\n

Head Shot

\n

At 9th level, you are at your deadliest when your enemies are unaware of the danger they are in. You have advantage on attack rolls against any creature that hasn't taken a turn in combat yet.

\n

Additionally, any hit you score against a creature that is surprised is a critical hit.

\n

Distracting Shot

\n

Starting at 13th level, you are able to defend your compatriots from afar. When a friendly creature you can see within your weapon's normal range is the target of a ranged attack, or forced to make a saving throw, and the source of the effect is within your weapon's normal range, you can use your reaction to make a ranged weapon attack against the source. On a hit, instead of dealing damage, the target of your attack has disadvantage on the attack roll against your ally, or your ally has advantage on the saving throw to resist the effect.

\n

Double Tap

\n

At 17th level, you've learned to capitalize when you have the advantage. When you take the Attack action and make an attack with advantage, you can choose to forgo the advantage. If you do, you can make an additional attack against the target or another creature within 5 feet of it (no action required). Both attacks can benefit from your Sneak Attack damage, instead of only one.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Sharpshooter%20Practice.webp"} +{"_id":"ZDNCB88TzeMFGY6i","name":"Deadeye Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Deadeye Technique

\n

Some scouts becomes legends written in blaster burns. Followers of the Deadeye Technique the art of the blaster shot and utilize their incredible focus to make shots that most would deem impossible. When everything depends on one shot, you want a Deadeye pulling the trigger.

\n

Due to their uncanny focus, Deadeyes can make shots that other marksmen would never dare to attempt. Deadeyes know how to make the most of ranged weapons and can use them to greater effect than other Scouts.

\n

Focused Superiority

\n

When you choose this technique at 3rd level, you learn maneuvers that are fueled by special dice called superiority dice.

\n

Maneuvers

\n

You know two maneuvers of your choice, which are detailed under \"Maneuvers\" below, and you earn more at higher levels, as shown in the Maneuvers Known column of the Deadeye Technique Focused Superiority table. Many maneuvers enhance an attack in some way. You can use only one maneuver per attack, and you may only use each maneuver once per turn.

\n

Each time you learn new maneuvers, you can also replace one maneuver you know with a different one.

\n

Superiority Dice

\n

You have two superiority dice, which are d6s, and you earn more at higher levels, as shown in the Superiority Dice column of the Deadeye Technique Focused Superiority table. A superiority die is expended when you use it. You regain all of your expended superiority dice when you finish a short or long rest.

\n

Saving Throws

\n

Some of your maneuvers require your target to make a saving throw to resist the maneuver's effects. The saving throw DC is calculated as follows:

\n

Maneuver save DC = 8 + your proficiency bonus + your Dexterity modifier

\n

Maneuvers

\n

The maneuvers are presented in alphabetical order.

\n

Crippling Shot

\n

When you hit a creature with a ranged weapon attack, you can expend a superiority die to cripple its movement. Add the number rolled to the damage of the ranged weapon attack. The creature must succeed on a Constitution saving throw or have its movement speed halved. At the end of each of its turns, the target can make a Constitution saving throw to end the effect.

\n

Daring Escape

\n

You can expend one superiority die to take the Disengage action as a bonus action until the end of your turn. Until the end of this turn, you have advantage on all Strength (Athletics) checks.

\n

Covering Fire

\n

When you hit a creature with a ranged weapon attack, you can expend one superiority die to maneuver one of your comrades into a more advantageous position. You add the superiority die to the attack's damage roll, and you choose a friendly creature who can see or hear you.

\n

That creature can use its reaction to move up to half its speed without provoking opportunity attacks from the target of your attack.

\n

Disarming Shot

\n

When you hit a creature with a ranged weapon attack, you can expend one superiority die to attempt to disarm the target, forcing it to drop one item of your choice that it's holding. Add the superiority die to the attack's damage roll, and the target must make a Strength saving throw. On a failed save, it drops the object you choose. The object lands at its feet.

\n

Distracting Shot

\n

When you hit a creature with a ranged weapon attack, you can expend one superiority die to distract the creature, giving your allies an opening. You add the superiority die to the attack's damage roll. The next attack roll against the target by an attacker other than you has advantage if the attack is made before the start of your next turn.

\n

Exploit Weakness

\n

When you hit a creature with a weapon attack, you can expend a superiority die and deal additional damage equal to the number rolled. This damage cannot be reduced in any way.

\n

Penetrating Shot

\n

When you hit a creature with a ranged weapon attack, you can expend one superiority die to attempt to damage another creature with the same attack. Choose up to two creatures within 15 feet of and directly behind your initial target. If the original attack roll would hit the second creature(s), it takes damage equal to the number you roll on your superiority die.

\n

The damage is of the same type dealt by the original attack.

\n

Precision Attack

\n

When you make a weapon attack roll against a creature, you can expend one superiority die to add it to the roll. You can use this maneuver before or after making the attack roll, but before any effects of the attack are applied.

\n

Return Fire

\n

When a creature misses you with a ranged attack, you can use your reaction and expend one superiority die to make a ranged weapon attack against the creature. If you hit, you add the superiority die to the attack's damage roll.

\n

Mark of the Deadeye

\n

Also at 3rd level, the range of your Ranger's Quarry feature doubles. Additionally, when making ranged weapon attacks against the target of your Ranger's Quarry, the normal and long range of your ranged weapons double.

\n

Cover to Cover

\n

Beginning at 7th level, attack rolls made against you on your turn are made with disadvantage.

\n

Deadeye Technique Focused Superiority

\n

Shoot First

\n

Starting at 11th level, you have learned that the person who shoots first is often the one who walks out alive. When you make a ranged weapon attack against a creature that has not yet acted during your first turn in combat and you have advantage on the roll, you can reroll one of the dice once.

\n

Additionally, on a hit, you deal an extra 1d6 damage of the same type as the weapon.

\n

Overwatch

\n

At 15th level, you have become a master at protecting your allies from afar. When a creature attempts to make an opportunity attack against an allied creature, or forces your ally to make a saving throw, you can use your reaction to make an attack roll against the enemy creature.

\n

If your attack hits, either impose disadvantage on the enemy creature's opportunity attack roll or grant advantage to any allies making the saving throw.

\n

The Deadeye Technique

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelFocused SuperioritySuperiority DiceManeuvers Known
3rdd622
4thd622
5thd622
6thd622
7thd833
8thd833
9thd833
10thd833
11thd1034
12thd1034
13thd1034
14thd1034
15thd1245
16thd1245
17thd1245
18thd1245
19thd1245
20thd1245
"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Deadeye%20Technique.webp"} +{"_id":"avFn1m9oUpDgKAAF","name":"Astrotech Engineering","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Engineer","description":{"value":"

Astrotech Engineering

Those engineers who choose the Astrotech Engineering discipline focus on crafting and upgrading their droid companions.

Bonus Proficiencies

When you choose this discipline at 3rd level, you gain proficiency in astrotech's tools. Additionally, when you engage in crafting with astrotech's tools, the rate at which you craft doubles.

Droid Companion

Also at 3rd level, you learn to employ all the knowledge you've accumulated to create and customize your own personalized droid companion.

Choose your droid, which is detailed at the end of this discipline. Over the course of 8 hours, which can be done during a long rest, you can expend 500 cr worth of materials to finally finish your droid.

If your droid is irreparably destroyed, or you want to interface with a different droid, you can spend an additional 250 credits and 1 hour to change the target of this feature. You may only have one droid companion at a time.

Your droid gains a variety of benefits while it is interfaced with you:

Additionally, you can modify your droid. Your droid companion has 4 modification slots, and it gains more at higher levels, as shown in the Modification Slots column of the engineer class table. For each modification installed, your tech point maximum is reduced by 1. Over the course of a long rest, you can replace or remove a number of modifications up to your Intelligence modifier (minimum of one).

Potent Integration

Lastly at 3rd level, when your droid makes an attack roll, you can use your reaction to expend one use of your Potent Aptitude to give it a boost. Roll the die and add it to both the attack and damage rolls, if the attack hits.

Coordinated Attack

Beginning at 6th level, when you take the Attack action, if your companion can see you, it can use its reaction to make a weapon attack against the same creature.

Droid Defense

At 14th level, while your droid can see you, it has advantage on all saving throws.

Superior Droid Defense

Starting at 18th level, whenever an attacker that your droid can see hits it with an attack, it can use its reaction to halve the attack's damage against it.

Generating Your Droid

Choosing your droid companion is an integral part of being an Astrotech Engineer. The class of droid you choose determines their features. Class II, III, and IV droids are all appropriate options, with their statistics listed below.

Once you've selected your type of droid class, you assign your droid's ability scores using standard array (16, 14, 14, 12, 10, 8) as you see fit.

Droid Features

All droids share the following features.

Resistances and Vulnerabilities

Traits

Class I Droid

Class I droids are programmed for the mathematical, medical, or physical sciences. Subcategories of the first degree are medical droids, biological science droids, physical science droids, and mathematics droids.

As a class I droid, your droid companion has the following features.

Hit Points

Proficiencies

Features

Class II Droid

Class II droids are programmed for engineering and other technical sciences. They differ from class I droids because they apply the science to real-life situations. Class II droids are rarely equipped with Basic vocabulators, instead communicating through Binary. There are five subcategories of class II droids. Astromech, exploration, environmental, engineering, and maintenance droids are all class II droids.

As a class II droid, your droid companion has the following features.

Hit Points

Proficiencies

Features

Class III Droid

Class III droids are programmed to interact with humans. They are said to be the most advanced droids ever invented. Protocol, servant, tutor, and child care droids are all class III droids.

As a class III droid, your droid companion has the following features.

Hit Points

Proficiencies

Features

Class IV Droid

Class IV droids are programmed for military and security purposes. Such droids tend to perform tasks of violence or combat might be expected. Almost all class IV droids carry weapons. Armed combat droids are among the first droids ever created. Security, gladiator, battle, and assassin droids are all class IV droids.

As a class IV droid, your droid companion has the following features.

Hit Points

Proficiencies

Features

Class V Droid

Class V droids are programmed for menial and low-skill tasks. Such droids tend to perform basic tasks such as construction, lifting, maintenance, mining, sanitation, and transportation.

As a class V droid, your droid companion has the following features.

Hit Points

Proficiencies

Features

Astrotech Modifications

If a modification has prerequisites, you must meet them to install it. You can install the modification at the same time that you meet its prerequisites.

Advanced Power Core

Prerequisite: 7th level, d10 Hit Die You greatly improve the power core of your droid. Its Hit Die becomes a d12.

Alarm Protocol

You install an alarm module in your droid, granting the following benefits:

Analysis Protocol

Prerequisite: 7th level, Class I Droid Your droid can analyze a target, develop a plan on how to best overcome any potential obstacle, and execute that plan with ruthless efficiency. As a bonus action on your droid's turn, your droid can analyze a target it can see within 60 feet of it. For the next minute, or until it analyzes another target, it gains the following benefits:

Arm Cannons

You install dual arm cannons in your droid. The arm cannons have 2 charges. As an action, your droid can use charges to cast the overload tech power, using 1 charge per level. The saving throw is made against your droid's tech save DC (8 + your droid's proficiency bonus + your droid's Intelligence modifier).

You can choose this modification multiple times. Each time you do so, the arm cannons gain another charge, to a maximum of 4. The arm cannons regain all charges after a long rest.

Back-Up Protocol

Prerequisite: 7th level You install an emergency protocol in your droid, prompting a quick reboot after critical damage is taken. If your droid would be reduced to 0 hit points, it instead is reduced to 1.

Once your droid uses this feature, it must finish a short or long rest before it can use it again.

Celerity Augment

You augment your droid to move a little faster. Your droid's speed increases by 5 feet.

You can choose this modification twice.

Charisma Chip

Prerequisite: Class III Droid You install a charisma chip in your droid. When an ally your droid can see makes an ability check, attack roll, or saving throw, your droid can use its reaction to give them advantage on the roll. It can do so before or after they roll the d20, but before the GM says the roll succeeds or fails. Once your droid uses this ability, it can't use it again until it finishes a short or long rest.

Durability Module

You enhance your droid's durability, granting the following benefits:

Emergency Mode

Prerequisite: 15th level Prerequisite: Back-Up Protocol You modify your droid's back-up protocol. When your droid's back-up protocol is initiated, it can immediately use its reaction to make one attack roll against a target within range. If the target is the source of the damage that reduced your droid to 0, the attack roll has advantage.

Energy Shield

You install an energy shield in your droid. The energy shield has 1 charge. As an action, your droid can use 1 charge to cast the energy shield tech power.

You can choose this modification multiple times. Each time you do so, the energy shield gains another charge, to a maximum of 3. The energy shield regains all expended charges after a long rest.

Expertise Protocol

Prerequisite: 5th level You install a protocol in your droid that grants it expertise in a tool or skill. Choose a tool or skill that your droid is proficient in. Your droid gains expertise in it.

False Combustion

Prerequisite: Class II Droid You install a panic protocol in your droid. As a reaction in response to taking damage, your droid can feign an explosion. For 1 minute, your droid appears to be destroyed to all outward inspection. A creature can use its action to inspect the droid and make an Intelligence (Investigation) check against your droid's tech save DC (8 + your droid's proficiency bonus + your droid's Intelligence modifier). If it succeeds, it becomes aware that your droid is still functioning.

Fighting Style Protocol

Your droid adopts a particular style of fighting as its specialty. Choose one of the Fighting Style options, detailed in chapter 6. Your droid can't take a Fighting Style option more than once, even if it later gets to choose again.

Flamethrower

You install a flamethrower in your droid. The flamethrower has 1 charge. As an action, your droid can cast the jet of flame tech power or use 1 charge to cast the flame sweep tech power at 1st level. The saving throw is made against your droid's tech save DC (8 + your droid's proficiency bonus + your droid's Intelligence modifier).

You can choose this modification multiple times. Each time you do so, the flamethrower gains another charge, to a maximum of 3. If the flamethrower has multiple charges, you can use multiple charges to cast flame sweep at a higher level, 1 point per charge. The flamethrower regains all expended charges after a long rest.

Four-Armed Combatant

Prerequisite: Class IV Droid You install two additional arms to improve your droid's combat capabilities, granting it four arms which it can use independently of one another. Your droid can only gain the benefit of items held by two of its arms at any given time, and once per round your droid can switch which arms it is benefiting from (no action required).

While your droid has at least 3 arms free, it has a climbing speed equal to its walking speed.

Heavy Plating

Prerequisite: Medium Armor proficiency Your droid gains proficiency in heavy armor. If your droid is already proficient in heavy armor, instead kinetic and energy damage that your droid takes from unenhanced weapons is reduced by an amount equal to its proficiency bonus.

Light Plating

Your droid gains proficiency in light armor. If your droid is already proficient in light armor, instead your droid's speed increases by 5 feet while light armor is integrated.

Martial Protocol

Prerequisite: 7th level, Class IV Droid Your droid has martial training that allows it to perform special combat maneuvers. It gains the following benefits:

Medium Plating

Prerequisite: Light Armor proficiency Your droid gains proficiency in medium armor. If your droid is already proficient in medium armor, the maximum Dexterity bonus your droid can add to AC increases to 3 from 2 while medium armor is integrated.

Memory Protocol

Prerequisite: Class I Droid Your droid can recall anything it has read in the past month that it understood. This includes but is not limited to books, maps, signs, and lists.

Observant Protocol

Prerequisite: 7th level Prerequisite: Alarm Protocol You modify the alarm module in your droid, granting the following benefits:

Performance Protocol

Prerequisite: 7th level, Class III Droid You modify your droid's charisma chip, granting the following benefits:

Powerful Droid

Prerequisite: Class V Droid Your droid count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.

Powerful Grip

Prerequisite: 7th level, Class V Droid When your droid hits a creature with a melee weapon attack on its turn and has a free hand, it can use a bonus action to attempt to grapple the target. If it does so, and the grapple succeeds, your droid can make one additional attack against the target (no action required).

Premium Power Core

You improve the power core of your droid. Its Hit Die becomes a d8.

Proficiency Protocol

You install a protocol in your droid that grants it proficiency in a tool or skill. Your droid gains proficiency in a tool or skill of your choice.

Prototype Power Core

Prerequisite: d8 Hit Die You further improve the power core of your droid. Its Hit Die becomes a d10.

Repulsor Coil

Prerequisite: 7th level, Class II Droid You install repulsor coils in your droid's legs. Your droid gains a flying speed equal to its walking speed.

Sensor Augmentation

You augment your droid with an advanced sensor, granting the following benefits:

Stun Ray

You install a stun ray in your droid. The stun ray has 1 charge. As an action, your droid can use 1 charge to cast the hold droid or paralyze humanoid tech power. The saving throw is made against your droid's tech save DC (8 + your droid's proficiency bonus + your droid's Intelligence modifier).

You can choose this modification multiple times. Each time you do so, the stun ray gains another charge, to a maximum of 3. The stun ray regains all expended charges after a long rest.

Techcasting Protocol

Your droid learns two at-will tech powers, and one 1st-level tech power, which it casts at its lowest level. Once your droid casts it, your droid must finish a long rest before it can cast it again. Intelligence is your droid's techcasting ability for these powers. It does not require use of a wristpad for these powers.

Toughness Module

Prerequisite: 11th level Prerequisite: Durability Module You modify the durability module in your droid, granting the following benefit:

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.toolProf.value","value":"astro","mode":"+","targetSpecific":false,"id":1,"itemId":"avFn1m9oUpDgKAAF","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Archetypes/Astrotech%20Engineering.webp"} +{"_id":"bBMsNrnCUOXGfb0h","name":"Cyclone Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Cyclone Approach

\n

The Cyclone Approach empowers the berserker’s ability to fight with weapons in each hand. Followers of this approach learn to move quickly to avoid attacks and can become a whirlwind of fury and steel, cleaving through hordes of enemies.

\n

Dual Wielder

\n

When you choose this approach at 3rd level, when you engage in Two-Weapon Fighting, you can add your Strength or Dexterity modifier (your choice) to the damage of your Two-Weapon Fighting attack as long as it doesn’t already include that modifier.

\n

Double Swing

\n

Also at 3rd level, once on each of your turns when you miss with an attack while raging, you can immediately make a melee attack with the weapon in your other hand.

\n

Twisting Winds

\n

At 6th level, your unpredictable movement makes you harder to hit and pin down. When you make a saving throw or ability checks to avoid being knocked prone, pushed, grappled, or restrained, it gains a bonus equal to your Strength or Dexterity modifier (your choice) as long as it doesn’t already include that modifier.

\n

Mighty Leap

\n

Starting at 10th level, the distance you can jump is doubled, and you do not provoke attacks of opportunity if you leave a hostile creature’s reach while jumping.

\n

Tornado

\n

At 14th level, you can become a tornado of attacks. When you take the Attack action on your turn, you can forgo one of your regular attacks to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target. If you are wielding a separate melee weapon in each hand, each successful hit against a target deals damage equal to the damage dice of both weapons + your ability modifier + any other modifiers.

\n

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

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Cyclone%20Approach.webp"} +{"_id":"c89hsFFZG4WGlYcV","name":"Zoologist Pursuit","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scholar","description":{"value":"

Zoologist Pursuit

\n

Many academics develop an affinity for nature, studying the vast fauna that inhabit the different planets throughout the galaxy. Those scholars who choose the Zoologist Pursuit capitalize on their knowledge of animals, developing a strong bond with a companion with whom they gain an advantage on the battlefield.

\n

Wilderness Expert

\n

When you choose this pursuit at 3rd level, you gain proficiency your choice of Animal Handling or Nature skills. Additionally, when you make a Wisdom (Animal Handling) check, you gain a bonus to the check equal to your Intelligence modifier.

\n

Beast Companion

\n

Also at 3rd level, you learn to employ all the knowledge you've accumulated to forge a powerful bond with your own personal beast companion.

\n

Choose your beast, which is detailed at the end of this pursuit. Over the course of 8 hours, which can be done during a long rest, you can expend 500 cr worth of herbs and food to call forth an animal from the wilderness to serve as your companion.

\n

If your beast dies, or you want to bond with a different creature, you must first break the bond with your current beast companion. You may only have one beast companion at a time.

\n

Your beast gains a variety of benefits while it is bonded to you:

\n\n

Additional Maneuvers

\n

Lastly at 3rd level, you gain access to new maneuvers which reflect the progress of your studies into the biology and behavior of animals. Whenever you learn a new maneuver, you can choose from any of the following as well. The maneuvers are listed in alphabetical order.

\n

Loyal Bond

\n

Whenever you are hit with an attack, you can expend one superiority die to command your companion to immediately use its reaction and move up to its speed directly towards you. If it ends this movement within 5 feet of you, roll the superiority die. Your companion takes the damage instead of you, subtracting the amount you rolled from the total.

\n

Go Get 'Em

\n

While your companion is moving, you can expend a superiority die and add 5 times the number rolled to its movement speed.

\n

Pin Down

\n

When your beast attempts to grapple or knock a creature prone, you can expend a superiority die to give it direction as long as it can see or hear you. Roll a superiority die and add it to your beast's Strength (Athletics) check.

\n

Primal Endurance

\n

As an action, you can expend a superiority die to improve your beast's defense. Roll the die and add it to your beast's AC until the beginning of your next turn.

\n

Sic 'Em

\n

As an action, you can command your beast to savage a nearby enemy. Your beast can use its reaction to immediately move up to 10 feet and make one attack, adding the superiority dice to the damage roll on a hit.

\n

Spine-Chilling Howls

\n

As an action, you can expend one superiority die to command your beast to frighten another creature. The target must then succeed on a Wisdom saving throw against your Maneuver save DC or become frightened of both you and your beast for 1 minute.

\n

Wild Senses

\n

Whenever you make a Wisdom (Perception) or a Wisdom (Survival) check, you can request the aid of your beast by expending a superiority die, adding the number rolled to the check. You can use this maneuver before or after making the ability check, but before the results of the ability check are determined.

\n

Vicious Hunting

\n

Beginning at 6th level, your beast companion's strikes count as enhanced for the purpose of overcoming resistance and immunity to unenhanced attacks and damage.

\n

Creature Comprehension

\n

Starting at 9th level, when your beast makes an attack roll, ability check, or saving throw, you may expend a superiority die and apply the benefits of a maneuver you know from this class, as if you have taken the action yourself.

\n

Feral Ferocity

\n

Once you've reached 17th level, you have learned how to push your beast beyond its limits. If your beast is within 30 feet of you and can see or hear you, you can command it to enter a furious state. While raging, your beast gains the following benefits:

\n\n

Your beast's furious state lasts for 1 minute. It ends early if your beast is knocked unconscious. You can end your beast's furious state as a bonus action.

\n

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

\n

Discoveries (Zoologist)

\n

When you select this pursuit, you gain access to new discoveries which reflect your studies in biology and behaviour of alien lifeforms. Whenever you learn a new discovery, you can choose from any of the following as well. The discoveries are listed in alphabetical order.

\n

Advantageous Companion

\n

When you make a Charisma (Intimidation) check against a creature that can see your beast companion, and your companion is size Medium or larger, you make the check with advantage.

\n

When you make a Charisma (Persuasion) check against a creature that can see your beast companion, and your companion is size Small or Tiny, you make the check with advantage.

\n

Colossal Companion

\n

Prerequisite: 15th level

\n

You can attempt to temporarily take control of a Huge beast. With the use of 10,000 cr worth of herbs and food, you can make a DC 15 Animal Handling check. On a success, the creature becomes your companion for 1d4 hours and gains the benefits of your Beast Companion feature. You can attempt to extend the duration by one hour by making additional Animal Handling checks. The DC for the first check is 20, and increases by 5 on each subsequent check. On a failure, the creature becomes hostile to you if it wasn't already and becomes immune to this feature for 24 hours.

\n

Holocam Attachment

\n

You have learned how to safely attach a holocam on the head of the companion. You learn the tracker droid interface tech power, and your beast becomes a valid target of this power.

\n

Neat Tricks

\n

Prerequisite: 5th level

\n

Your beast gains proficiency in one Strength or Dexterity skill of your choice. If your beast's size is Medium or larger and the chosen skill uses Strength, it has expertise in the chosen skill. If your beast's size is Small or smaller and the chosen skill uses Dexterity, it has expertise in the chosen skill.

\n

Protective Friend

\n

If a creature makes a melee attack against you or your companion, and your companion is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll.

\n

The More The Merrier

\n

Prerequisite: 7th level

\n

Whenever you attempt to call forth an animal as your companion, you can instead spend 1,000 cr worth of components and call forth a swarm of Tiny creatures. The swarm is composed of a number of creatures equal to your scholar level + your Intelligence modifier, and is size Medium. All of the creatures within the swarm act as a single creature.

\n

Generating Your Beast

\n

Choosing your beast companion is an integral part of being a Zoologist Scholar. Your beast takes a form of your choosing. Alternatively, your GM can choose what form your beast takes based on your environment.

\n

Once you've selected your type of beast, you assign your beast companion's ability scores using standard array (16, 14, 14, 12, 10, 8) as you see fit.

\n

Beast Features

\n

All beasts share the following traits.

\n

Hit Points

\n\n

Proficiencies

\n\n

Features

\n\n

Bestial Traits

\n

The traits are presented in alphabetical order.

\n

Aerial

\n

Your beast companion has a flying speed equal to its walking speed, and opportunity attacks made against it have disadvantage.

\n

Amphibious

\n

Your beast companion has a swimming speed equal to its walking speed, and it can breathe air and water.

\n

Burrower

\n

Your beast companion has a burrowing speed equal to its walking speed, and it has blindsight out to 10 feet.

\n

Charger

\n

If your beast moves at least half its speed straight towards a target before making a melee attack, it deals an additional 1d8 damage on a hit.

\n

Climber

\n

Your beast companion has a climbing speed equal to its walking speed, and it has advantage on Strength saving throws and Strength (Athletics) checks that involve climbing.

\n

Darkvision

\n

Your beast companion is accustomed to low-light environments. Your beast can see in dim light within 60 feet as if it were bright light, and in darkness as if it were dim light. Your beast can't discern color in darkness, only shades of gray.

\n

Evasive

\n

Your beast companion can take the Disengage action as a bonus action.

\n

Force Adept

\n

Prerequisite: Force Sensitive Your beast companion knows one 2nd-level force power of your choice, and once per long rest it can cast it at 2nd-level without expending force points. Your beast's forcecasting ability is Wisdom or Charisma (depending on power alignment).

\n

Force Resistance

\n

Your beast companion has advantage on saving throws against force powers.

\n

Force Sensitive

\n

Your beast companion knows one 1st-level force power of your choice, and once per long rest it can cast it at 1st-level without expending force points. Your beast's forcecasting ability is Wisdom or Charisma (depending on power alignment).

\n

Grappler

\n

When your beast hits with a melee weapon attack, it can use a bonus action to attempt to grapple the target. On a success, the target is both grappled and restrained, and your beast can't attack again while it has a creature grappled.

\n

Heavy Hide

\n

Your beast companion's armor class becomes 14.

\n

Keen Hearing

\n

Your beast companion has advantage on Wisdom (Perception) checks that rely on hearing.

\n

Keen Sight

\n

Your beast companion has advantage on Wisdom (Perception) checks that rely on sight.

\n

Keen Smell

\n

Your beast companion has advantage on Wisdom (Perception) checks that rely on smell.

\n

Light Hide

\n

Your beast companion's armor class becomes 11 + it's Dexterity modifier.

\n

Medium Hide

\n

Your beast companion's armor class becomes 13 + it's Dexterity modifier, to a maximum of +2.

\n

Natural Camouflage

\n

When your beast companion attempts to hide, it can opt to not move on its turn. If it avoids moving, it is considered lightly obscured until it moves.

\n

Nimble Weapon

\n

Your beast companion can use Dexterity instead of Strength for its attack and damage rolls.

\n

Pack Tactics

\n

Your beast companion has advantage on an attack roll against a creature if at least one ally of your beast companion is within 5 feet of the creature and the ally isn't incapacitated.

\n

Pouncer

\n

If your beast moves at least half its speed straight toward a creature and hits it with a melee attack, the creature must make a Strength saving throw (DC = 8 + your beast's proficiency bonus + its Strength modifier). If the creature is larger than your beast, it makes this save with advantage. On a failed save, the creature is knocked prone, and your beast can make one additional attack against it as a bonus action.

\n

Powerful Build

\n

Your beast companion counts as one size larger when determining its carrying capacity and the weight it can push, drag, or lift.

\n

Rampager

\n

If your beast reduces a creature to 0 hit points with a melee attack on its turn, your beast and take a bonus action to move up to half its speed and make a melee attack.

\n

Ranged Weapon

\n

Your beast companion has a natural ranged weapon, such as a spitter or or tail spikes. It has a normal range of 30 feet and a long range of 90 feet, and on a hit it deal kinetic damage equal to its natural weapon damage die.

\n

Reach Weapon

\n

Your beast companion has a natural weapon with reach, such as a tail or wings. It has the reach property, and on a hit it deals kinetic damage equal to its natural weapon damage die.

\n

Size: Huge

\n

Prerequisite: Size Large

\n

Your beast companion’s size is Huge. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d12, its natural weapon damage die becomes a d12, and its walking speed increases to 40.

\n

Size: Large

\n

Prerequisite: Size Medium Your beast companion's size is Large. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d10, its natural weapon damage die becomes a d10, and it's walking speed increases to 35.

\n

Size: Medium

\n

Prerequisite: Size Small Your beast companion's size is Medium. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d8, its natural weapon damage die becomes a d8, and its walking speed increases to 30.

\n

Size: Small

\n

Your beast companion's size is Small. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d6, its natural weapon damage die becomes a d6, and it's walking speed increases to 25.

\n

Sturdy-Legged

\n

Your beast companion's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start, and it has advantage on Strength and Dexterity saving throws made against effects that would knock it prone.

\n

Swift

\n

Your beast companion can take the Dash action as a bonus action.

\n

Tremorsense

\n

Your beast companion gains tremorsense out to 30 feet.

\n

Venomous Weapon

\n

When your beast companion deals damage to a creature, it must make a Constitution saving throw (DC = 8 + your beast's proficiency bonus + your beast's Constitution modifier) or become poisoned until the end of its next turn.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Zoologist%20Pursuit.webp"} +{"_id":"cROcc25Zj1MT6Yf6","name":"Form I: Shii-Cho","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form I: Shii-Cho

\n

Form I, also known as Determination Form, uses wild, unpredictable attacks designed to distract and disarm their foes. Those guardians who focus on Shii-Cho Form make seemingly random, yet deliberate, attacks to knock their opponents off-balance.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Dueling, Equilibrium, or Two-Weapon Fighting 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

The Way of the Sarlaac

\n

Also at 3rd level, as a bonus action, you can enter a frenetic stance for one minute. While in this stance, the first time you hit a creature with a melee weapon attack on your turn, it has disadvantage on the next melee attack roll it makes against you before the start of your next turn. Additionally, if that creature is within 5 feet of you, it must make a Strength saving throw (DC = 8 + your proficiency bonus + your Strength or Dexterity modifier). On a failed save, it is pushed back 5 feet, and you can immediately move into the space it just vacated without provoking opportunity attacks.

\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain the following Channel the Force option.

\n

Disarming Slash

\n

When you hit a creature with a melee weapon attack, you can expend a use of your Channel the Force (no action required) to attempt to disarm the target, forcing it to drop one item of your choice that it's holding. The creature must make a Strength saving throw. On a failed save, it drops the object you choose. If you are within 5 feet of the target, and you have a free hand, you can catch the item. Otherwise, the object lands at its feet.

\n

Unpredictable Motion

\n

Beginning at 7th level, while you are wielding a melee weapon, opportunity attacks against you are made at disadvantage.

\n

Sarlaac Sweep

\n

Starting at 15th level, when a creature moves to within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature. If the attack hits, you can attempt to damage another creature within 5 feet of the original target and within your reach. If the original attack roll would hit the second creature, it takes damage equal to your Strength or Dexterity modifier (your choice). The damage is of the same type dealt by the original attack.

\n

Master of Determination

\n

At 20th level, the erratic fluidity of your movement confounds even the most determined of foes. Your Strength or Dexterity and Wisdom or Charisma scores (your choice) increase by 2. Your maximum for these scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Shii-Cho%20Form.webp"} +{"_id":"cjI8o9tAfKsuSGAP","name":"Bloodstorm Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Bloodstorm Approach

\n

The Bloodstorm Approach is said to have originated from the ancient wookiee Hroufrasnooohn clan (which loosely translates to Bloodstorm in Galactic Basic), whose warriors performed gravity-defying feats with their flying vibroaxes through a combination of unorthodox techniques and a mystical belief in their own abilities. A berserker who follows this approach can hurl their devastating weapons at enemies with such power and skill that it completely blurs the line between melee and ranged combat.

\n

Furious Throw

\n

When you choose this approach at 3rd level, your throwing techniques have become a perfect extension of your melee prowess. You may count your thrown weapon attacks as if they were melee weapon attacks for the purposes of your class abilities and feats, such as your Berserker Rage and Reckless Attack abilities.

\n

Returning Attacks

\n

Also at 3rd level, any weapon you throw can ricochet back to you at your command. When you make a thrown weapon attack, you may have the weapon fly back to your hand immediately after the attack.

\n

Throw Anything

\n

At 6th level, your strength and mastery of throwing techniques has allowed you to throw vibroaxes as easily as others hurl vibrodaggers. When you are wielding a melee weapon that you have proficiency with, it gains the thrown property (range 20/60).

\n

Fling People

\n

Starting at 10th level, you learn to throw creatures as easily as you throw your weapons. When you successfully grapple a creature, you may immediately throw the creature:

\n

Throw Friend

\n

If the creature is a willing ally and volunteers to be grappled, you throw the target into any unoccupied space within 60 feet. That creature may immediately use its reaction to make one melee weapon attack, adding your Strength modifier to the attack’s damage roll.

\n

Throw Foe

\n

If the creature is an opponent, you throw the target into any unoccupied space within 30 feet, where it takes damage equal to your Strength modifier and falls prone.

\n

Raging Whirlwind

\n

At 14th level, you can send your weapon spinning into a gravity-defying whirlwind of pain. Once per rage as an action, you may throw a weapon with the thrown property to a point you choose within 60 feet. The weapon fills the air as a cyclone in a 10 foot radius sphere centered on that point. A creature takes damage equal to the thrown weapon’s damage + your Strength modifier + your Rage Damage when it enter’s the whirlwind’s area for the first time on a turn or starts its turn there. This effect ends when you command the weapon to return to you as a free action or your rage ends.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Bloodstorm%20Approach.webp"} +{"_id":"dY9gPH2vjYpS9onW","name":"Enhancement Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Enhancement Specialist

\n

Those fighters who choose to become Enhancement Specialists learn to apply their technological prowess to their blasters. With their deep understanding of both their weapon and how to manipulate its ammunition on the fly, they can often turn the tides of a battle with a single shot.

\n

Studied Shooter

\n

When you choose this specialty at 3rd level, you learn specialized theory typical for practitioners of the enhancement trade. You gain proficiency in your choice of the Lore or Technology skills. Additionally, you learn your choice of the encrypted message or minor image tech power. Intelligence is your techcasting ability for these powers.

\n

Special Ammunition

\n

Also at 3rd level, you learn ammunition enhancements that are fueled by amplified shots to unleash special enhanced effects.

\n

Ammunition Enhancements

\n

You know two ammunition enhancements of your choice, which are detailed under \"Ammunition Enhancements\" below, and you earn more at higher levels. Many ammunition enhancements boost an attack in some way. Once per turn when you fire a shot from a blaster as part of the Attack action, you can apply one of your Ammunition Enhancement options to that shot,

\n

You gain an additional Ammunition Enhancement option of your choice when you reach certain levels in this class: 7th, 10th, 15th, and 18th level. Each option also improves when you become an 18th-level fighter.

\n

Each time you learn new ammunition enhancements, you can also replace one ammunition enhancement you know with a different one.

\n

Amplified Shots

\n

You have two amplified shots, which you use to activate your ammunition enhancements. An amplified shot is expended when you use it. When you fire an amplified shot, your weapon is treated as enhanced for overcoming resistance and immunity to unenhanced attacks and damage. You decide to use the option when the shot hits a creature, unless the option doesn't involve an attack roll. You regain all of your amplified shots when you finish a short or long rest.

\n

Saving Throws

\n

Some of your ammunition enhancements require your target to make a saving throw to resist the maneuver's effects. The saving throw DC is calculated as follows:

\n

Ammunition save DC = 8 + your proficiency bonus + your Dexterity modifier

\n

Ammunition Enhancements

\n

The ammunition enhancements are presented in alphabetical order.

\n

Carbonite Shot

\n

When this shot strikes its target, shards of carbonite wrap around the target. The creature hit by the shot takes an extra 2d6 cold damage, its speed is reduced by 10 feet, and it takes 2d6 kinetic damage the first time on each turn it moves 1 foot or more without teleporting. The target or any creature that can reach it can use its action to remove the carbonite with a successful Strength (Athletics) check against your Special Ammunition save DC. Otherwise, the carbonite lasts for 1 minute or until you use this option again.

\n

The cold damage and kinetic damage both increase to 4d6 when you reach 18th level in this class.

\n

Coercing Shot

\n

You enhance your shot with chemicals that confuse the target. The creature hit by the shot takes an extra 2d6 poison damage, and choose one of your allies within 30 feet of the target. The target must succeed on a Wisdom saving throw, or it is charmed by the chosen ally until the start of your next turn. This effect ends early if the chosen ally attacks the charmed target, deals damage to it, or forces it to make a saving throw.

\n

The poison damage increases to 4d6 when you reach 18th level in this class.

\n

Explosive Shot

\n

You fire a shot set to explode on impact. The shot detonates after your attack. Immediately after the shot hits the creature, the target and all other creatures within 10 feet of it take 2d6 fire damage each.

\n

The fire damage increases to 4d6 when you reach 18th level in this class.

\n

Hallucinogen Shot

\n

You enhance your shot with hallucinogenic chemicals. The creature hit by the shot takes an extra 2d6 psychic damage, and it must succeed on a Wisdom saving throw or be unable to see anything farther than 5 feet away until the start of your next turn.

\n

The psychic damage increases to 4d6 when you reach 18th level in this class.

\n

Piercing Shot

\n

You enhance your shot with armor-piercing properties. When you use this option, you don't make an attack roll for the attack. Instead, the shot shoots forward in a line, which is 1 foot wide and 30 feet long, before disappearing. The shot passes through objects, ignoring cover. Each creature in that line must make a Dexterity saving throw. On a failed save, a creature takes damage as if it were hit by the shot, plus an extra 1d6 damage of the weapon's type. On a successful save, a target takes half as much damage.

\n

The extra damage increases to 2d6 when you reach 18th level in this class.

\n

Quell Shot

\n

You fire a shot enhanced with a debilitating poison. The creature hit by the shot takes an extra 2d6 poison damage. The target must also succeed on a Constitution saving throw, or the damage dealt by its weapon attacks is halved until the start of your next turn.

\n

The poison damage increases to 4d6 when you reach 18th level in this class.

\n

Seeking Shot

\n

You apply a tracing signal to your shot. When you use this option, you don't make an attack roll for the attack. Instead, choose one creature you have seen in the past minute. The shot flies toward that creature, moving around corners if necessary and ignoring three-quarters cover and half cover. If the target is within the weapon's range and there is a path large enough for the shot to travel to the target, the target must make a Dexterity saving throw. Otherwise, the shot disappears after traveling as far as it can. On a failed save, the target takes damage as if it were hit by the shot, plus an extra 1d6 kinetic damage, and you learn the target's current location. On a successful save, the target takes half as much damage, and you don't learn its location.

\n

The kinetic damage increases to 2d6 when you reach 18th level in this class.

\n

Enhanced Shot

\n

Beginning at 7th level, you gain the ability to enhance your shots. Whenever you fire an unenhanced shot from a blaster, you can make it enhanced for the purpose of overcoming resistance and immunity to unenhanced attacks and damage.

\n

Redirected Shot

\n

At 10th level, you learn how to direct an errant shot toward a new target. When you make an attack roll with an enhanced shot and miss, you can use a bonus action to reroll the attack roll against a different target within 60 feet of the original target.

\n

Ever-Ready Shot

\n

Starting at 15th level, your enhanced ammunition is available whenever battle starts. If you roll initiative and have no uses of Special Ammunition remaining, you regain one use of it.

\n

Ammunition Upgrades

\n

At 18th level, your ammunition enhancements improve.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Enhancement%20Specialist.webp"} +{"_id":"e1tObWwWnq5gt9zE","name":"Way of Lightning","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of Lightning

\n

Of all of the dark arts of the Force, little can match the spectacle and devastation of Force lightning. Those consulars who follow the Way of Lightning summon intense discharges of pure Force energy, overwhelming enemies with punishing damage from a distance, leaving them shaken and vulnerable -- if not dead.

\n

Shocking Affinity

\n

When you choose this tradition at 3rd level, when you cast a force power that deals lightning damage, you can use Wisdom or Charisma as your forcecasting ability for it.

\n

Additionally, when you cast a damage dealing force power that requires an attack roll or saving throw, you can cause that power to instead deal lightning damage. If the power would call for a saving throw other than Dexterity, it instead calls for a Dexterity saving throw. If you hit with the power, or the target fails the power's saving throw, affected creatures become shocked until the start of your next turn. 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 short or long rest.

\n

Potent Lightning

\n

At 6th level you add your Wisdom or Charisma modifier (your choice, a minimum of +1) to any damage you deal with force powers that deal lightning damage.

\n

Blistering Rebuke

\n

Beginning at 10th level, when a creature within 5 feet of you that you can see hits you with an attack, you can use your reaction to cause the creature to make a Dexterity saving throw. On a failed save, the creature takes 1d10 plus your consular level lightning damage, is pushed back 10 feet, and becomes shocked until the end of their next turn. On a successful save, the creature takes half as much damage and isn't moved or shocked.

\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

Electric Attunement

\n

At 14th level, you gain resistance to lightning damage. Additionally, force powers you cast ignore resistance to lightning damage.

\n

Unlimited Power

\n

Starting at 18th level, you can increase the power of your simpler lightning force powers. When you cast a force power of 6th-level or lower that deals lightning damage, you can deal maximum damage with that power.

\n

You can use this feature with no adverse effects a number of times equal to your Wisdom or Charisma modifier (your choice, a minimum of once). If you use this feature beyond this before you finish a long rest, you take 2d12 necrotic damage for each level of the power, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per power level increases by 1d12. This damage cannot be reduced in any way.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20Lightning.webp"} +{"_id":"f6laKRexQAH7Oa3b","name":"Aing-Tii Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Aing-Tii Order

\n

Monks of the Aing-Tii Order blend an attunement to the Force with their supreme focus to become a blur of motion in the heat of battle.

\n

Forcecasting

\n

When you choose this order at 3rd level, 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 4 force powers of your choice, and you learn more at higher levels, as shown in the Force Powers Known column of the Aing-Tii Order Forcecasting 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 monk level, as shown in the Force Points column of the Aing-Tii Order Forcecasting 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 Aing-Tii Order Forcecasting table.

\n

You may only cast force powers at 4th-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

Flow-Walking

\n

Also at 3rd level, you can cast the phasestrike force power without expending force points. When you reach 11th level, the damage bonus of the special attack made during phasestrike increases to 2d8, and at 17th level it increases to 3d8.

\n

Aing-Tii Order Forcecasting

\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 any expended uses when you finish a long rest.

\n

Focused Flurry

\n

At 6th level, when you use your action to cast an at-will force power, you can use your Martial Arts and Focus features.

\n

Prismatic Step

\n

At 11th level, when you take the Attack action, you can teleport up to 10 feet before each attack to an unoccupied space you can see.

\n

If you attack at least two different creatures with the action, you can make one additional attack against a third creature (no action required).

\n

Iridescent Strikes

\n

Starting at 17th level, when you use your action to cast a force power, you can spend 2 focus points to teleport to a space within 5 feet of a creature affected by the power and make two unarmed attacks against that creature as a bonus action.

\n

The Aing-Tii Order

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelForce Powers KnownForce PointsMax Power Level
3rd431st
4th541st
5th651st
6th761st
7th872nd
8th982nd
9th1092nd
10th11102nd
11th12112nd
12th13122nd
13th14133rd
14th15143rd
15th16153rd
16th17163rd
17th18174th
18th18184th
19th19194th
20th19204th
"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Aing-Tii%20Order.webp"} +{"_id":"gbP89R34SpttnfPb","name":"Whills Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Whills Order

\n

Monks of the Whills Order hold the secrets of the Force sacred, and dedicate their lives to defending ancient knowledge of the Force and its artifacts. They master the use of ranged weapons, often crafting their own weapons in respectful admiration of the Jedi tradition of crafting lightweapons.

\n

Flurry of Light

\n

At 3rd level, you gain proficiency in blaster pistols, blaster rifle, ion blaster, ion rifle, and the lightbow, which are your Whills weapons and are monk weapons for you. When you are wielding a Whills weapon, you gain the following benefits:

\n\n

The Force is With You

\n

At 6th level, as you channel the Force through you, you gain the following benefits:

\n\n

One With the Force

\n

At 11th level, you learn how to enter a trance, preparing to unleash yourself upon your enemy. While in this trance, you can still talk and move. If you stay in the trance for at least one minute, when you roll initiative, you can make a ranged weapon attack on a number of creatures up to your Wisdom or Charisma modifier (your choice, a minimum of one) within 30 feet of you when you were in this trance.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Guided Strikes

\n

At 17th level, your first ranged weapon attack and your first melee weapon attack each turn deal additional damage equal to your Wisdom or Charisma modifier (your choice, a minimum of +1).

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Whills%20Order.webp"} +{"_id":"hJfD06NmantavchV","name":"Bulwark Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Bulwark Technique

\n

Some scouts find themselves far from civilization not to hunt, gather intelligence, or escape danger, but to venture forth simply to defend those unable to defend themselves. Followers of the Bulwark Technique make use of advanced technology to contain those that threaten the undeserving.

\n

Bonus Proficiencies

\n

You gain proficiency in heavy armor.

\n

Personal Barrier

\n

When you choose this technique at 3rd level, you gain access to a powerful personal barrier. Whenever you complete a short or long rest, you create a barrier on yourself that lasts until you finish a short or long rest. That barrier has hit points equal to twice your scout level + your Intelligence modifier. Your barrier can never have hit points greater than twice your scout level + your Intelligence modifier.

\n

Whenever you take damage, the barrier takes the damage instead. If this damage reduces the barrier to 0 hit points, you take any remaining damage.

\n

While the barrier has 0 hit points, it can't absorb damage, but its power remains. Whenever you cast a tech power of 1st level or higher, your barrier regains hit points equal to the number of tech points spent.

\n

Additionally, for as long as your barrier has hit points, you gain the following benefits:

\n\n

Mark of the Bulwark

\n

Also at 3rd level, when the target of your Ranger's Quarry feature makes a melee attack against a friendly creature within 5 feet of you, you can use your reaction to force the attack to target you instead. If the attack hits, and your Personal Barrier has hit points, the attacking creatures takes bonus damage equal to your Ranger's Quarry Damage Die.

\n

Projected Barrier

\n

Beginning at 7th level, you've learned how to manipulate your barrier to create new effects. As an action, you can spend three of your barrier's hit points to create a unique effect. You have three such effects: Projected Sphere, Projected Maelstrom, and Projected Wave. When you use your Projected Barrier, you choose which effect to create.

\n

Some Projected Barrier Effects require saving throws. When you use such an effect from this class, the DC equals your tech save DC.

\n

If your barrier's hit points are reduced to 0, any Projected Barrier features immediately end.

\n

Projected Sphere

\n

You create a protective spherical barrier barrier in a 5-foot-radius sphere a point you can see within 30 feet that lasts until the start of your next turn. Creatures within the barrier have three-quarters cover from attacks originating from outside the barrier. You can maintain the barrier by spending an additional barrier hit point at the start of each of your turns (no action required).

\n

Projected Maelstrom

\n

You create an unstable energy maelstrom in a 5-foot cube at a point you can see within 30 feet that lasts until the start of your next turn. A creature takes 4d4 energy damage when it enters the area for the first time on a turn or starts its turn there. You can maintain the barrier by spending an additional barrier hit point at the start of each of your turns (no action required).

\n

This feature's damage increases by 1d4 when you reach 11th level (5d4) and 17th level (6d4).

\n

Projected Wave

\n

You create a wave of barrier energy in a 15-foot cone. Each creature within the cone must make a Dexterity saving throw. On a failed save, a creature takes 2d6 energy damage and is pushed back to the edge of the cone. On a success, they take half damage and aren't pushed.

\n

This feature's damage increases by 1d6 when you reach 11th level (3d6) and 17th level (4d6).

\n

Regenerative Shielding

\n

Starting at 11th level, when a hostile creature forces you to make a saving throw and you succeed, your personal barrier regains hit points equal to your Intelligence modifier.

\n

Adaptive Barrier

\n

At 15th level, when your personal barrier takes damage, you can have it gain resistance to subsequent damage of that type until the start of your next turn (no action required). If it takes damage of more than one type simultaneously, you can choose which type it gains resistance to. Your barrier can only have resistance to one type of damage at a time.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Bulwark%20Technique.webp"} +{"_id":"hlZPMF7NjGemaw66","name":"Ballistic Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Ballistic Approach

\n

For many, rushing an opponent with guns blazing is a last resort. For Berserkers of the Ballistic Approach, this isn't a last resort: it's the primary plan. Leading with a blaster and pure, unbridled rage, the berserker never lets an empty gun diminish their fury.

\n

Firestorm

\n

When you choose this approach at 3rd level, you gain proficiency in martial blasters with the burst or rapid property. Additionally, you’ve learned to use ranged weapons with untold fury. While wielding a blaster with which you are proficient, you gain the following benefits:

\n\n

Explosive

\n

Also at 3rd level, while raging, you gain the following benefits:

\n\n

Rampage

\n

At 6th level, while raging, when you deal damage with a blaster with which you are proficient while within 30 feet of your target, you can use a bonus action to move up to half your speed towards your target. You must end this movement closer to your target than you started. If you end this movement within 5 feet of your target, you can make one melee weapon attack with your blaster as a part of this bonus action.

\n

Down, Not Out

\n

Starting at 10th level, when you are hit with an attack by a creature within 30 feet of you, you can use your reaction to make a single attack against that creature with a blaster with which you are proficient.

\n

Brawn

\n

At 14th level, when you use the burst property of a blaster with which are you proficient, you can apply your rage damage bonus to every target that takes damage. Additionally, when a creature fails the saving throw against your burst or rapid property, it is knocked prone.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Ballistic%20Approach.webp"} +{"_id":"huTTmKT9yzE89Go1","name":"Shield Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Shield Specialist

\n

Those fighters who choose to become Shield Specialists train to bolster those around them. They can inspire their allies with renewed vigor, lifting them to new heights, while simultaneously protecting them from harm.

\n

Techcasting

\n

When you choose this specialty at 3rd 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 Shield Specialist Techcasting 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 half of your fighter level (rounded up), as shown in the Tech Points column of the Shield Specialist Techcasting 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 Shield Specialist Techcasting table.

\n

You may only cast tech powers at 4th-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

Rallying Cry

\n

Beginning at 7th level, you learn how to inspire your allies to fight on past their injuries. When you use your Second Wind feature, you can choose up to three creatures within 60 feet of you that are allied with you. Each one regains hit points equal to your fighter level, provided that the creature can see or hear you.

\n

Shield Specialist Techcasting

\n

Inspiring Surge

\n

At 10th level, when you use your Action Surge feature, you can choose one creature within 60 feet of you that is allied with you. That creature can make one melee or ranged weapon attack with its reaction, provided that it can see or hear you.

\n

Bulwark

\n

Starting at 15th level, you can extend the benefit of your Indomitable feature to an ally. When you decide to use Indomitable to reroll an Intelligence, a Wisdom, or a Charisma saving throw and you aren't incapacitated, you can choose one ally within 60 feet of you that also failed its saving throw against the same effect. If that creature can see or hear you, it can reroll its saving throw and must use the new roll.

\n

Greater Inspiring Surge

\n

At 18th level, you can choose two allies within 60 feet of you, rather than one, when you using your Inspiring Surge feature.

\n

The Shield Specialist

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelTech Powers KnownTech PointsMax Power Level
3rd421st
4th421st
5th531st
6th531st
7th642nd
8th642nd
9th752nd
10th752nd
11th862nd
12th862nd
13th973rd
14th973rd
15th1083rd
16th1083rd
17th1194th
18th1194th
19th12104th
20th12104th
"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Shield%20Specialist.webp"} +{"_id":"i0AaMWBnSREQdQsg","name":"Form V: Shien/Djem So","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form V: Shien/Djem So

\n

Form V, also known as Perseverance Form, utilizes a force-enhanced strength to overwhelm opponents. Those guardians who focus on Shien/Djem So Form actively attempt to force an opening rather than waiting for the opportunity to present itself.

\n

Bonus Proficiencies

\n

You gain proficiency in heavy armor.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Defense, Sentinel, or Shielding Fighting Style options for Shien, or Dueling, Great Weapon Fighting, or Versatile Fighting Fighting Style options for Djem So, detailed in Chapter 6. You can't take a Fighting Style option more than once, even if you later get to choose again.

\n

The Way of the Krayt Dragon

\n

Also at 3rd level, as a bonus action, you can take a threatening stance for one minute. While in this stance, the first time you hit with a melee weapon attack using Strength each turn, you can attempt to damage another creature with the same attack. Choose another creature within 5 feet of the original target and within your reach. If the original attack roll would hit the second creature, it takes damage equal to your Strength modifier. The damage is of the same type dealt by the original attack.

\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain one of the following Channel the Force options. Choose Blade Barrier for Shien or Falling Avalanche for Djem So.

\n

Blade Barrier

\n

On your turn, when you deal melee weapon damage that includes your Strength modifier, you can forgo your Strength modifier to the damage roll, expend a use of your Channel the Force (no action required), and reduce your speed by half. If you do so, energy and kinetic damage you take from weapons before the end of your next turn is reduced by an amount equal to your Strength modifier. You can not use this feature if you have moved more than half your speed this turn.

\n

Falling Avalanche

\n

On your turn, you can expend a use of your Channel the Force (no action required) and reduce your speed by half to gain advantage on the next ability check or attack roll you make using Strength before the end of your next turn. You can not use this feature if you have moved more than half your speed this turn.

\n

Determination

\n

At 7th level, you gain one of the following features. Choose Aggressive Negotiations for Shien or Reliable Vigor for Djem So.

\n

Aggressive Negotiations

\n

When you make a Charisma (Intimidation) or Charisma (Persuasion) check, you gain a bonus to the check equal to half your Strength modifier (rounded down) if it doesn't already include that modifier.

\n

Reliable Vigor

\n

If your total for a Strength check or saving throw is less than your Guardian level, you can use that value in place of the total.

\n

Presence

\n

Starting at 15th level, you gain one of the following features. Choose Precise Reflection for Shien or Brutal Strikes for Djem So.

\n

Precise Reflection

\n

When you hit with an attack made by the saber reflect power, you can expend force points to deal additional damage to the target. The extra damage is 2d8 for a 1st-level force slot, plus 1d8 for each slot level higher than 1st, to a maximum of 5d8. The damage is the same type as the power's damage.

\n

Brutal Strikes

\n

The Force flowing through you grants you incredible strength. When you roll a 1 or 2 on a Force-Empowered Strikes or Improved Force-Empowered Strikes damage die, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2.

\n

Additionally, when you spend force points to use your Force-Empowered Strikes feature, you gain temporary hit points equal to twice the number of points spent.

\n

Master of Perseverance

\n

At 20th level, your might overwhelms even the most implacable of foes. Your Strength and Constitution scores increase by 2. Your maximum for these scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Shien%20Djem%20So%20Form.webp"} +{"_id":"igjYYoVyL95UNC0c","name":"Nightsister Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Nightsister Order

\n

Monks of the Nightsister Order utilize an innate Force-sensitivity to commune with death. They learn to channel this power to drain the life of their foes to prolong their own existence. Males who join this order are called Nightbrothers.

\n

Ichor Lightning

\n

Beginning when you choose this order at 3rd level, you gain a new attack option that you can use with the Attack action. This special attack is a ranged force attack with a range of 30 feet. You are proficient with it, and you add your Dexterity modifier to its attack and damage rolls. Its damage is necrotic, and its damage die is a d4. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.

\n

When you take the Attack action on your turn and use this special attack as part of it, you can spend 1 focus point to make the special attack twice as a bonus action.

\n

When you gain the Extra Attack feature, this special attack can be used for any of the attacks you make as part of the Attack action.

\n

When you reduce a creature to 0 hit points with this attack, you gain temporary hit points equal to your Wisdom or Charisma modifier + your monk level (your choice, minimum of one).

\n

Dark Magick

\n

At 6th level, you can use your action to force each creature within 30 feet of you that can see you to make a Wisdom saving throw against your focus save DC or be charmed or frightened (your choice) of you until the end of your next turn.

\n

Mastery of Death

\n

Starting at 11th level, when you are reduced to 0 hit points, you can expend 1 focus point (no action required) to have 1 hit point instead.

\n

Spirit Blade Assault

\n

At 17th level, as an action, you conjure a blade of negative energy and strike one creature within 5 feet of you with it, expending 1 to 10 focus points. The target must make a Constitution saving throw. On a failed save, it takes 2d10 necrotic damage per focus point spent, or half as much on a successful one.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Nightsister%20Order.webp"} +{"_id":"jEXfkSLXZvy0BQG7","name":"Industrial Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Industrial Approach

\n

While some berserkers are content to surrender to their rage, others prefer a more tactful approach. Berserkers of the Industrial Approach augment their rage with the versatility of technology, adding elemental explosions to their already fearsome arsenal.

\n

Techcasting

\n

When you choose this approach at 3rd 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 Industrial Approach Techcasting 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 half of your berserker level (rounded up), as shown in the Tech Points column of the Industrial Approach Techcasting 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 Industrial Approach Techcasting table.

\n

You may only cast tech powers at 4th-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

Industrious Tech

\n

Also at 3rd level, you can cast tech powers while raging as long as the power’s casting time is no more than 1 action, the power does not require concentration, and you are not wearing heavy armor or wielding a medium or heavy shield. While raging, you add your rage damage to damage rolls from tech powers you cast. If a tech power damages more than one target, you may only apply your rage damage to one of the targets.

\n

Casting tech powers during rage counts as attacking for the purposes of maintaining rage, and you can use your Reckless Attack feature to gain advantage when casting a tech power that requires an attack roll.

\n

Explosive Resilience

\n

At 6th level, once per round, when you deal damage that includes your rage damage, you can cause a localized explosion around the recipient of that damage. Each creature within 5 feet of the damaged creature other than you takes acid, cold, fire, ion, or lightning damage (your choice) equal to your rage damage bonus, and you gain resistance to the chosen damage type until the end of your next turn.

\n

You can use this feature a number of times equal to your Intelligence modifier. You regain all expended uses when you complete a short or long rest.

\n

Painkiller

\n

Starting at 10th level, whenever you cast a tech power of 1st-level or higher, or deal damage using your Explosive Resilience feature, you can cause a friendly creature you can see within 30 feet to gain temporary hit points equal to half your berserker level (rounded up) + your Intelligence modifier. Additionally, while they have these temporary hit points, they have advantage on saving throws against effects that would cause them to be frightened.

\n

Final Countdown

\n

At 14th level, when you are reduced to 0 hit points but not killed outright, and you have at least one tech point remaining, you can expend all your remaining tech points and instead to drop to one hit point. If you do so, each creature within 30 feet of you must make a Dexterity saving throw. On a failed save, they take 10 acid, cold, fire, ion, or lightning damage (your choice) damage for each tech point spent in this way, or half as much on a successful one.

\n

Industrial Approach Techcasting

\n

The Industrial Approach

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelTech Powers KnownTech PointsMax Power Level
3rd421st
4th421st
5th531st
6th531st
7th642nd
8th642nd
9th752nd
10th752nd
11th862nd
12th862nd
13th973rd
14th973rd
15th1083rd
16th1083rd
17th1194th
18th1194th
19th12104th
20th12104th
"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Industrial%20Approach.webp"} +{"_id":"jTIquPrCJE4cdUTt","name":"Chef Pursuit","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scholar","description":{"value":"

Chef Pursuit

\n

Without it empires fall, armies dissolve into nothingness, and species are forgotten with the passage of time. A favored tool of assassins, crime lords, and moguls: food. Those scholars who choose the Chef Pursuit know the importance and power that food carries.

\n

Culinary Knowledge

\n

When you choose this pursuit at 3rd level, you gain proficiency with chef's kits and your choice of Nature or Survival skills.

\n

Emergency Supplements

\n

Also at 3rd level, you are prepared to assist allies with specially prepared, instantly effective supplements. When an ally is the target of your Critical Analysis feature and within 5 feet of you, you may expend a superiority die and give that ally the benefits of any maneuver exclusive to the Chef Pursuit, regardless of whether or not you've chosen it.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Additional Maneuvers

\n

Lastly at 3rd level, you gain access to new maneuvers which reflect the progress of your studies into the culinary arts. Whenever you learn a new maneuver, you can choose from any of the following as well. The maneuvers are listed in alphabetical order.

\n

You may only perform one maneuver that is used during a long or short rest at a time.

\n

Allergens

\n

As a bonus action while preparing or touching food, you may expend a superiority die and add to it an irritating allergen. At the start of each of its turns, a creature that consumes this food must make a Constitution saving throw. On a failed save, it subtracts half the result of your superiority die (rounded down, minimum of one) from the first ability check, attack roll, or saving throws it makes before the start of its next turn. The effect of this maneuver ends when the creature completes its next long rest or 24 hours have passed. This maneuver has no effect on droids or constructs.

\n

Brain Food

\n

At the end of a short or long rest you may expend a superiority die and choose a number of friendly creatures up to your Intelligence modifier (minimum of one), if they ate food you prepared. Each creature gains a number of temporary force or tech points (their choice) equal to the number you roll on the superiority die. When an affected creature casts a force or tech power, the temporary force or tech points are spent first. An affected target can only benefit from one source of temporary force or tech points at a time, and they last until they're depleted or until the affected target completes their next short or long rest. This maneuver has no effect on droids or constructs.

\n

Debilitants

\n

As a bonus action when preparing or touching food, you may expend a superiority die and add to it a subtle poison. Any creature that consumes this food must make a Constitution saving throw. On a failed save, their hit point maximum is reduced by an amount equal to twice the number rolled on your superiority die + your Intelligence modifier. The effect of this maneuver ends when the creature completes its next long rest or 24 hours have passed. This maneuver has no effect on droids or constructs.

\n

Energizers

\n

At the end of a short or long rest you may expend a superiority die and choose a number of friendly creatures up to your Intelligence modifier (minimum of one), if they ate food you prepared. Each creature has their walking speed increased by 10 until the end of their next short or long rest. This maneuver has no effect on droids or constructs.

\n

Enhancers

\n

At the end of a short or long rest you may expend a superiority die and choose a number of friendly creatures up to your Intelligence modifier (minimum of one), if they ate food you prepared. Once before the end of their next short or long rest, affected targets may add the result of the superiority die to a damage roll that would affect only one target. This maneuver has no effect on droids or constructs.

\n

Health Food

\n

At the end of a short or long rest you may expend a superiority die and choose a number of friendly creatures up to your Intelligence modifier (minimum of one), if they ate food you prepared. Each creature gains a number of temporary hit points equal to twice the number you roll on the superiority die. This maneuver has no effect on droids or constructs.

\n

Muscle Relaxants

\n

As a bonus action while preparing or touching food, you may expend a superiority die and add to it a fast acting muscle relaxant. At the start of each of its turns, a creature that consumes this food must make a Constitution saving throw. On a failed save, it subtracts the result of your superiority die from the first damage roll it makes before the start of its next turn. The effect of this maneuver ends when the creature completes its next long rest or 24 hours have passed. This maneuver has no effect on droids or constructs.

\n

Supplements

\n

At the end of a short or long rest you may expend a superiority die and choose a number of friendly creatures up to your Intelligence modifier (minimum of one), if they ate food you prepared. Once before the end of their next short or long rest, affected targets may add the result of the superiority die to one ability check, attack roll, or saving throw. The creature can wait until after it rolls the d20 before deciding to use this feature, but must decide before the DM says whether the roll succeeds or fails. This maneuver has no effect on droids or constructs.

\n

Vitamins

\n

At the end of a short or long rest you may expend a superiority die and choose a number of friendly creatures up to your Intelligence modifier (minimum of one), if they ate food you prepared. Each creature gains proficiency in Constitution saving throws until the end of their next short or long rest. If a creature was already proficient in Constitution saving throws, they instead become proficient in a saving throw of your choice. This maneuver has no effect on droids or constructs.

\n

Balanced Diet

\n

Beginning at 6th level, your cooking is so nutritionally balanced that it allows allies to stave off the effects of continued rigorous activity. Creatures of your choice who eat food prepared by you have advantage on Constitution saving throws to avoid Exhaustion, as described in chapter 8, until the end of their next long rest.

\n

Comfort Food

\n

Starting at 9th level, if you or any friendly creatures who have consumed food you prepared during a short rest regain hit points by spending hit dice at the end of the short rest, each of those creatures regains an extra 1d8 hit points.

\n

The extra hit points increase when you reach certain levels in this class: to 1d10 at 11th level, and to 1d12 at 15th level.

\n

Heroes' Feast

\n

Once you've reached 17th level, you have developed a signature feast that is the purest distillation of your knowledge and talent as a chef.

\n

Over the course of a long rest, you can expend rare culinary supplies worth 1,000 cr to create your feast, which can feed a number of creatures equal to twice your Intelligence modifier. Any creature partaking in the feast gains the following benefits:

\n\n

These benefits last until the end of the creature's next long rest or 24 hours have passed. This feature has no effect on droids or constructs.

\n

Discoveries (Chef)

\n

When you select this pursuit, you gain access to new discoveries which reflect the progress of your studies into the culinary arts. Whenever you learn a new discovery, you can choose from any of the following as well. The discoveries are listed in alphabetical order.

\n

Alternative Fuel

\n

Any of your chef features, maneuvers, or discoveries can now effect droids and constructs.

\n

Banquet

\n

Prerequisite: 17th level, Full Course

\n

Over the course of a long or short rest, you may utilize an additional maneuver from this archetype (total of four).

\n

Filling Meal

\n

Prerequisite: 7th level

\n

Over the course of a long or short rest, you may utilize up to two different maneuvers from this archetype, rather than one.

\n

Full Course

\n

Prerequisite: 12th level, Filling Meal

\n

Over the course of a long or short rest, you may utilize an additional maneuver from this archetype (total of three).

\n

On the Rocks

\n

Any food you prepare over a short or long rest carries with it an additional cooling effect. Creatures that consume it are considered adapted to hot climates, as described in chapter 5 of the Dungeon Master's Guide, until the end of the creature's next long rest or 24 hours have passed. Additionally, the first time a creature who eats your food takes fire damage before the end of their next short or long rest, they are considered resistant to the damage.

\n

Secret Ingredient

\n

If you or any friendly creature that has consumed food made by you during their last short or long rest gains temporary hit points, the number of temporary hit points they gain increases by an amount equal to your Intelligence modifier.

\n

Spice of Life

\n

Any food you prepare over a short or long rest carries with it an additional warming effect. Creatures that consume it are considered adapted to cold climates, as described in chapter 5 of the Dungeon Master's Guide, until the end of the creature's next long rest or 24 hours have passed. Additionally, the first time a creature who eats your food takes cold damage before the end of their next short or long rest, they are considered resistant to the damage.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Chef%20Pursuit.webp"} +{"_id":"kqAxtz1x4ydhppPG","name":"Way of Balance","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of Balance

\n

There is serenity in balance, and no one knows this better than the consular. Those consulars who follow the Way of Balance focus on utilizing the Force to equalize the battlefield. They bend the Force to shield their allies and expose their foes.

\n

Force Barrier

\n

When you choose this tradition at 3rd level, you can weave the Force around yourself for protection. When you cast a universal power of 1st level or higher, you can simultaneously manipulate the Force to create a barrier on yourself that lasts until you finish a long rest. The barrier has hit points equal to twice your consular level + your Wisdom or Charisma modifier (your choice). Your barrier can never have hit points greater than twice your consular level + your Wisdom or Charisma modifier (your choice).

\n

Whenever you take damage, the barrier takes the damage instead. If this damage reduces the barrier to 0 hit points, you take any remaining damage.

\n

While the barrier has 0 hit points, it can't absorb damage, but its power remains. Whenever you cast a universal power of 1st level or higher, the barrier regains a number of hit points equal to twice the level of the power.

\n

Once you create the barrier, you can't create it again until you finish a long rest.

\n

Projected Barrier

\n

At 6th level, when a creature that you can see within 30 feet of you takes damage, you can use your reaction to cause your Force Barrier to absorb that damage. If this damage reduces the barrier to 0 hit points, the warded creature takes any remaining damage.

\n

At-Will Barrier

\n

Beginning at 10th level, your at-will universal powers grant a small boost to your Force Barrier. When you cast an at-will universal power, the barrier regains 1 hit point.

\n

Improved Suppression

\n

At 14th level, when you cast a force power that requires you to make an ability check as a part of casting that power (as in sever force and force suppression), you add your proficiency bonus to that ability check.

\n

Force Resistance

\n

Starting at 18th level, you have advantage on saving throws against force powers. Additionally, you have resistance against the damage of force powers.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20Balance.webp"} +{"_id":"lETcZuQWPZg3n2u0","name":"Saboteur Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Saboteur Practice

\n

Those operatives who choose the Saboteur Practice enhance their fine-honed skills of stealth and agility with tech, using advanced technology with the aid of a tracker droid to sustain a longer assault.

\n

Bonus Proficiencies

\n

You gain proficiency in astrotech's tools.

\n

Techcasting

\n

When you choose this practice at 3rd 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 Saboteur Practice Techcasting 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 half of your operative level (rounded up), as shown in the Tech Points column of the Saboteur Practice Techcasting 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 Saboteur Practice Techcasting table.

\n

You may only cast tech powers at 4th-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

Tracker Droid Companion

\n

Also at 3rd level, you learn to employ all the knowledge you've accumulated to create and customize your own personalized tracker droid companion.

\n

Your tracker droid is detailed at the end of this practice. Over the course of 8 hours, which can be done during a long rest, you can expend 500 cr worth of materials to finally finish your tracker droid.

\n

If your tracker droid is irreparable destroyed, or you want to interface with a different tracker droid, you can spend an additional 250 credits and 1 hour to change the target of this feature. You may only have one tracker droid companion at a time.

\n

Your tracker droid gains a variety of benefits while it is interfaced with you:

\n\n

Powered Ambush

\n

Beginning at 9th level, if you are hidden from a creature when you cast a power on it, the creature has disadvantage on any saving throw it makes against the power this turn.

\n

Ion Pulse

\n

Starting at 13th level, as a bonus action on your turn, you can expend one or more of your tracker droid's Hit Dice to have it emit an pulse of ion energy. Each creature within 5 feet of your tracker droid must make a Constitution saving throw against your tech save DC. A creature takes 1d4 ion damage for each Hit Die expended in this way on a failed save, or half as much as on a successful one. Any electronics not being worn or carried within the blast radius are disabled until rebooted.

\n

Saboteur Practice Techcasting

\n

Sabotage

\n

At 17th level, you gain the ability to sabotage a tech power in the process of being cast. When a hostile creature casts a tech power, and you are the target of the tech power or within its area of effect, you can use your reaction to force that creature to make an Intelligence saving throw against your tech save DC. On a successful save, the power is cast as normal.

\n

On a failed save, you negate the power's effects, and the caster takes 1d6 lightning damage per level of the power it was casting. Additionally, on a failed save, the caster's tech focus used to cast the tech power is overloaded and can't be used to cast tech powers for 1 minute.

\n

At the end of each of the caster's turns, it can repeat the Intelligence saving throw. On a success, it can use the tech focus to cast tech powers again.

\n

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

\n

Generating Your Tracker Droid

\n

Choosing your tracker droid companion is an integral part of being an Saboteur Operative. Your tracker droid takes a form of your choosing.

\n

Once you've selected your tracker droid, you assign your tracker droid's ability scores using a varied standard array (14, 12, 10, 8, 6, 4) as you see fit.

\n

Tracker Droid Features

\n

All tracker droids share the following traits.

\n

Hit Points

\n\n

Resistances and Vulnerabilities

\n\n

Proficiencies

\n\n

Features

\n\n

Tracker Droid Upgrades

\n

The traits are presented in alphabetical order.

\n

Aerial Travel Package

\n

Your tracker droid companion has a 30 foot flying speed.

\n

Camouflage Module

\n

You install a camouflage module in your tracker droid. You tracker droid can turn on its stealth field to become invisible. While it is invisible, anything it is carrying or wearing is also invisible. It becomes visible when it turns off the field. Turning the field on or off requires an action.

\n

Deduct the time your tracker droid is invisible, in increments of 1 minute, from the module's maximum duration of 2 hours. After 2 hours of use, the module ceases to function. For every uninterrupted period of 12 hours the module goes unused, it regains 1 hour of use.

\n

Expertise Protocol

\n

Prerequisite: 5th level You install a protocol in your tracker droid that grants it expertise in a tool or skill. Choose a tool or skill that your tracker droid is proficient in. Your tracker droid gains expertise in it.

\n

Flyby

\n

Opportunity attacks made against your tracker droid have disadvantage.

\n

Four-Armed Tracker

\n

Prerequisite: Pintsized Arms or Undersized Arms Your tracker droid gains two additional arms which they can use independently of one another. Your tracker droid can only gain the benefit of items held by two of its arms at any given time, and once per round it can switch which arms it is benefiting from (no action required).

\n

Heavy Plating

\n

Your tracker droid companion's armor class becomes 14.

\n

Interfaced Assistance Protocol

\n

Prerequisite: 5th level While you are interfaced with your tracker droid via the tracker droid interface tech power, whenever you have advantage on an ability check or attack roll granted by your tracker droid taking the Help action, you can reroll one of the dice once.

\n

Interfaced Crafting Protocol

\n

Prerequisite: 5th level While you are interfaced with your tracker droid via the tracker droid interface tech power, whenever you make an ability check using tools with which the you are also proficient, you have advantage on the check. If you already have advantage, you can instead reroll one of the dice once.

\n

Interfaced Distraction Protocol

\n

Prerequisite: 5th level While you are interfaced with your tracker droid via the tracker droid interface tech power, when your tracker droid is within 5 feet of a target, you do not provoke opportunity attacks when moving out of that creature's reach.

\n

Interfaced Healing Protocol

\n

Prerequisite: 5th level While you are interfaced with your tracker droid via the tracker droid interface tech power, when you restore hit points to a creature that is within 5 feet of your tracker droid, you can roll the dice twice and take either total.

\n

Interfaced Tracking Protocol

\n

Prerequisite: 5th level While you are interfaced with your tracker droid via the tracker droid interface tech power, when you make a Wisdom (Survival) check to track a target, and your tracker droid is also tracking that target, you gain advantage on the check. If you already have advantage, you can instead reroll one of the dice once.

\n

Keen Hearing

\n

Your tracker droid companion has advantage on Wisdom (Perception) checks that rely on hearing.

\n

Keen Sight

\n

Your tracker droid companion has advantage on Wisdom (Perception) checks that rely on sight.

\n

Keen Smell

\n

Your tracker droid companion has advantage on Wisdom (Perception) checks that rely on smell.

\n

Laser Cutter

\n

Your tracker droid can cut through 1-inch-thick glass at a rate of 3 inches per round.

\n

Light Plating

\n

Your tracker droid companion's armor class becomes 11 + it's Dexterity modifier.

\n

Medium Plating

\n

Your tracker droid companion's armor class becomes 13 + it's Dexterity modifier, to a maximum of +2.

\n

Pintsized Arms

\n

Prerequisite: Size Tiny Your Tiny tracker droid gains two arms that struggle to wield bigger weapons. Your tracker droid can't use medium or heavy shields. Additionally, your tracker droid can't wield weapons with the two-handed or versatile property, and it can only wield one-handed weapons in two hands unless they have the light property.

\n

Proficiency Protocol

\n

You install a protocol in your tracker droid that grants it proficiency in a tool or skill of your choice.

\n

Ranged Interface Protocol

\n

The range within which you can interact with your tracker droid increases by 50 feet. This increases to 100 feet at 5th level, 150 feet at 9th level, 200 feet at 13th level, 250 feet at 17th level, and 300 feet at 20th level.

\n

Ranged Shockshot

\n

Your tracker droid companion gains a ranged shockshot. It has a normal range of 30 feet and a long range of 90 feet, and on a hit it deal lightning damage equal to its shockprod damage.

\n

Scomp Link

\n

Prerequisite: 9th level Your tracker droid gets an integrated scomp link which it can use to interface with computers. While interfaced, when you or your tracker droid makes an Intelligence (slicer's kit) check, you can choose to reroll the check. You must use the new roll. You can wait until after you roll the d20 before deciding to use this feature, but you must decide before the GM says whether the check succeeds or fails.

\n

Sentry Dish

\n

Your tracker droid learns the alarm tech power. It can cast it once, without the use of a wristpad and without spending tech points, and it regains the ability to do so when it finishes a long rest. Intelligence is your techcasting ability for this power.

\n

Size: Small

\n

Your tracker droid companion's size is Small. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d6, its shockprod damage die becomes a d4, and it's walking speed increases to 25.

\n

Spider Legs

\n

Your tracker droid has a climbing speed equal to its walking speed. Additionally, your tracker droid has advantage on Strength saving throws and Strength (Athletics) checks that involve climbing.

\n

Storage

\n

Your tracker droid comes with a hidden storage compartment which can store up to 1 lb. Finding finding this hidden pocket requires a DC 15 Investigation check.

\n

Techcasting Range Protocol

\n

You can cast tech powers with a range of 5 feet or greater through your tracker droid while interfaced with it, but your tracker droid must be within 5 feet of the target of the power. This increases to 10 feet at 5th level, 20 feet at 9th level, 30 feet at 13th level, 60 feet at 17th level, and 120 feet at 20th level.

\n

Undersized Arms

\n

Prerequisite: Size Small Your Small tracker droid gains two arms that struggle to wield bigger weapons. Your tracker droid can't use heavy shields. Additionally, your tracker droid can't use martial weapons with the two-handed property unless it also has the light property, and if a martial weapon has the versatile property, your tracker droid can only wield it in two hands.

\n

The Saboteur Practice

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelTech Powers KnownTech PointsMax Power Level
3rd421st
4th421st
5th531st
6th531st
7th642nd
8th642nd
9th752nd
10th752nd
11th862nd
12th862nd
13th973rd
14th973rd
15th1083rd
16th1083rd
17th1194th
18th1194th
19th12104th
20th12104th
"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Saboteur%20Practice.webp"} +{"_id":"lGoI3XalF3gv8el4","name":"Gambler Pursuit","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scholar","description":{"value":"

Gambler Pursuit

\n

Not all studied men and women use their intelligence and skill for the pursuit of knowledge, but instead turn to the various casinos and betting halls of the galaxy. Those scholars who choose the Gambler Pursuit use their knowledge of probability and risk to attempt to master games of chance and build their fortune, or lose it all along the way.

\n

Gambler's Aptitude

\n

When you choose this pursuit at 3rd level, you gain proficiency in your choice of the Insight, Deception, Persuasion, or Sleight of Hand skills. Additionally, you gain proficiency in three gaming sets of your choice, and you have advantage on any ability check you make that uses any of these gaming sets.

\n

Risk versus Reward

\n

Also at 3rd level, when you make your first attack on your turn against the target of your Critical Analysis feature, you can decide to gamble by rolling a d6. On a roll of 4 or higher, you have advantage on attack rolls against that creature until the start of your next turn. On a roll of 3 or lower, that creature instead has advantage on attack rolls against you until the start of your next turn.

\n

This die increases when you reach certain levels in this class: to 1d8 at 7th level, to 1d10 at 11th level, and to 1d12 at 15th level.

\n

Additional Maneuvers

\n

Lastly at 3rd level, you gain access to new maneuvers which reflect your deep understanding of chance. Whenever you learn a new maneuver, you can choose from any of the following as well. The maneuvers are listed in alphabetical order.

\n

All In

\n

When you make an attack roll, and the result is less than 20, you can expend a superiority die and roll it, adding it to the roll. If the resulting sum is 20 or 23, the attack is considered a critical hit.

\n

Blind Luck

\n

When you fail an ability check, you can expend a superiority die. If the result of your ability check plus the superiority die is within a range equal to half your proficiency bonus (rounded down) above or below the check's DC, you pass the check instead.

\n

Double Bluff

\n

If on the same round of combat that you have missed a weapon attack, an enemy also misses you with a weapon attack, you can expend a superiority die and make a single weapon attack, adding the results of your superiority die to both the attack and damage rolls.

\n

The Idiot's Array

\n

When a creature hits you with a weapon attack roll, you can expend a superiority die and roll it. On a roll of 4 or higher, you take minimum damage on the damage roll and subtract the value of the superiority die. On a roll of 3 or lower, you instead take the maximum.

\n

Played Their Hand

\n

When a creature hits you with an opportunity attack while within 5 feet of you, you can use your reaction and expend a superiority die to impose disadvantage on the attack roll. If the attack misses, you can make a Dexterity (Sleight of Hand) check contested by the attacker's Strength (Athletics) or Dexterity (Acrobatics) check (their choice) as a part of this reaction. On a success, the target drops the weapon it made the attack with. If you are within 5 feet of the target, and you have a free hand, you can catch the item. Otherwise, the object lands at its feet.

\n

Pure Sabacc

\n

When you score a critical hit with a weapon attack, you can expend a superiority die and roll it. On a roll of 4 or higher, you deal maximum damage on the weapon's damage roll, including the superiority die. On a roll of 3 or lower, you instead deal the minimum.

\n

Raise the Stakes

\n

When the target of your Critical Analysis feature makes an attack roll against you, you can use your reaction to expend a superiority die. Roll the die and subtract the result from the enemy's attack roll, but add the result to their damage roll on a hit.

\n

Take a Chance

\n

Before making an attack roll, you can expend a superiority die. On a miss, you lose that superiority die and do not benefit from it in any way. On a hit, you can choose two other maneuvers that you know, and subject the target to both maneuvers, without expending additional superiority dice.

\n

Tiebreaker

\n

When you roll a superiority die as a part of a maneuver you learned from this class, you can expend another superiority die and use the total of both dice.

\n

Lucky Number 7

\n

Beginning at 6th level, whenever you roll a 7 on an attack roll against the target of your Critical Analysis feature, the attack automatically hits and you regain a superiority die. You can not have more superiority dice than the amount shown in the Superiority Dice column of the Scholar class table.

\n

When attacking with advantage or disadvantage, this effect applies if either roll is a 7. If both rolls are a 7, the attack is a critical hit.

\n

Tell Me the Odds

\n

Starting at 9th level, if the target of your Critical Analysis hits you with a weapon attack roll, you can use your reaction to roll a d8. On a 4 or higher, you impose disadvantage on the roll. If the target already had disadvantage, they must instead reroll one of the dice once (your choice).

\n

This die increases when you reach certain levels in this class: to 1d10 at 11th level, and to 1d12 at 15th level.

\n

Borrowed Luck

\n

Once you've reached 17th level, you have gained the ability to unnaturally alter luck in your favor. Once per round, after an attack roll, saving throw, or ability check is rolled by you or a creature that you can see, you can replace the number on the d20 with a 7. Note the number on the d20 of the roll that you replaced. That number becomes your borrowed luck roll.

\n

While you have a borrowed luck roll, you can expend it and replace any ability check, attack roll, or saving throw made by you or a creature that you can see with the value of the borrowed luck roll. You can only have one borrowed luck roll at a time, and you lose any unused borrowed luck rolls when you complete a short or long rest.

\n

Discoveries (Gambler)

\n

When you select this pursuit, you gain access to new discoveries which reflect your deep understanding of chance. Whenever you learn a new discovery, you can choose from any of the following as well. The discoveries are listed in alphabetical order.

\n

Ace Up Your Sleeve

\n

Whenever you make a Dexterity (Sleight of Hand) or Charisma (Deception) check, you can expend a superiority die, adding the result to your total for the check.

\n

Against the House

\n

Whenever you would make a Charisma (Persuasion) check involving haggling, you can instead challenge the target to a game of chance. If they accept your offer, you can make an ability check with an available gaming set. If you win the challenge, you automatically succeed on the Charisma (Persuasion) check.

\n

Ante Up

\n

When you roll initiative, are not surprised, and end up first in the initiative order, you can take one additional action on top of your regular action and a possible bonus action during your first turn in combat.

\n

Calculated Bluff

\n

When you make an ability check using your Charisma, you can choose to instead make the check using your Intelligence.

\n

Cold Read

\n

Prerequisite: 5th level

\n

As an action, you may make a Wisdom (Insight) check contested by a target's Charisma (Deception) check. On a success, you know the next action the target intends to take, so long as the situation does not change dramatically.

\n

Feeling the Pressure

\n

Prerequisite: 13th level

\n

Whenever you roll a 4 or higher on your Risk Versus Reward feature, the target of your Critical Analysis feature also has disadvantage on attack rolls made against you until the start of your next turn.

\n

The Magic Number

\n

Prerequisite: 7th level

\n

Whenever you roll a 7 on an ability check or saving throw, you can reroll the ability check or saving throw with advantage.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Gambler%20Pursuit.webp"} +{"_id":"m0oQQxDCTO6nqWnz","name":"Cybertech Engineering","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Engineer","description":{"value":"

Cybertech Engineering

Those engineers who choose the Cybertech Engineering discipline focus on the ability to craft reusable consumables and items that augment and complement their techcasting abilities.

Bonus Proficiencies

When you choose this discipline at 3rd level, you gain proficiency in cybertech's tools. additionally, when you engage in crafting with cybertech's tools, the rate at which you craft doubles.

Cybertech Contraptions

Also at 3rd level, you learn modify gadgets and wristpads utilizing your cybertech knowledge. Over the course of a long rest, you can expend 500 cr worth of materials to modify your wristpad. You must have a wristpad, materials, and cybertech's tools in order to perform this modification.

Your wristpad requires attunement, can only be used by you, and counts as a tech focus for your tech powers while you are attuned to it. Your modified wristpad has 4 modification slots, and it gains more at higher levels, as shown in the Modification Slots column of the engineer class table. For each modification installed, your tech point maximum is reduced by 1. Over the course of a long rest, you can replace or remove a number of modifications up to your Intelligence modifier (minimum of one).

Some modification effects require saving throws. When you use such an effect from this class, the DC equals your tech save DC.

Potent Techcasting

Lastly at 3rd level, when you miss with a tech attack roll, or a creature succeeds on a saving throw against a tech power you cast, you can expend one use of your Potent Aptitude to overwhelm them. Roll the die, and either add it to the attack roll or subtract it from their saving throw.

Adaptable Applications

Beginning at 6th level, when you cast a tech power of 1st level or higher, you can choose to deal additional damage or provide additional healing with that power. The additional damage or healing equals half your engineer level (rounded down).

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a long rest.

Combat Contrivances

At 14th level, when you use your action to a cast a 1st-level or higher tech power, you can use your bonus action to gain temporary hit points equal to the level of the tech power + your Intelligence modifier.

Perfected Purposing

Starting at 18th level, when you cast a tech power, you can choose to deal maximum damage or provide maximum healing with that power.

Once you've used this feature, you must complete a short or long rest before you can use it again.

Cybertech Modifications

If a modification has prerequisites, you must meet them to install it. You can install the modification at the same time that you meet its prerequisites.

Advanced Biotic Amplifier

Prerequisite: 15th level Prerequisite: Prototype Biotic Amplifier You further fine tune your biotic amplifier. While wielding this amplifier, when a creature gains temporary hit points from your biotic amplifier, it instead gains four times as many. This amount can't exceed the number of hit points regained.

Advanced Corrosive Amplifier

Prerequisite: 15th level Prerequisite: Prototype Corrosive Amplifier You further fine tune your Corrosive Amplifier. When you activate this amplifier, the next attack roll made by that creature before the end of its next turn has disadvantage.

Advanced Cryo Amplifier

Prerequisite: 15th level Prerequisite: Prototype Cryo Amplifier You further fine tune your Cryo Amplifier. When you activate this amplifier, the creature is restrained until the end of your next turn.

Advanced Explosive Amplifier

Prerequisite: 15th level Prerequisite: Prototype Explosive Amplifier You further fine tune your Explosive Amplifier. When a creature takes fire damage while ignited, the creature has disadvantage on the next Dexterity saving throw it makes before the start of your next turn.

Arakyd Vector

Prerequisite: 5th level You gain a +1 bonus to tech attack rolls. This bonus increases to +2 at 11th level and +3 at 17th level.

Augmented Explosive

You can augment a single grenade, mine, or thermal detonator to regain its charge. An augmented explosive can only be used by you, and it uses your tech save DC instead of its own. Once you've activated an explosive, it can't be activated again until you finish a short or long rest.

You can select this modification multiple times. Each time you do so, you can maintain an additional augmented explosive, to a maximum equal to your Intelligence modifier.

Belasco Dynamics

Prerequisite: 5th level You gain a +1 bonus to your tech save DC. This bonus increases to +2 at 11th level and +3 at 17th level.

Biotic Amplifier

You integrate a biotic amplifier in your wristpad that increases the potency of your healing tech powers. While wielding this amplifier, when a creature regains hit points from a tech power you cast, you can grant them temporary hit points equal to the amount of tech points spent. This amount can't exceed the number of hit points restored.

You can use this amplifier a number of times equal to your Intelligence modifier. You regain all expended uses when you complete a short or long rest.

Climbing Gloves

You craft a set of gloves with a powerful assisted grip. While wearing these gloves, you have a climbing speed of 20 feet, and you have advantage on Strength saving throws and Strength (Athletics) checks that involve climbing.

Corrosive Amplifier

You integrate a booster in your wristpad that enhances your tech powers that deal acid damage. While wielding this amplifier, when a creature takes acid damage from a tech power you cast, you can choose to deal additional acid damage equal to your Intelligence modifier.

You can use this amplifier a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Cryo Amplifier

You integrate a booster in your wristpad that enhances your tech powers that deal cold damage. While wielding this amplifier, when a creature takes cold damage from a tech power you cast, you can choose to deal additional cold damage equal to your Intelligence modifier.

You can use this amplifier a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Darkvision Goggles

You craft a pair of sight-enhancing goggles. While wearing these goggles, you have darkvision to a range of 60 feet. If you already have darkvision, this modification increases its range by 30 feet.

Explosive Amplifier

You integrate a booster in your wristpad that enhances your tech powers that deal fire damage. While wielding this amplifier, when a creature takes fire damage from a tech power you cast, you can choose to deal additional fire damage equal to your Intelligence modifier.

You can use this amplifier a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Imaging Amplifier

You integrate a booster in your wristpad that enhances your illusionary tech powers. While wielding this amplifier, when a creature attempts an Intelligence (Investigation) check against a tech power you cast to discern the illusion for what it is, you can force the creature to have disadvantage on the roll (no action required). Alternatively, when you cast the mirror image tech power, you create a fourth duplicate. While you have four duplicates, you must roll a 5 or higher on the d20 roll to change an attack's target to a duplicate.

You can use this amplifier a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Jet Boots

Prerequisite: 7th level You find tune your augmented boots to give you temporary, limited flight. Activating or deactivating the boots requires a bonus action and, while active, you have a flying speed of 30 feet.

The rocket boots last for 1 minute before deactivating. Once the boots have been activated, they can't be activated again until you finish a short or long rest.

Mechanical Arm

You create a mechanical arm which mounts to your shoulder, which you can use independently. You can only gain the benefit of items held by two of your arms at any given time.

You can choose this modification twice.

Prototype Biotic Amplifier

Prerequisite: 7th level Prerequisite: Biotic Amplifier You fine tune your biotic amplifier. While wielding this amplifier, when a creature gains temporary hit points from your biotic amplifier, it instead gains twice as many. This amount can't exceed the number of hit points regained.

Prototype Corrosive Amplifier

Prerequisite: 7th level Prerequisite: Corrosive Amplifier You fine tune your Corrosive Amplifier. When you activate this amplifier, the next attack roll made against that creature before the end of its next turn has advantage.

Prototype Cryo Amplifier

Prerequisite: 7th level Prerequisite: Cryo Amplifier You fine tune your Cryo Amplifier. When you activate this amplifier, the creature's speed is reduced by 10 feet until the end of your next turn. If the tech power already reduces the creature's speed, that amount is instead increased by 5 feet.

Prototype Explosive Amplifier

Prerequisite: 7th level Prerequisite: Explosive Amplifier You fine tune your Explosive Amplifier. When you activate this amplifier, the creature is also ignited for 1 minute. At the start of each of its turns, the creature takes additional fire damage equal to your Intelligence modifier and then makes a Dexterity saving throw against your tech save DC, ending this effect on a success.

If the target or a creature within 5 feet of it uses an action to put out the flames, or if some other effect douses the flames, the effect ends.

Powered Grappling Hook

Prerequisite: 9th level Prerequisite: Wrist-Mounted Grappling Hook While your wrist-mounted grappling hook is deployed, when you cast a tech power with a range of touch, your hook can deliver the power as if it had cast it.

Sentry Turret

You learn how to craft small sentry turrets shaped like globes that can adhere to any surface. As an action or bonus action (your choice), you can throw a sentry to a point you can see within range (30 feet + your Strength modifier x 5). At the end of each of your turns, a deployed sentry automatically targets a hostile creature within 10 feet of it. If multiple targets are available, one is chosen at random. The target must make a Dexterity saving throw. On a failed save, it takes 1d4 energy damage and its speed is reduced by 5 until the end of your next turn.

The sentries have 1 hit point, an armor class of 10, and can be repaired over the course of a long rest. Each sentry lasts for 1 minute before deactivating. You can maintain a number of sentries equal to your Intelligence modifier. Once a sentry has been activated, it can't be activated again until you finish a short or long rest.

Truesight Goggles

Prerequisite: 11th level Prerequisite: Darkvision Goggles You modify your goggles with a toggle allowing you to briefly gain enhanced sight. As a bonus action, you can activate the truesight feature of your goggles. When toggled on, for the next minute your goggles now automatically dispel illusions and can detect invisibility, as with truesight.

Once you've used this feature, you must complete a short or long rest before you can use it again.

Wrist-Mounted Grappling Hook

You craft a wrist-mounted grappling hook weapon attached to a tightly coiled cord. With this contraption, you can make a ranged weapon attack with a range of 30/60. On a hit, it deals 1d4 kinetic damage. This attack can target a surface, object, or creature.

A creature struck by this attack is impaled by the hook. As an action, a creature can attempt to remove the hook. Removing the hook requires a Strength check. While the hook is stuck in the target, you are connected to the target by a 60 foot cable.

While the hook is deployed, you can use your bonus action to activate the reel, pulling yourself to the location if the target is your size or larger. A creature or object smaller than you is pulled to you. Alternatively, you can opt to release the cable (no action required).

Once you've used this feature, you can't use it again until you recover and reinsert the hook as an action.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Cybertech%20Engineering.webp"} +{"_id":"n46s1RsRnnQjxHvX","name":"Heavy Weapons Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Heavy Weapons Specialist

\n

Some manned instruments of war require their user to have superior physical prowess to overcome their weight and encumbrance. Those fighters who choose to become Heavy Weapons Specialists use their powerful bodies, and powerful armaments, to overwhelm their foes.

\n

Rock Steady

\n

When you choose this specialty at 3rd level, you have learned to use the heft of your weapon to root yourself in place. At the end of each of your turns, if you move less than half your speed while wielding a weapon with the heavy or strength properties, you have advantage on saving throws to avoid being restrained, moved, or knocked prone. This advantage lasts until the end of your next turn.

\n

My Little Friend Says Hello There

\n

Also at 3rd level, you know how to use the sheer size of your weapon to strike fear in those around you. You can add your Strength modifier to any Charisma (Intimidation) check you make while wielding a weapon with the heavy or strength properties that doesn't already include that modifier.

\n

Maximum Output

\n

Beginning at 7th level, when you take the Attack action while wielding a weapon with the heavy or strength properties, you can forgo one or more attacks. If you do so, you deal additional damage the first time you hit with an attack roll before the end of your next turn. For each attack you forgo in this fashion, you deal extra damage equal to 1d12 + half your fighter level (rounded down). If you miss with the first attack roll you make before the end of your next turn, you instead deal normal weapon damage.

\n

Straight Through

\n

At 10th level, when you score a critical hit on your turn while wielding a weapon with the heavy or strength properties, you can make one weapon attack against a creature within 5 feet of the target using your reaction.

\n

Overwhelm

\n

Starting at 15th level, when you use your Second Wind while wielding a weapon with the heavy or strength properties, if you hit with the first attack roll you make before the end of your next turn, you treat the hit as a critical hit. If you miss with the first attack roll you make before the end of your next turn, you instead treat the miss as a hit.

\n

Pure Performance

\n

At 18th level, attack rolls you make while wielding a weapon with the heavy or strength properties can't suffer from disadvantage.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Heavy%20Weapons%20Specialist.webp"} +{"_id":"nP8lpZPBh0HGKUJR","name":"Geneticist Pursuit","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scholar","description":{"value":"

Geneticist Pursuit

\n

Throughout the galaxy there exists scientists who focus on unraveling the mysteries contained within the bodies of the divese sentients of the galaxy. Those scholars who choose the Geneticist Pursuit put their knowledge into practice, splicing their own genetic material to become superior beings... or monsters.

\n

Genesplicer's Methods

\n

When you choose this pursuit at 3rd level, you gain proficiency with geneticist's kit and your choice of Medicine or Survival skills.

\n

Mutagenic Analysis

\n

Also at 3rd level, while you are the target of your Critical Analysis feature, you can add half your Intelligence modifier (rounded down, minimum of one) to any saving throw you make that doesn't already include that modifier.

\n

Additional Maneuvers

\n

Lastly at 3rd level, you gain access to new maneuvers which reflect the changes your body has undergone. Whenever you learn a new maneuver, you can choose from any of the following as well. The maneuvers are listed in alphabetical order.

\n

Acid Burst

\n

When you take the Attack action on your turn, you can replace one of your attacks with a sudden and violent expulsion of acidic fluid. You expend a superiority die, and cause all creatures within a 15-foot cone to make a Dexterity saving throw. On a failed save, they take damage equal to the number rolled on your superiority die plus your Intelligence modifier.

\n

Charging Attack

\n

If you move at least 10 feet towards your target before successfully hitting them with a melee attack, you may expend a superiority die, causing the target to take additional damage equal to the result, and forcing it to make a Strength saving throw. On a failed save the creature is knocked prone.

\n

Electrical Discharge

\n

When you succeed on a check to initiate or maintain a grapple, you can expend a superiority die. The creature takes lightning damage equal to the amount rolled on the die.

\n

Rampage

\n

When you reduce a creature to 0 hit points, you can use your bonus action to expend a superiority die and move up to half your speed. If you end this movement within 5 feet of a creature, you can make a single melee attack against that creature, adding the result of the superiority die to the attack roll.

\n

Unrelenting Grasp

\n

When you hit a creature within 5 feet of you with an opportunity attack, you may expend a superiority die. The creature takes additional damage equal to your superiority die, and you may attempt to grapple the target as part of the same reaction.

\n

Venomous Slash

\n

When you hit a creature with a melee attack, you may expend a superiority die to force it to make a Constitution saving throw. On a failed save, it takes poison damage equal to the result of the die and is poisoned until the start of your next turn.

\n

Mutagenic Transformation

\n

Beginning at 6th level, when you target yourself with your Critical Analysis feature, you can choose to undergo a mutagenic transformation. Your form shifts, exaggerating and strengthening your geneticist discoveries for 1 hour. You gain the following benefits:

\n\n

You can end this effect early on your turn as a bonus action. This effect ends early if you are incapacitated or die. You can use this feature twice. You regain all expended uses of it when you finish a long rest.

\n

Geneticist's Resilience

\n

Starting at 9th level, your genetic alterations make you immune to poison and disease. Additionally, you have resistance to poison damage.

\n

Chimeric Adaptation

\n

Once you've reached 17th level, your genetic modifications have reached new heights. When you complete a short or long rest, you can choose one of the following features. When you undergo your mutagenic transformation, you also gain the benefits of the chosen feature for the duration. You can only have one of these features at a time.

\n

Aspect of the Terentatek

\n

You gain proficiency in Wisdom and Charisma saving throws. Additionally, you have advantage on saving throws against force powers, and when a creature within 30 feet of you casts a force power, you can use your reaction to move up to half your speed towards the creature. You must end this movement closer to the creature than you started. If you end this movement within 5 feet of the creature, you can make one melee attack against the creature (no action required).

\n

Aspect of the Rancor

\n

You gain proficiency in Strength and Constitution saving throws. Additionally, you gain immunity to the frightened condition, and when you deal damage with a weapon or unarmed strike, you can deal an additional 1d8 damage of the same type as the weapon's damage.

\n

Aspect of the Varactyl

\n

You gain proficiency in Dexterity and Intelligence saving throws. Additionally, your speed increases by 10 feet, you ignore effects that would reduce your speed, your attack rolls can't suffer from disadvantage, and creatures can't have advantage on attack rolls against you.

\n

Discoveries (Geneticist)

\n

When you select this pursuit, you gain access to new discoveries which reflect the changes you have caused your own body to undergo. Whenever you learn a new discovery, you can choose from any of the following as well. The discoveries are listed in alphabetical order.

\n

Adapted Hide

\n

When you aren't wearing armor, your AC is 13 + your Dexterity modifier. Additionally, you are adapted to hot or cold climates (your choice), as described in chapter 5 of the Dungeon Master's Guide. When you undergo your mutagenic transformation, you add your full Intelligence modifier, instead of half, to your AC for the duration.

\n

Atmospheric Adaptation

\n

You can breathe air and water. When you undergo your mutagenic transformation, you no longer need to breathe, and you can survive up to one hour within the vacuum of space for the duration.

\n

Enhanced Musculature

\n

You count as one size larger when determining your carrying capacity and the weight you can push, drag, or

\n

lift. Additionally, when you make a long jump, you can cover a number of feet up to twice your Strength score. When you make a high jump, you can leap a number of feet up into the air equal to 3 + twice your Strength modifier. When you undergo your mutagenic transformation, you have advantage on Strength checks and Strength saving throws for the duration.

\n

Icarian Mutation

\n

You sprout a pair of winged arms. You gain a flight speed equal to half your walking speed. You can only gain the benefit of items held by two of your arms at any given time, and once per round you can switch which arms you are benefiting from (no action required). When you undergo your mutagenic transformation, your flying speed increases to your full walking speed, and you can use your bonus action to take the Dash action for the duration.

\n

Mutagenic Hardiness

\n

Your hit point maximum increases by a number equal to your level, and it increases by 1 every time you gain a level. When you undergo your mutagenic transformation, and at the beginning of each of your turns, you gain temporary hit points equal to your half your scholar level (rounded down) + your Intelligence modifier for the duration.

\n

Predatory Senses

\n

You have darkvision out to 60 feet. If you already have darkvision, its range instead increases by 30 feet. When you undergo your mutagenic transformation, you gain advantage on Wisdom (Perception) checks that rely on smell for the duration. Additionally, you can track creatures that have left a scent in the last 24 hours.

\n

Underground Adaptation

\n

You gain a burrowing speed equal to your walking speed and you can tunnel through solid rock at a rate of 1 foot per round. In order to use this speed, you must have two free hands. When you undergo your mutagenic transformation, you gain tremorsense out to 30 feet for the duration. You can detect and pinpoint the origin of vibrations within a specific radius, provided that monster and the source of the vibrations are in contact with the same ground or substance. Tremorsense can't be used to detect flying or incorporeal creatures.

\n

Unnatural Weaponry

\n

You sprout claws or some other natural weapon, which deal 1d4 kinetic damage on a hit. You can use your choice of your Strength, Dexterity, or Intelligence modifier for the attack and damage rolls. You must use the same modifier for both rolls. When you undergo your mutagenic transformation, your unarmed strikes increase to a d6 and are considered enhanced for the duration. Additionally, you deal an additional 1d4 acid, lightning, or poison damage when you hit with them.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Geneticist%20Pursuit.webp"} +{"_id":"np8PlkH43bFHGOjq","name":"Teleportation Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Teleportation Technique

\n

Whether through experimentation or discovery of an ancient technology, followers of the Teleportation Technique have learned to create brief teleportation portals, allowing them to maneuver and attack both quickly and unpredictably throughout the battlefield.

\n

Personal Teleporter

\n

When you choose this technique at 3rd level, you can use portable teleporters as a bonus action, instead of an action.

\n

Additionally, while you are wielding a tech focus, you can use your bonus action to create a pair of linked portals: one portal appears in a space within 5 feet of you, and the other portal appears in an unoccupied space you can see up to 30 feet away. These portals last until the start of your next turn, and they are large enough to accommodate Medium and smaller creatures and objects. Portals take the appearance of an elongated, shimmering mirror, and looking through a portal, a creature can see through the linked portal as if looking through a window. A creature or object who passes through a portal immediately appears in a space within 5 feet of the linked portal. You can use your reaction to end your portals early. If a creature is partially within your portals, it is shunted back to the space it previously occupied and it must make a Dexterity saving throw against your tech save DC. On a failed save, it takes energy damage equal to your scout level + your intelligence modifier.

\n

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest. At the beginning of each of your turns, while you have a pair of portals active, you can expend a use of this feature to extend the duration of the portals until the start of your next turn (no action required).

\n

The distance at which you can create portals increases at higher levels. It increases to 60 feet at 5th level, 90 feet at 9th level, 150 feet at 13th level, 300 feet at 17th level, and 1,000 feet at 20th level.

\n

Mark of the Teleporter

\n

Also at 3rd level, on your turn, when you deal damage to the target of your Ranger's Quarry, and either you, your weapon, or the source of your damage have passed through the portal on this turn, when you roll below half the maximum on a damage die, you can treat the roll as if you'd rolled half the maximum on the damage die. You can only affect a number of dice up to half your intelligence modifier (rounded up) in this way.

\n

Residual Warp

\n

Beginning at 7th level, when you use your Personal Teleporter feature, you can place your portal in a place you've visited in the last 10 minutes, provided you can remember it, as opposed to a place you can see. That place must still be within range of your teleporter.

\n

Quantum Entanglement

\n

Starting at 11th level, when you use your Personal Teleporter feature, you can place the portal that you would normally place within 5 feet of you in a place you can see within your Personal Teleporter's range. If that space is occupied by a Huge or smaller creature or a Medium or smaller unsecured object, it must make a Dexterity saving throw against your tech save DC. An object automatically fails this saving throw, and a creature can choose to fail. On a failed save, a Medium or smaller creature or object falls through the portal, immediately appearing in a space within 5 feet of the linked portal and falling prone. A Large or Huge creature, instead, falls prone without moving.

\n

Reprisal

\n

At 15th level, when you would be affected by a weapon or tech power that requires a Dexterity saving throw or attack roll and would affect only you, you can use your reaction to instantaneously create a pair of portals to redirect that power to another target within 30 feet. If the weapon or power required a melee or ranged attack roll, make a melee or ranged tech attack roll against the new target, as appropriate. If it required a Dexterity saving throw, the new target must make a Dexterity saving throw against your tech save DC.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

"},"source":"EC","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Archetypes/Teleportation%20Technique.webp"} +{"_id":"ovm5WJyAM317IC4K","name":"Slicer Pursuit","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scholar","description":{"value":"

Slicer Pursuit

\n

Across the galaxy one can find numerous pseudonyms and false identities belonging to the hackers and cyber-infiltrators that call the world of electronics home. Those scholars who choose the Slicer Pursuit put their impressive intellectual prowess to work in the field of technology, to ends both benevolent and malicious.

\n

Techcasting

\n

When you choose this pursuit at 3rd 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 Slicer Pursuit Techcasting 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 half of your scholar level (rounded up), as shown in the Tech Points column of the Slicer Pursuit Techcasting 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 Slicer Pursuit Techcasting table.

\n

You may only cast tech powers at 4th-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

Systems Hijack

\n

Also at 3rd level, when the target of your Critical Analysis is a droid or construct, or wearing or holding a techcasting focus, that creature is a viable target for any tech powers with you cast with a range of touch.

\n

Additionally, when the target of your Critical Analysis casts a tech power, you can use your reaction to identify the tech power being cast, and at what level.

\n

Slicer Pursuit Techcasting

\n

Additional Maneuvers

\n

Lastly at 3rd level, you gain access to new maneuvers which reflect your understanding of tech casting. Whenever you learn a new maneuver, you can choose from any of the following as well. The maneuvers are listed in alphabetical order.

\n

Automatic Startup Sequence

\n

When a creature makes a saving throw against a tech power you cast, you may expend a superiority die, subtracting the number rolled from their total. You can use this maneuver before or after the creature makes saving throw, but before the GM determines whether or not the creature fails.

\n

Fast Access Programs

\n

When you cast a tech power of 1st-level or higher that has a casting time of 1 action, you can expend a superiority die to change the casting time to 1 bonus action for this casting.

\n

Firewall

\n

When you or an ally you can see within 60 feet make a saving throw against a tech power, you can use your reaction to expend a superiority die, adding the number rolled to the result of that saving throw.

\n

Hacked Communications

\n

As an action, you may expend a superiority die, and choose any number of creatures that you can see within 60 feet of you that have commlinks, headcomms, or other such communications devices. Each creature must succeed on a Constitution saving throw or take sonic damage equal to the number rolled on the dice + your Intelligence modifier (minimum of one). Additionally, on a failed save, their communication devices are disabled until rebooted.

\n

Overcapacity Powers

\n

When you cast a tech power of 1st-level or higher, you may expend a superiority die to cast the power at a higher level, provided is does not exceed your Maximum Power Level. Roll the superiority die, and add it to the level at which you are casting the power. You can choose to cast it at this new power level or lower.

\n

Runtime Extension

\n

When a tech power you cast with a duration of 1 minute or longer reaches the end of its duration, you may expend a superiority die to extend the duration of the power a number of rounds equal to the number rolled on your superiority die.

\n

Subtle Execution

\n

When you cast a tech power, you may expend a superiority die to cast the power without any visual or auditory cues. Creatures have disadvantage on any Intelligence (Investigation) or Wisdom (Perception) checks made to determine if you were the caster.

\n

Potent Programming

\n

Beginning at 6th level, when a creature succeeds on a saving throw against an at-will tech power you cast that deals damage, the creature takes half the power's damage, but suffers no additional effects of the power.

\n

Redirect Error

\n

Starting at 9th level, when the target of your Critical Analysis feature casts a tech power that affects an area, you can use your reaction to cause that power to instead affect an area in a 10-foot-radius sphere centered on the caster.

\n

Once you've used this feature, you must complete a long rest before you can use it again.

\n

System Override

\n

Once you've reached 17th level, you know how to quickly activate anti-tech subroutines you have encoded into your wristpad. You can cast the diminish tech and tech override powers at 3rd level without expending tech points. If the target is the target of your Critical Analysis, you have advantage on the techcasting ability check for these powers.

\n

You can use this feature a number of time equal to half your Intelligence modifier (rounded down, a minimum of once). You regain all expended uses when you finish a long rest.

\n

Discoveries (Slicer)

\n

When you select this pursuit, you gain access to new discoveries which reflect your understanding of tech casting. Whenever you learn a new discovery, you can choose from any of the following as well. The discoveries are listed in alphabetical order.

\n

Administrator's Log

\n

If you spend at least 10 minutes working on a computer or terminal, you can get a full list of users who have accessed the machine within the past 24 hours. Over the course of a long rest, you may then form a facsimile of identification that would allow you to pass yourself off as that person when accessing machines.

\n

Backdoor Egress

\n

When you cast a tech power that affects an area and requires a saving throw, and you are inside that power's area, you can use your reaction to move up to half your speed without provoking opportunity attacks. If you end this movement outside the area affected by the tech power, you do not have to make a saving throw to avoid its effects.

\n

Intelligence Core Override

\n

Prerequisite: 9th level

\n

You can cast the override interface tech power at 5th level without spending tech points.

\n

Once you've used this feature, you must complete a long rest before you can use it again.

\n

Resource Appropriation

\n

Prerequisite: 11th level

\n

If you reduce the target of your Critical Analysis feature to 0 hit points, and it has tech point remaining, you may choose to gain any tech points it had remaining. Your current tech points cannot exceed your tech point maximum.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Skillful Casting

\n

When you hit a creature with an at-will tech power that requires an attack roll, you may treat that attack roll as a weapon attack for the purpose of using maneuvers.

\n

Sleeper Program

\n

Whenever you cast a tech power with a casting time of 1 action, you can choose to delay the power's activation up to a minute. When you do so, you cast the power as normal, but holds its energy for the duration of the delay. Holding onto the power's effect requires concentration. If your concentration is broken before the delay ends, the power dissipates without taking effect. You can use your reaction to activate the power at any time.

\n

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

\n

The Slicer Pursuit

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelTech Powers KnownTech PointsMax Power Level
3rd421st
4th421st
5th531st
6th531st
7th642nd
8th642nd
9th752nd
10th752nd
11th862nd
12th862nd
13th973rd
14th973rd
15th1083rd
16th1083rd
17th1194th
18th1194th
19th12104th
20th12104th
"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Slicer%20Pursuit.webp"} +{"_id":"owhXRBD1NnGWXdr6","name":"Performance Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Performance Practice

\n

Some operatives choose to master finesse and timing through performance art. Those operatives who choose the Performance Practice become skilled performers who prove especially deadly in close combat, able to find the rhythm of an attacker's strikes as easily as any song.

\n

Artful Dancer

\n

When you choose this practice at 3rd level, your training with music and dancing grants you certain benefits. You gain proficiency in the Performance skill and one musical instrument of your choice.

\n

Additionally, while you are you are not wearing armor or wielding a medium or heavy shield, you can add half your Charisma modifier (rounded up) to your AC as long as it doesn't already include that modifier.

\n

Dazzling Steps

\n

Also at 3rd level, you learn to conduct impressive displays of grace and speed in combat. While you aren't wearing medium or heavy armor or wielding a medium or heavy shield, and you take the Attack action on your turn and attack with a weapon with either the light or finesse properties, your walking speed increases by 10 feet until the end of the turn, and if you deal Sneak Attack damage, you may choose to forgo two of your Sneak Attack dice to make the attack a dazzling step.

\n

Some of your dazzling steps require your target to make a saving throw to resist the dazzling step's effects. The saving throw DC is calculated as follows:

\n

Dazzling Step save DC = 8 + your proficiency bonus + your Charisma modifier

\n

Defensive Step

\n

You defend yourself from further attack. Roll two Sneak Attack dice. You gain temporary hit points that last until the start of your next turn equal to the amount rolled.

\n

Mobile Step

\n

You twist and twirl around the target. The target must make a Strength saving throw. A Huge or larger creature automatically succeeds. On a failed save, it is pushed back 5 feet, and you can immediately move into the space it just vacated without provoking opportunity attacks.

\n

Offensive Step

\n

Choose another creature that you can see within your reach. The creature must make a Dexterity saving throw. On a failed save, roll two Sneak Attack dice. The creature takes damage equal to the amount rolled. This damage is of the same as your weapon's damage.

\n

Flexible Body

\n

Beginning at 9th level, you are able to use your acrobatic talent to gain the upper hand in combat. You can use the bonus action granted by your Cunning Action to shove a creature. When you do so, you can make a Dexterity (Acrobatics) check instead of a Strength (Athletics) check.

\n

Additionally, you now ignore difficult terrain, you can move through space occupied by hostile creatures, and you can squeeze through smaller spaces without expending extra movement.

\n

Dance of Death

\n

Starting at 13th level, you can use your action to make a weapon attack against any number of creatures within 5 feet of you, with a separate attack roll for each target. You can choose to deal Sneak Attack damage to each creature you hit, but you can only roll half your number of Sneak Attack dice (rounded up) per creature.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Master of Dance

\n

At 17th level, your confidence when putting on a show has extended into combat. You add your Charisma modifier to initiative checks. Additionally, any creature who fails a saving throw against your Dazzling Step save DC has disadvantage on the first attack roll they make against you each turn until the end of your next turn.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Performance%20Practice.webp"} +{"_id":"pSIVnxwvRlyNoFM4","name":"Warchief Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Warchief Approach

\n

For some berserkers, it is their duty or birthright to lead their tribe and kin to battle and victory. The Warchief Approach is one forged from alliances, bonds, and strategy. In combat, your rages are less mindless, and more focused. Ignoring the distractions of unimportant events, your attention hones in on the battlefield and how best to direct and control it. You guide your allies’ strikes, and your presence is enough to wash away their fatigue.

\n

Savage Diplomat

\n

Your path necessitates that you build relationships with others, for the betterment of your tribe or yourself.

\n

When you choose this approach at 3rd level, you gain proficiency in one of the following skills of your choice: Persuasion or Intimidation. You can choose to learn one language in place of the skill proficiency.

\n

Commanding Rage

\n

Also at 3rd level, when in your rage, you become more aware of your allies, and their intent when fighting at your side. While you are raging, when an ally within 10 feet of you makes an attack roll against an enemy, you can use your reaction to grant advantage to that attack and add your rage damage bonus to the damage roll, if the attack hits.

\n

Inspiring Presence

\n

At 6th level your mere presence on the battlefield rallies your allies. When you rage, choose up to 3 allies that you can see within 30 feet of you. Each creature gains temporary hit points equal to half your berserker level (rounded down) + your Charisma modifier (minimum of one).

\n

Raid Planning

\n

Starting at 10th level, you learn to flare up your allies’ drive for combat, urging them to follow you into the fray. During a long rest, you tell sagas, sing battle songs, and give inspiring speeches. At the end of the long rest choose up to 5 creatures that can hear and understand you (which can include yourself) to add your Charisma modifier (minimum of one) to their next initiative roll, and a 10 foot bonus to their speed on their first turn of combat.

\n

War Chant

\n

By 14th level you have memorized the litanies, songs, and chants of your people and their dedication to war. When you enter a rage you can take a commanding stance. If you do so, for the duration of your rage you have a special reaction you can take on a number of allies’ turns equal to your Charisma modifier (minimum of one). You can only use this special reaction to use your Commanding Rage feature.

\n

Additionally, during this rage, when an enemy within 10 feet of you makes an attack roll against an ally, you can use your reaction to reduce that roll by an amount equal to your Charisma modifier.

\n

Once you’ve used this feature, you must complete a long rest before you can use it again.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Warchief%20Approach.webp"} +{"_id":"pnWaHtbho4xgFpIU","name":"Path of Etherealness","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of Etherealness

\n

In the distant reaches of the galaxy obscure knowledge and forgotten secrets of the Force can sometimes be found. While other Force-sensitives may find themselves touched by this secret knowledge of the Force, those sentinels who follow the Path of Etherealness instead find themselves grabbed. Held onto by mysterious aspects of the Force that refuse to let go, these sentinels find themselves able to manipulate the universe around them.

\n

Aberrant Resilience

\n

Starting when you choose this calling at 3rd level, you learn the resistance force power, which does not count against your total powers known. Additionally, you can use your Kinetic Combat feature when you cast it as your action. Finally, this power no longer requires concentration for you when you target yourself with it, and the power's d4 increases to d6 at 5th level, d8 at 11th level, and d10 at 17th level.

\n

Force-Empowered Kinesis

\n

Also at 3rd level, your connection to the Force allows you to briefly become incorporeal. When you use a Force-Empowered Self feature, until the end of your turn, you can move through other creatures and objects as if they are difficult terrain. If you end this movement inside a solid object or creature, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved. This damage can't be reduced or negated in any way.

\n

Out of Touch

\n

At 7th level, as an action, you can step out of sync with the rest of the universe for 1 minute. At the start of each of your turns, roll a d20. If you roll 11 or higher, you and everything your are wearing or carrying are completely invisible to all beings, except for those with truesight. On a roll of 10 or lower, you instead appear as an indistinguishably blurred form roughly your normal height and weight, though a being with truesight sees you normally. Regardless of your appearance, for the duration, your speed doubles, you gain a flying speed equal to your walking speed, and you can move through creatures and objects willingly though you can not affect them and they can not affect you. You can end this feature early on your turn (no action required). When this effect ends, if you are inside a solid object or creature, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved.

\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Event Cascade

\n

By 13th level, you have advantage on attack rolls you make against creatures if you haven't dealt damage to them or affected them with a force power since the start of your previous turn.

\n

Aberrant Self

\n

At 18th level, you no longer suffer the frailty of old age, and you can't be aged abnormally. You can still die of old age, however. In addition, you no longer need food or water, and you no longer need to sleep. Lastly, the first time you take damage on each of your turns, you can roll your Kinetic Combat die and reduce the damage by that amount.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20Etherealness.webp"} +{"_id":"pr7Xe82MOaof0IXj","name":"Form X: Jar'Kai","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form X: Jar'Kai

\n

Form X, also known as Domination Form, utilizes two weapons to overwhelm their foes. Those guardians who focus on Jar'Kai Form know that two weapons offer greater versatility than one, and capitalize on the twin angles from which they attack to subdue their enemies.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Equilibrium, Sentinel, or Two-Weapon Fighting 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

The Way of the Acklay

\n

Also at 3rd level, as a bonus action, you can enter a destructive stance for one minute. While in this stance, you can add half your Strength or Dexterity modifier (your choice, minimum of one) to any melee weapon damage roll you make that doesn't already include that modifier. Additionally, when you hit a creature with a melee weapon attack, you can move up to 5 feet without provoking opportunity attacks.

\n

This effect ends early if you are incapacitated or die. Once you use this feature, you can't use it again until you finish a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain the following Channel the Force option.

\n

Twin Strike

\n

Once per turn, when you miss with a melee weapon attack, you can expend a use of your Channel the Force to immediately make another melee weapon attack against the same target (no action required).

\n

Eye of the Storm

\n

Beginning at 7th level, when you score a critical hit with a melee weapon attack, you regain a use of your Channel the Force, to a maximum of your Wisdom or Charisma modifier (your choice, minimum of one).

\n

Rising Whirlwind

\n

Starting at 15th level, as an action, you can rush forward up to 30 feet to an unoccupied space you can see without provoking opportunity attacks. Each creature within 5 feet of your path must make a Dexterity saving throw. A creature takes normal weapon damage on a failed save, or half as much on a successful one. If you are wielding two light- or vibro-weapons, or a weapon with the double property, a creature makes this save with disadvantage, and takes additional damage equal to your Strength or Dexterity modifier (your choice, minimum of one) on a failed save if it doesn't already include that modifier.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Master of Domination

\n

At 20th level, you are a whirlwind of strikes, eviscerating all who step within your reach. Your Strength and Dexterity scores increase by 2. Your maximum for these scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you use this feature, you can't use it again until you finish a long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Jar%27Kai%20Form.webp"} +{"_id":"q208WP2Lacp7dG6v","name":"Way of Manipulation","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of Manipulation

\n

The power of the Force is both vast and diverse, with uses varying drastically based on their wielder. Those consulars who follow the Way of Manipulation learn to control their weapons with the Force, maneuvering them across the battlefield.

\n

Saber Storm

\n

When you choose this tradition at 3rd level, you learn to deftly control your weapons utilizing the Force. As an action, you can initiate your Saber Storm. When you do so, select a melee weapon you wield, or one melee weapon within 5 feet that is not worn or carried by a conscious creature, and use the Force to cause it to levitate, acting as an extension of your will for 1 minute. When you activate this feature, you can cause the weapon to move up to 10 feet and make a melee force attack against a creature within 5 feet of it. On a hit, the target takes 1d8 + your forcecasting ability modifier damage. The type is of the normal damage dealt by the weapon. The weapon then returns to your side.

\n

Your weapon moves with you, and while Saber Storm is active and you have a weapon animated, on each of your turns you can use an action to move a weapon up to 10 feet and repeat the attack against a creature within 5 feet of it. The weapon then returns to your side. Your Saber Storm ends early if you are incapacitated. At any time, you can end this feature and return the animated weapon to your hand.

\n

Additionally, while your Saber Storm is active, and at least one animated weapon is within 5 feet of you, you gain the following benefits:

\n\n

This feature can animate more than one weapon when you reach higher levels: two weapons at 5th level, three weapons at 11th level, and four weapons at 17th level. When you use your action to attack with your weapons, you can direct them at the same target or at different ones. Make a separate attack roll for each weapon.

\n

At 5th level, the distance your weapon can travel increases to 20 feet. This distance increases to 30 feet at 11th level, and 40 feet at 17th level.

\n

You can use this feature twice. You regain all expended uses of it when you finish a short or long rest.

\n

Deceptive Strike

\n

At 6th level, when you cast a force power with a range of touch while Saber Storm is active, your animated weapon can move up to its range and deliver the power as if it had cast it.

\n

Guarding Weapon

\n

Beginning at 10th level, you can direct your animated weapons to absorb damage while your Saber Storm is activate. When you take damage, you can use your reaction to expend one force slot to have your animated weapon intercept it, and reduce that damage to you by an amount equal to five times the force slot's level.

\n

Isolate

\n

At 14th level, when you deal damage to a creature while Saber Storm is active, and that creature fails a Constitution saving throw to maintain concentration on a force power, you can steal and redirect the power. Until the end of your next turn, either you or the creature who failed the Constitution saving throw gain the effects of the power (your choice).

\n

Sapping Storm

\n

Starting at 18th level, when you reduce a hostile creature to 0 hit points while Saber Storm is active, you gain temporary force points equal to your Wisdom or Charisma modifier (your choice, minimum of one). These temporary force points can not exceed your Wisdom or Charisma modifier (your choice), and when you would spend a force point while you have temporary force points, the temporary force points are spent first. When Saber Storm ends, you lose any remaining temporary force points.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20Manipulation.webp"} +{"_id":"q4cqalPyT4rkroVr","name":"Precision Approach","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Berserker","description":{"value":"

Precision Approach

\n

Some berserkers have learned to channel their rage into a method of increasing their focus and precision to supernatural levels. Those berserkers who choose the Precision Approach hone their rage to a fine point, becoming agile warriors who ruthlessly dispatch their foes.

\n

Careful Steps

\n

When you choose this approach at 3rd level, you gain skills that represent your precise movement. You gain proficiency your choice of Acrobatics or Stealth.

\n

Focused Rage

\n

Also at 3rd level, you hone your rage to a razor sharp focus. When you make a melee weapon attack using Dexterity, you add your rage damage to the damage roll. Additionally, you can use your Reckless Attack feature to give you advantage on melee weapon attacks using Dexterity during your turn.

\n

Exact Awareness

\n

At 6th level, you gain proficiency in Dexterity saving throws.

\n

Battle Anticipation

\n

Starting at 10th level, while raging, when you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage against effects that you can see, such as traps and powers, you instead take no damage if you succeed on a saving throw, and only half damage if you fail.

\n

Additionally, while raging, melee weapon attacks using Dexterity score a critical hit on a roll of 19 or 20.

\n

Calm Within the Storm

\n

At 14th level, the precision with which you act during your rage causes you to become a storm of reactive lethality. When you use your Reckless Attack feature, you can make a number of opportunity attacks equal to your proficiency bonus without using your reaction, and when a creature within 5 feet of you misses you with an attack, you can use your reaction to make a melee weapon attack using Dexterity against that creature.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Precision%20Approach.webp"} +{"_id":"qlg4myujDRxt6FXB","name":"Path of Communion","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of Communion

\n

Those who master the Force can transcend death, persisting beyond their natural experation. Those sentinels who follow the Path of Communion bond with a Force ghost, developing a symbiotic relationship which alters the way they perceive their surroundings.

\n

Mystical Connection

\n

Starting when you choose this calling at 3rd level, you learn the feedback force power, which does not count against your total powers known. Additionally, you can use Wisdom or Charisma as your forcecasting ability for it, and you can use your Kinetic Combat feature when you cast it as your action. Finally, when you deal psychic damage with the feedback force power, you deal additional psychic damage equal to your Wisdom or Charisma modifier (your choice, minimum of one) if it doesn't already include that modifier.

\n

Symbiote Spirit

\n

Also at 3rd level, you attract the attention of the spirit of a Force ghost. Over the course of one hour, you can attune to the spirit, forging a lasting connection. While attuned to a spirit, you gain the following benefits:

\n\n

You can only attune to one spirit at a time. If you attempt to attune to another spirit, you immediately break the bond with your current spirit.

\n
\n

Generating Your Spirit

\n

Your spirit might be the ghost of a benevolent Jedi, discovered in the ruins of a Jedi temple, or a powerful Sith spirit lingering in an ancient artifact. It might be the spirit of a Nightsister sorceress, or a paragon of a long-forgotten monastic order. Work with your GM to determine the nature of your spirit.

\n
\n

Additionally, your spirit can briefly interact with the physical world. When you would make a melee attack, your spirit can deliver the attack as if it had made it. Your spirit must be within 100 feet of you, and it must use its reaction to deliver the attack. It uses your modifiers for the attack and damage rolls. 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 complete a short or long rest.

\n

Invasive Presence

\n

At 7th level, your spirit can invade another creature's being. As an action, your spirit can touch a creature within 5 feet of it, forcing it to make a Wisdom saving throw against your universal force save DC. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw.

\n

On a failed save, your spirit moves into that creatures space, inhabiting its body, for 1 minute. The affected creature has disadvantage on the first attack roll, ability check, or saving throw it makes each turn. At the end of each its turns, the creature repeats this save. On a success, it repels the spirit from its body, and it becomes immune to this feature for 24 hours.

\n

Once you've used this feature, you must complete a long rest before you can use it again.

\n

Ethereal Vision

\n

By 13th level, you and your guiding spirit both gain truesight out to 60 feet as long as your spirit is within 100 feet of you.

\n

Additionally, when you use your action to see through your spirit's senses, you are no longer deaf and blind with regard to your own senses, able to comprehend what happens in both perspectives simultaneously.

\n

Assuming Direct Control

\n

At 18th level, when a creature fails its saving throw against your Invasive Presence feature, the target becomes charmed by you for as long as Invasive Presence is active.

\n

While the target is charmed, you and your spirit have a telepathic link with it as long as you are within 100 feet of it. You and your spirit can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability.

\n

You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20Communion.webp"} +{"_id":"r7BKY5yWig2vhW5i","name":"Way of Telekinetics","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Consular","description":{"value":"

Way of Telekinetics

\n

The consular knows how to manipulate the essence of the surrounding elements with the power of the Force. Those consulars who follow the Way of Telekinetics create torrential gusts of telekinetic energy, forming a potent combination that can pummel even the toughest adversaries into submission.

\n

Staggering Stratagem

\n

When you choose this tradition at 3rd level, your potency with the telekinetic power of the Force heightens. You can manipulate creatures of Large size or smaller with your force powers and Way of Telekinetics features. Additionally, once per turn, when you deal force or kinetic damage to a Large or smaller creature with a force power or class feature, you can choose to either push it up to 10 feet away from you or pull it up to 10 feet closer to you.

\n

Mighty Blast

\n

At 6th level, your force powers batter and blast your enemies with the strength of a hurricane. When you cast a force power of 1st level or higher that deals force or kinetic damage, one creature of your choice damaged by that power must make a Strength saving throw against your universal force save DC or be knocked prone.

\n

This feature can affect additional creatures when you reach higher levels: two creatures at 11th level and three creatures at 17th level.

\n

Size Matters Not

\n

Beginning at 10th level, you can manipulate creatures of Huge size or smaller with your force powers and Way of Telekinetics features.

\n

Additionally, when you use your action to cast a force power, you can use a bonus action to fly up to 10 feet without provoking opportunity attacks.

\n

Repulsing Wave

\n

At 14th level, when you are dealt damage by a creature within 5 feet of you, you can use your reaction to deal force damage to the creature equal to your consular level + your Wisdom or Charisma modifier (your choice, minimum of +1). If the attacker is Huge or smaller, it must also make a Strength saving throw against your universal force save DC. On a failed save, the attacker is pushed in a straight line up to 20 feet away from you.

\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 short or long rest.

\n

My Ally is the Force

\n

Starting at 18th level, you can manipulate creatures of Gargantuan size or smaller with your force powers and Way of Telekinetics features.

\n

Additionally, whenever a force power you cast pushes or pulls a creature, you can increase the distance of that push or pull by an additional 20 feet.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Way%20of%20Telekinetics.webp"} +{"_id":"rW7zqxiNXePBLnui","name":"Form II: Makashi","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form II: Makashi

\n

Form II, also known as Contention Form, encourages precision and efficiency over power, using jabs, parries and light cuts over slashes, blocks and chops. Those guardians who focus on Makashi Form utilize calculated blade manipulation, intense focus, and expert timing to confuse and trap their opponents.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Dueling, Equilibrium, or Sentinel 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

The Way of the Ysalamiri

\n

Also at 3rd level, as a bonus action, you can enter an offensive stance for one minute. While in this stance, you add your Wisdom or Charisma modifier (your choice) to the first melee weapon attack and damage rolls you make each turn.

\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain the following Channel the Force option.

\n

Makashi Riposte

\n

When another creature damages you with a melee attack, you can expend a use of your Channel the Force and use your reaction to attempt to deflect the attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your guardian level.

\n

If you reduce the damage to 0, you can immediately make a single melee weapon attack against that creature as a part of the reaction.

\n

Shatterpoint

\n

Starting at 7th level, if you spend at least 1 minute observing or interacting with another creature outside combat, you can use your connection to the Force to sense their strengths and weak-nesses, and learn certain informat-ion about its capabilities compared to your own. The GM tells you if the creature is your equal, superior, or inferior in regard to two of the following characteristics of your choice:

\n\n

Glancing Blow

\n

Starting at 15th 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

Master of Contention

\n

At 20th level, you are a duelist of the highest caliber. Your Dexterity and Wisdom or Charisma scores (your choice) increase by 2. Your maximum for those scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Makashi%20Form.webp"} +{"_id":"rhte8G7Duf9dtKLV","name":"Explorer Pursuit","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scholar","description":{"value":"

Explorer Pursuit

\n

The explorer strives to navigate past the known to discover new planets, forgotten ruins, or forbidden locations. Those scholars who choose the Explorer Pursuit spend their time studying maps, landmarks, architecture blue prints, or even history books, using them to effectively lead the way for their companions.

\n

Focused Navigator

\n

Beginning at 3rd level when you select this pursuit, you gain proficiency in two of the Perception, Piloting, Survival, and Acrobatics skills.

\n

Surveyed Area

\n

At 3rd level, you can now use your Critical Analysis feature on a 15-foot cube area within 60 feet of you that you can see. You can treat any creatures inside this cube as if they are the target of your Critical Analysis feature, and when a creature ends your Critical Analysis feature on themself, it does not end this effect for other creatures in your Surveyed Area.

\n

Additional Maneuvers

\n

When you select this pursuit, you gain access to new maneuvers which reflect your studies in maps and hidden routes. Whenever you learn a new maneuver, you can choose from any of the following as well. The maneuvers are listed in alphabetical order.

\n

Effective Flanking

\n

Whenever you use your Critical Analysis ability, you can expend a superiority die to make all creatures of your choice affected by Critical Analysis to make a Wisdom saving throw. If at least one creature fails the save, roll a superiority die.

\n

On a failed save, the number rolled is added to both the attack and damage roll for the first attack against the creature before the start of your next turn.

\n

Encouraging Pace

\n

You can use a bonus action to expend a superiority die. When you do so, a number of friendly creatures equal to your Intelligence modifier can immediately use their reaction to move a number of feet equal to 5 times the number rolled on the superiority die.

\n

No Escape

\n

Whenever you or a creature you can see makes an opportunity attack, you can expend a superiority die. If the attack hits, roll the superiority die and add the result to the damage roll. Additionally, the affected creature's movement speed becomes 0 until the start of its next turn.

\n

Precise Movements

\n

When you or a friendly creature you can see that can see or hear you moves, you can expend a superiority die to give them verbal guidance and encouragement. Roll a superiority die. The creature's speed increases by 5 times the number rolled, and they can move through the space of hostile creatures as if it were difficult terrain.

\n

Snare Traps

\n

You can use an action and expend a superiority die to trigger painful snare traps. When you do, one creature within 60 feet of you or all creatures that are targeted by your Critical Analysis has to make a Dexterity (Acrobatics) check against your maneuver save DC.

\n

On a failure, they take damage equal to the roll and their movement speed becomes 0 until the end of your next turn.

\n

Superior Counterattack

\n

Whenever an opportunity attack targets a friendly creature other than you that is in an area targeted by your Critical Analysis feature, you can expend a superiority die. The creature can use its reaction to make a single weapon attack, adding the superiority die roll to the attack roll.

\n

Wrestle and Drag

\n

When you or a creature that is the target of your Critical Analysis makes an Strength (Athletics) check to grapple or shove a creature, you can expend a superiority die and add it to the roll. Until the end of your turn, you can drag the grappled creature with you without your speed being halved. Additionally, if you move at least 5 feet, the creature takes damage for each foot moved up to an amount equal to half your Scholar level + your Intelligence modifier.

\n

Field Advantage

\n

At 6th level, you learn to quickly convey spatial information in the midst of combat about the area you analyzed, giving them an edge at maneuvering in the area. While moving through your Surveyed Area, you and friendly creatures of your choice ignore unenhanced difficult terrain, and opportunity attacks against them are made with disadvantage.

\n

Unstoppable Adventurer

\n

At 9th level, you learn to swim and scale vertical surfaces with ease. You gain swimming and climbing speed equal to your walking speed.

\n

Additionally, your Sage Advice feature can be used to give friendly creatures knowledge on how to swim or climb, following the same rules of that feature as if it is a skill or tool. However, the friendly creatures have swimming speed or climbing speed for the entire duration instead.

\n

Survey Master

\n

Beginning at 17th level, when you use the Surveyed Area feature, the area affected is a 30-foot cube instead of a 15-foot cube.

\n

Discoveries (Explorer)

\n

When you select this pursuit, you gain access to new discoveries which reflect your studies in maps and hidden routes. Whenever you learn a new discovery, you can choose from any of the following as well. The discoveries are listed in alphabetical order.

\n

Cover Adept

\n

Prerequisite: 12th level

\n

You treat half cover as three-quarters cover, and three-quarters cover as full cover. Additionally, while you are in cover, Dexterity (Stealth) checks you make gain a bonus equal to your Intelligence modifier (minimum of +1).

\n

Dungeon Explorer

\n

You have advantage on Wisdom (Perception) checks and Intelligence (Investigation) checks to locate any secret doors or traps, and you have resistance to damage dealt by traps.

\n

In addition, you can use your Sage Advice feature to teach friendly creatures about various types of traps, following the same rules of that feature. When you do so, the chosen creatures have resistance to damage dealt by traps.

\n

Galactic Explorer

\n

Prerequisite: 9th level

\n

When you make a Piloting (Intelligence) skill check and may add your proficiency bonus to the check, treat any roll of 9 or lower as if you had rolled a 10.

\n

Grappling Hunter

\n

Prerequisite: 5th level

\n

Attack rolls that you make against creatures that you are grappling have advantage.

\n

High Ground

\n

Prerequisite: 5th level

\n

Once per turn, when you or a friendly creature hits a creature that is a target of your Critical Analysis feature, it takes additional damage equal to your half Intelligence modifier (minimum of +1).

\n

No Stone Left Unturned

\n

When you make a Wisdom (Perception) or Investigation (Intelligence) check to find a hidden creature that is inside the area that is targeted by your Critical Analysis feature, you do so with advantage.

\n

Versatile Explorer

\n

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

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Explorer%20Pursuit.webp"} +{"_id":"sgoAH5OjfxsXf2fp","name":"Artillerist Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Artillerist Technique

\n

While some scouts choose to foray alone, others like to have support. Follower of the Artillerist Technique master control of militant constructs, laying waste to the battlefield with their expertise

\n

Bonus Proficiencies

\n

You gain proficiency in artillerist's kits.

\n

Turret Companion

\n

When you choose this technique at 3rd level, you learn to apply your knowledge of artillery to construct your own portable turret.

\n

You start with a Small turret, which is detailed at the end of this technique. Over the course of 8 hours, which can be done during a long rest, you can expend 500 cr worth of materials to finish your turret.

\n

If your turret is irreparably destroyed, you can spend an additional 500 cr worth of material and 8 hours to create a new turret. You may only have one turret companion at a time.

\n

Your turret has the following benefits:

\n\n

Your turret has two modes: deployed and undeployed. Your turret can take no actions while undeployed. You can deploy or undeploy your turret at any time on your turn (no action required), but the effect doesn't occur until the start of your next turn.

\n

Mark of the Artillerist

\n

Also at 3rd level, once per round, when your turret deals damage to the target of your Ranger's Quarry, you can roll your Ranger's Quarry die and add it to the damage roll.

\n

Battlefront

\n

Beginning at 7th level, when you take the Attack action or cast a tech power of 1st-level or higher, you can use your bonus action to have your turret make one weapon attack.

\n

At 14th level, when you use your Combat Tech feature, both you and your turret can each make one weapon attack as part of the same bonus action.

\n

Crisis Management

\n

Starting at 11th level, while you can see your turret, it can add half its proficiency bonus (rounded up) to any saving throws it makes.

\n

Double Up

\n

At 15th level, when you deal damage to a creature with a weapon or tech power, your turret has advantage on the next attack roll it makes against the creature or it has disadvantage on the first saving throw it makes against an effect your turret controls before the start of your next turn. When your turret deals damage to a creature, you have advantage on your next attack roll against the creature or it has disadvantage on the first saving throw it makes against an effect you control before the start of your next turn.

\n

Generating Your Turret

\n

Your turret is a portable companion that you can upgrade over time.

\n

Your turret uses your Intelligence, Wisdom, and Charisma scores. You assign your turret's Strength, Dexterity, and Constitution scores using a limited standard array (16, 14, 12) as you see fit.

\n

Turret Features

\n

All turrets share the following traits.

\n

Hit Points

\n\n

Resistances and Vulnerabilities

\n\n

Features

\n\n

Turret Upgrades

\n

If an upgrade has prerequisites, you must meet them to install it. You can install the upgrade at the same time that you meet its prerequisites.

\n

Augmenting Barrier

\n

Prerequisite: 5th level

\n

As an action, you can reduce your turret's speed and have it create a barrier that surrounds in a radius depending on its size. A Small turret's speed is reduced to 10 feet and has a 5-foot radius, a Medium turret's speed is reduced to 5 feet and has a 10-foot radius, and a Large turret's speed is to reduce to 0 and has a 15-foot radius. While active, when damage is dealt by a tech power originating from inside the barrier against a target outside the barrier, that tech power gains a bonus to damage equal to half your Intelligence modifier (rounded up).

\n

This barrier lasts for 1 minute. You can end it early as a bonus action on your turn. Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Autoreload

\n

You can preload your turret's blaster with additional ammunition. You can preload two additional power cells, or you can replace each power cell with 20 slug cartridges. Once on each of your turns, you can reload your turret without using an action. Once you've expended the preloaded ammunition, you can't reload your turret's blaster in this way again until you reload it with an action.

\n

Climbing Turret

\n

Your turret gains a climbing speed equal to its deployed walking speed.

\n

Cloaking Barrier

\n

Prerequisite: 5th level

\n

As an action, you can reduce your turret's speed and have it create a barrier that surrounds in a radius depending on its size. A Small turret's speed is reduced to 10 feet and has a 5-foot radius, a Medium turret's speed is reduced to 5 feet and has a 10-foot radius, and a Large turret's speed is to reduce to 0 and has a 15-foot radius. While active, this barrier creates an area that is lightly obscured. Wisdom (Perception) checks that originate outside the barrier take a -10 penalty when attempting to detect anything inside the barrier.

\n

This barrier lasts for 1 minute. You can end it early as a bonus action on your turn. Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Deployment Accelerator

\n

Your turret now deploys and undeploys instantly, but you can only do so once on each of your turns.

\n

Disguised Turret

\n

Your turret can collapse into an innocuous looking container while undeployed. You have advantage on Charisma (Deception) checks to hide the nature of your turret while it is undeployed.

\n

Hovering Turret

\n

Your turret can hover 5 feet over the ground while deployed. It ignores difficult terrain while hovering in this way.

\n

Integrated Grenade Launcher

\n

You integrate a grenade launcher into your turret.

\n

You can choose this upgrade multiple times. Each time you do so, the weapon's reload number increases by 1.

\n

Integrated Projector

\n

You integrate a vapor projector into your turret.

\n

You can choose this upgrade multiple times. Each time you do so, the weapon's reload number increases by 1.

\n

Integrated Rocket Launcher

\n

You integrate a rocket launcher into your turret.

\n

You can choose this upgrade multiple times. Each time you do so, the weapon's reload number increases by 1.

\n

Longbow

\n

Your turret's blaster's range increases by 50/200. Additionally, when you cast a tech power with a range of 5 feet or greater, and your turret is the target of your tracker droid interface tech power, you can cast it as if you were in your turret's space, and the range increases to 150 feet.

\n

Phalanx Barrier

\n

Prerequisite: 5th level

\n

As an action, you can reduce your turret's speed and have it create a barrier that surrounds in a radius depending on its size. A Small turret's speed is reduced to 10 feet and has a 5-foot radius, a Medium turret's speed is reduced to 5 feet and has a 10-foot radius, and a Large turret's speed is to reduce to 0 and has a 15-foot radius. While active, ranged weapon attacks originating from outside the barrier that pass through it have disadvantage. Ranged weapon attacks originating from inside the barrier are unaffected.

\n

This barrier lasts for 1 minute. You can end it early as a bonus action on your turn. Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Ram Attachment

\n

You integrate a battering ram into your turret. When your turret makes a Strength check to break down physical doors, it gains a bonus to the check, depending on its size. A Small turret gains a +1 bonus, a Medium turret gains a +2 bonus, and a Large turret gains a +5 bonus. You can help your turret, giving it advantage on the check.

\n

Recurring Action

\n

Prerequisite: 9th level

\n

Your turret gains the ability to repeat attacks without direction. At the start of each of your turns, if your turret made an attack since the start of your previous turn, you can have it repeat its most recent attack (no action required). This attack targets the same space as the most recent attack made by your turret, regardless of whether or not a creature occupies that space.

\n

Rejuvenating Barrier

\n

Prerequisite: 5th level

\n

As an action, you can reduce your turret's speed and have it create a barrier that surrounds in a radius depending on its size. A Small turret's speed is reduced to 10 feet and has a 5-foot radius, a Medium turret's speed is reduced to 5 feet and has a 10-foot radius, and a Large turret's speed is to reduce to 0 and has a 15-foot radius. While active, friendly creatures that enter this barrier for the first time or start their turn there regain hit points equal to your Intelligence modifier, and gain temporary hit points equal to your Intelligence modifier. This feature can restore a creature to no more than half of its hit point maximum.

\n

This barrier lasts for 1 minute. You can end it early as a bonus action on your turn. Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Sentry

\n

You add an overwatch suite to your turret companion. When you cast the alarm tech power, you can choose to have your turret notified when the alarm is triggered. If you do so, when the alarm is triggered, your turret immediately makes a number of weapon attacks against the triggering creature up to your turret's proficiency bonus. If multiple creatures trigger the alarm simultaneously, your turret targets each creature randomly.

\n

Size: Large

\n

Prerequisite: Size: Medium

\n

Your turret's size is Large. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d10, its vibroweapon and blaster damages increase to 1d12 and 1d10, respectively, and its deployed walking speed decreases to 15 feet.

\n

Size: Medium

\n

Your turret's size is Medium. Its hit points increase by an amount equal to its level + 1, its Hit Die becomes a d8, its vibroweapon and blaster damages increase to 1d10 and 1d8, respectively, and its deployed walking speed decreases to 20 feet.

\n

Suppressing Fire

\n

Prerequisite: 11th level

\n

When a creature within 30 feet of you moves at least 5 feet, you can use your reaction to have your turret make a ranged weapon attack with its blaster against the creature. If the attack hits, the creature's speed is reduce by half until the start of your next turn.

\n

Turret Coverage

\n

As an action, you can have your turret anchor itself to the ground or recover itself. While anchored, its speed is reduce to 0, it has resistance to energy and kinetic damage, and it provides cover to creatures within 5 feet of it, depending on its size. A Small turret provides one-quarter cover, a Medium turret provides half cover, and a Large turret provides three-quarters cover. If an attack would miss a creature by an amount less than or equal to the bonus to AC granted by your turret's cover, your turret instead takes the damage.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.traits.weaponProf.custom","value":"artillerist's kit","mode":"+","targetSpecific":false,"id":1,"itemId":"sgoAH5OjfxsXf2fp","active":false,"_targets":[]}]}},"img":"systems/sw5e/packs/Icons/Archetypes/Artillerist%20Technique.webp"} +{"_id":"t5LS6epj3270S38n","name":"Form VIII: Sokan","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form VIII: Sokan

\n

Form VIII, also known as Persistence Form, uses determined movements followed by swift strokes to keep their opponents' footing unsteady. Those guardians who focus on Persistence Form make use of the terrain, trying to maneuver their opponents into vulnerable areas before dispatching them.

\n

Bonus Proficiencies

\n

You gain proficiency in heavy armor.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Defense, Equilibrium, or Shielding 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

The Way of the Varactyl

\n

Also at 3rd level, as a bonus action, you can enter an unyielding stance for one minute. While in this stance, you have advantage on ability checks and saving throws to shove or to avoid being moved, and you ignore difficult terrain. Additionally, once per turn, when you hit with a melee weapon attack, you can attempt to shove the target up to 10 feet away from you (no action required).

\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you complete a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain the following Channel the Force option.

\n

High Ground Defense

\n

When an opponent within 5 feet of you makes a melee attack against you, you can use your reaction and expend a use of your Channel the Force to move to another space within 5 feet of that opponent without provoking opportunity attacks, imposing disadvantage on the roll. If the attack misses, you can attempt to shove the creature up to 10 feet away from you as a part of that same reaction.

\n

Unwavering Self

\n

Beginning at 7th level, if you fail a Strength, Dexterity, or Constitution saving throw, you can reroll the die. You must use the new roll.

\n

Once you've used this feature, you must complete a long rest before you can use it again. At 15th level you can use this feature twice between long rests.

\n

Unhindered Charge

\n

Starting at 15th level, when you move at least 10 feet before making a melee weapon attack, you deal additional damage equal to your Strength modifier.

\n

Master of Persistence

\n

At 20th level, you are an unrelenting force on the field of battle. Your Strength and Wisdom or Charisma scores (your choice) increase by 2. Your maximum for these scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incap-acitated or die. Once you've used this feature, you can't use it again until you complete a long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Sokan%20Form.webp"} +{"_id":"tND6Q1akd5unb3jf","name":"Path of Synthesis","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of Synthesis

\n

There is power in diversification unknown to those of narrow mind. Those sentinels who follow the Path of Synthesis blend their intricate mastery of the Force with their understanding of technology, creating unique effects to overcome their obstacles.

\n

Techcasting Secrets

\n

Starting when you choose this calling at 3rd level, you have learned to intersperse your training with an aptitude for technology. Choose two tech powers of 1st-level or lower. The chosen powers count as universal force powers for you, but are not included in the number in the Powers Known column of the sentinel class table. You still require the aid of a wristpad for these powers.

\n

At 7th-level, you learn two tech powers of 2nd-level or lower. At 13th level, you learn two tech powers of 3rd-level or lower. At 17th level, you learn two tech powers of 4th-level or lower. Whenever you gain a level in this class, you can choose one of the tech powers you know and replace it with another tech power.

\n

Synthetic Understanding

\n

Also at 3rd level, you've applied your newfound knowledge to broader pursuits. You gain proficiency in Technology or one tool of your choice.

\n

Additionally, when you make an Intelligence (Technology) check, or a check with a tool, you may use your Wisdom or Charisma modifier (your choice) instead of your Intelligence modifier.

\n

Finally, when you deal damage with a tech power or Kinetic Combat attack, you can choose to substitute the damage dealt as ion.

\n

Force-Empowered Tech

\n

At 7th level, you learn to fully blend your technological aptitude with your use of the Force. You have three such effects: Disruption Pulse, Force Override, and Techcasting Insight. When you use your Force-Empowered Tech, you choose which effect to create.

\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 short or long rest.

\n

Disruption Pulse

\n

As an action, you can send out a 30 foot cone of electromagnetically-charged energy to overload enemy weapons. Each creature within the cone that is wearing or carrying a weapon with electric components must make an Intelligence saving throw. If the weapon is being worn, this save is made with disadvantage. On a failed save, the first attack they attempt to make with that weapon has disadvantage. A creature with multiple weapons must make a separate save for each weapon.

\n

Forced Override

\n

When you cast a tech power that requires a saving throw, you can impose disadvantage on the save (no action required).

\n

Techcasting Insight

\n

As an action, you can attempt to determine another creature's experience with techcasting. When you do so, you make an Intelligence (Technology) check contested by the target's Intelligence (Technology) check. If you succeed, you immediately learn the target's techcasting Max Power Level, as well as any tech powers currently affecting the target.

\n

Improved Force-Empowered Tech

\n

By 13th level, you've gained access to two additional Force-Empowered Tech effects: Harmonic Synthesis and Conservation of Energy.

\n

Harmonic Synthesis

\n

When you use your action to cast a force power, you can use your bonus action to gain resistance to damage dealt by tech powers until the start of your next turn. If you use your action to cast a tech power, you can instead gain resistance to damage dealt by force powers.

\n

Conservation of Energy

\n

When you reduce a hostile creature to 0 hit points with a tech power, you can reduce the force point cost of the tech power to 0 (no action required).

\n

Reflective Shield

\n

At 18th level, when you use your Force-Empowered Tech features, a barrier for energy shimmers into existence, surrounding you until the end of your next turn. When you take damage, you can mitigate the incoming energy and potentially reflect it back at your attacker. You use your reaction to have resistance against the triggering damage, and if the source of the damage is within 5 feet of you, they take half of the total damage dealt as ion.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster, Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20Synthesis.webp"} +{"_id":"taNiZralaSUdH6a2","name":"Matukai Order","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Monk","description":{"value":"

Matukai Order

\n

Monks of the Matukai Order center their philosophy around a balance and harmony between the spiritual Force and the physical body, using exercise as a form of meditation. They channel the Force through their bodies, turning themselves into exceptional warriors.

\n

Force-Enhanced Strikes

\n

Beginning when you choose this order at 3rd level, you learn to channel the Force into your unarmed strikes and monk weapons, further enhancing your melee strikes. When you hit a creature with an unarmed strike or monk weapon, you can spend 1 focus point to deal it an additional 1d6 force damage.

\n

The force damage increases to 2d6 when you reach 11th level in this class.

\n

Instinctive Leap

\n

At 6th level, when a hostile creatures moves to within 5 feet of you, you can use your reaction to disengage and leap up to half your speed. If you end this movement in the air, you immediately fall to the ground.

\n

Absorb Damage

\n

Starting at 11th level, you learn to channel the Force into your skin and bones, greatly enhancing your durability. You can use a bonus action to channel the Force throughout your body. Until the start of your next turn, you have resistance to kinetic and energy damage.

\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

Control the Field

\n

At 17th level, whenever you use your Instinctive Leap feature, you can leap your entire movement speed instead of only half. Additionally, when you land, you can make an unarmed strike with advantage against a creature within 5 feet of you as part of the same reaction. On a hit, this attack deals an additional 2d6 force damage.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Matukai%20Order.webp"} +{"_id":"uKs4nEUZxYJ6iAd7","name":"Acquisitions Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Acquisitions Practice

\n

Many operatives are hired for the procurement of valuable artifacts, but only the true masters of the art can slip through the tightest security and make off with untold riches, whether they do it for a profit, or for sport. Those operatives who choose the Acquisitions Practice apply a mixture of stealth and impressive acrobatics to surpass any kind of defenses they are met with.

\n

Fast and Agile

\n

When you use choose this practice at 3rd level, you can use the bonus action granted by your Cunning Action to make a Dexterity (Sleight of Hand) check, use your demolitions kit or security kit to disarm a trap or open a lock, or take the Use an Object action.

\n

Additionally, climbing no longer costs you extra movement, and you gain the ability to move in flying leaps with incredible speed, precision, and power. When you move, instead of using your walking speed, you may take two short movements by flying. Each movement is at half your speed, and you must end each one on a solid object, a surface, or on the ground. If you do not, you fall and your movement ends. If you Dash, your bonus movement is applied to your normal speed, not this movement.

\n

Deft Hands

\n

Also at 3rd level, you learn a number of techniques to distract and confuse your opponents. When you deal Sneak Attack damage, you may choose to forgo two of your Sneak Attack dice to perform a deft hand maneuver.

\n

Some of your aerial maneuvers require your target to make a saving throw to resist the deft hand maneuver's effects. The saving throw DC is as follows:

\n

Deft Hands save DC = 8 + your proficiency bonus + your Dexterity modifier

\n

Hinder

\n

You attempt to distract your target in order to hinder their movement. The target must make a Constitution saving throw. On a failed save, its movement speed is reduced by half and it makes the first Dexterity saving throw before the end of its next turn with disadvantage.

\n

Pilfer

\n

You attempt to pick your target's pockets. The target must make a Wisdom saving throw. On a failed save, you have advantage on the first Dexterity (Sleight of Hand) check you make against the target before the end of your next turn.

\n

Tumble

\n

You attempt to nimbly roll away. You immediately move 10 feet in a direction of your choice, and the target must make a Dexterity saving throw. On a failed save, this movement does not provoke opportunity attacks from the creature.

\n

Supreme Sneak

\n

Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn. Additionally, as long as you aren't incapacitated, you no longer take damage from falling less than 100 feet, and have resistance to falling damage.

\n

Improved Aerial Agility

\n

Starting at 13th level, your Aerial Agility feature improves and you gain the following benefits:

\n\n

Thief's Reflexes

\n

When you reach 17th level, you can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.

\n

Additionally, you learn to utilize the momentum of your fall to make deadly vertical strikes. Whenever you fall at least 50 feet and land within 5 feet of an enemy creature you can use your reaction to make one weapon attack against that creature. If the attack is a Sneak Attack, you can deal three additional weapon dice worth of damage and the creature must make a Dexterity saving throw or be knocked prone.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Acquisitions%20Practice.webp"} +{"_id":"uV3tG38Fo7JAXF0W","name":"Mounted Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Mounted Specialist

\n

Those fighters who choose to become Mounted Specialists excel at mounted combat. Mounted Specialists are most dangerous from the seat of a speeder or saddle of a varactyl, though they can hold their own from the ground. Their versatility often has them leading the charge or protecting the team.

\n

Bonus Proficiencies

\n

When you choose this specialty at 3rd level, you gain proficiency in Animal Handling or Piloting.

\n

Born to the Saddle

\n

Also at 3rd level, your mastery as a rider becomes apparent. You have advantage on saving throws made to avoid falling off your mount. If you fall off your mount and descend no more than 10 feet, you can land on your feet if you're not incapacitated.

\n

Finally, mounting or dismounting a creature or vehicle costs you only 5 feet of movement, rather than half your speed.

\n

Unwavering Mark

\n

Lastly at 3rd level, you can menace your foes, foiling their attacks and punishing them for harming others. When you hit a creature with a melee weapon attack, you can mark the creature until the end of your next turn. This effect ends early if you are incapacitated or you die, or if someone else marks the creature. While it is within 5 feet of you, a creature marked by you has disadvantage on any attack roll that doesn't target you.

\n

In addition, if a creature marked by you deals damage to anyone other than you, you can make a special melee weapon attack against the marked creature as a bonus action on your next turn. You have advantage on the attack roll, and if it hits, the attacks weapon deals extra damage to the target equal to half your fighter level.

\n

Regardless of the number of creatures you mark, you can make this special attack a number of times equal to your Strength modifier (minimum of once), and you regain all expended uses when you finish a long rest.

\n

Warding Maneuver

\n

Beginning at 7th level, you learn to fend off strikes directed at you, your mount, or other creatures nearby. If you or a creature you can see within 5 feet of you is hit by an attack, you can roll ld8 as a reaction if you're wielding a melee weapon or a shield. Roll the die, and add the number rolled to the target's AC against that attack. If the attack still hits, the target has resistance against the attack's damage.

\n

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

\n

Hold the Line

\n

At 10th level, you become a master of locking down your enemies. Creatures provoke an opportunity attack from you when they move 5 feet or more while within your reach, and if you hit a creature with an opportunity attack, the target's speed is reduced to 0 until the end of the current turn.

\n

Ferocious Charger

\n

Starting at 15th level, you can run down your foes, whether you're mounted or not. If you move at least 10 feet in a straight line right before attacking a creature and you hit it with the attack, that target must succeed on a Strength saving throw (DC = 8 + your proficiency bonus + your Strength modifier) or be knocked prone. You can use this feature only once on each of your turns.

\n

Vigilant Defender

\n

At 18th level, you respond to danger with extraordinary vigilance. In combat, you get a special reaction that you can take once on every creature's turn, except your turn. You can use this special reaction only to make an opportunity attack, and you can't use it on the same turn that you take your normal reaction.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Mounted%20Specialist.webp"} +{"_id":"ucmQpCjxdEN6tpxD","name":"Form IX: Trakàta","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form IX: Tràkata

\n

Form IX, also known as Deception Form, capitalizes on a lightweapon's ability to quickly be toggled on and off. Those guardians who focus on Tràkata Form perform dazzling tricks with their lightweapon, confusing their opponents before dispatching them.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Dueling, Two-Weapon Fighting, or Versatile Fighting 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

The Way of the Monkey-Lizard

\n

Also at 3rd level, as a bonus action, you can enter a confusing stance for one minute. As a part of this bonus action, and as a bonus action on each of your turns, when you take the Dodge action, you can make one melee weapon attack against a creature within range. Additionally, when you make this melee weapon attack, you can flourish your weapon to attempt to distract your target. Make a Dexterity (Sleight of Hand) check contested by a Wisdom (Perception) check of the target of your attack. On a success, you make this attack roll with advantage.

\n

This effect ends early if you are incapacitated or die. Once you use this feature, you can't use it again until you finish a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain the following Channel the Force option.

\n

Unbalancing Block

\n

When you are hit with a melee weapon attack, and you are wielding a lightweapon with which you are proficient, you can use your reaction and expend a use of your Channel the Force to add your Wisdom or Charisma modifier (your choice, minimum of +1) to your AC for that attack, potentially causing the attack to miss you.

\n

Duplicitous Force

\n

Beginning at 7th level, when you make a Dexterity (Sleight of Hand) check, you gain a bonus to that check equal to your Wisdom or Charisma modifier (your choice, minimum of one).

\n

Pass the Blade

\n

Starting at 15th level, when a creature misses you with an attack, you gain temporary hit points equal to your Wisdom or Charisma modifier (your choice, minimum of one), and you add your Wisdom or Charisma modifier (your choice, minimum of one) to the first melee weapon attack and damage rolls you make against that creature before the end of your next turn.

\n

Master of Deception

\n

At 20th level, your skill with a lightweapon is both mesmerizing and confounding. Your Dexterity and Wisdom or Charisma scores (your choice) increase by 2. Your maximum for these scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you use this feature, you can't use it again until you finish a long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Trakata%20Form.webp"} +{"_id":"uqpzyWm3JoIJlHrb","name":"Biochem Engineering","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Engineer","description":{"value":"

Biochem Engineering

Those engineers who choose the Biochem Engineering discipline focus on utilizing their vast knowledge of medicine and chemistry to supply allies with potent healing and enemies with debilitating poisons and acids.

Bonus Proficiencies

When you choose this discipline at 3rd level you gain proficiency in the Medicine skill, biochemist's kits, and poisoner's kits. additionally, when you engage in crafting with biochemist's kits and poisoner's kits, the rate at which you craft doubles.

Modified Biochemist's Pack

Also at 3rd level, you learn to modify and combine your biochemist's kit and poisoner's kit, creating a mobile laboratory using your chemistry expertise. Over the course of a long rest, you can expend 500 cr worth of materials to create your modified biochemist's pack. You must have a biochemist's kit, a poisoner's kit, and materials in order to perform this modification.

Your biochemist's pack is enhanced, requires attunement, can only be used by you, and counts as a tech focus for your tech powers while you are attuned to it. Your modified biochemist's pack has 4 modification slots, and it gains more at higher levels, as shown in the Modification Slots column of the engineer class table. For each modification installed, your tech point maximum is reduced by 1. Over the course of a long rest, you can replace or remove a number of modifications up to your Intelligence modifier (minimum of one).

Some modification effects require saving throws. When you use such an effect from this class, the DC equals your tech save DC.

Your modified biochemist's pack comes equipped with a chemical distribution system, complete with three chemical mixtures: corrosive, invigorating, and noxious. As an action, you can activate your distributor and target a creature within 30 feet, with an effect determined by the mixture.

Corrosive Mixture

Your distributor emits a burst of acid. The target must make a Dexterity sav-ing throw. On a failed save, a creature takes 1d6 + your Intelligence modifier acid damage. This mixture's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).

Invigorating Mixture

Your distributor emits a bolt of kolto. The target gains 1d6 + your Intelligence modifier temporary hit points, which last until the end of your next turn. The temporary hit points granted by this mixture increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).

Noxious Mixture

Your distributor emits a cloud of poison. The target must make a Constitution saving throw. On a failed save, a creature takes 1d6 + your Intelligence modifier poison damage. This mixture's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).

Biochemist's Touch

Lastly at 3rd level, whenever you grant temporary hit points, or deal acid or poison damage using a tech power or class feature, you may expend one use of your Potent Aptitude to increase the potency. When you do so, the amount of temporary hit points you grant or damage you deal is increased by the amount rolled on the die. The damage is the same type as the original damage.

Potent Mixtures

Beginning at 6th level, when you cast a tech power of 1st-level or higher that grants temporary hit points, or deals acid or poison damage, you add your Intelligence modifier (a minimum of +1) to the roll.

Epicenter

At 14th level, as a reaction when you take damage from a creature within 15 feet of you that you can see, you can use one of your mixtures. The effects of the mixture release in a 15-foot-radius sphere centered on you, and if the mixture requires a saving throw, you automatically succeed on it. Additionally, the affected area is difficult terrain to creatures other than you until the end of your next turn.

Once you've used this feature, you must complete a short or long rest before you can use it again.

Masterful Mixtures

Starting at 18th level, when you deal acid or poison damage using a tech power or class feature, you ignore resistance and treat immunity as resistance.

Biochem Modifications

If a modification has prerequisites, you must meet them to install it. You can install the modification at the same time that you meet its prerequisites.

Biochemist's Amplifer

Prerequisite: 5th level You gain a +1 bonus to tech attack rolls. This bonus increases to +2 at 11th level and +3 at 17th level.

Biochemist's Inhibitor

Prerequisite: 5th level You gain a +1 bonus to your tech save DC. This bonus increases to +2 at 11th level and +3 at 17th level.

Chemical Counteragents

You may choose one type of damage that benefits from your Biochemist's Touch and Potent Mixtures features. While wearing your modified biochemist's pack you have resistance to that type of damage.

You can select this modification multiple times. Each time you do so, you must choose a different damage type.

Countertoxin

When you or an ally within 30 feet of you is suffering from the poisoned condition, you may use your reaction on your turn to end the poisoned condition on that creature. The creature also gains immunity to the poisoned condition for one minute.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Detachable Distribution System

You upgrade your distributor with a secondary, detachable distributor. As a bonus action, you can throw your detachable distributor at a point within range. Your detachable distributor has a range equal to 30 feet + your Strength modifier x 5. Your detachable distributor works for 1 minute before coming inert. Once it does so, you can't use it again until you recover it as an action.

Additionally, while your detachable distributor is within 100 feet of you, when you use your action to activate your distributor, you can choose to affect each creature within 5 feet of your detachable distributor. You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Drone Distribution System

You upgrade your distributor, interfacing it with the target of your tracker droid interface power. When you use your action to activate your distributor, while your tracker droid is within 100 feet of you, you can choose to have your tracker droid deliver the mixture. Your tracker droid must use its reaction to deliver the mixture.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Expanded Chemicals: Combustibles

Prerequisite: 5th level You add additional chemicals to your modified biochemist's pack. When you deal fire damage with a tech power or class feature, you can use your Biochemist's Touch and Potent Mixture features.

Additionally, when a creature fails their Dexterity saving throw against your Corrosive Mixtures feature, you can choose to instead deal fire damage. If you do so, each creature within 5 feet of the target takes fire damage equal to your Intelligence modifier. You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Expanded Chemicals: Cryogenics

Prerequisite: 5th level You add additional chemicals to your modified biochemist's pack. When you deal cold damage with a tech power or class feature, you can use your Biochemist's Touch and Potent Mixture features.

Additionally, when a creature fails their Constitution saving throw against your Noxious Mixtures feature, you can choose to instead deal cold damage. If you do so, its speed is reduced by 10 feet until the start of your next turn. You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Expanded Chemicals: Restorative

Prerequisite: 5th level You add additional chemicals to your modified biochemist's pack. When you restore hit points with a tech power or class feature, you can use your Biochemist's Touch and Potent Mixture features.

Additionally, when you use your Invigorating Mixture to grant temporary hit points to a creature, you can choose to restore that many hit points to the same creature. You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Expanded Mixtures: Adhesive

You've created a new mixture from your chemicals that you can use when you activate your distributor. When you do so, the target creature must make a Strength saving throw. If the creature is Large or larger, it has advantage on the saving throw. On a failed save, a creature's speed is reduced to 0 until the start of your next turn. As an action on their turn, an affected creature can repeat this saving throw, ending the effect on a success.

Expanded Mixtures: Blinding

You've created a new mixture from your chemicals that you can use when you activate your distributor. When you do so, the target creature must make a Constitution saving throw. On a failed save, a creature is blinded until the start of your next turn.

Expanded Mixtures: Hallucinogenic

You've created a new mixture from your chemicals that you can use when you activate your distributor. When you do so, the target creature must make an Intelligence saving throw. On a failed save, the target loses the ability to distinguish friend from foe, regarding all creatures it can see as enemies until the end of your next turn. Each time the target takes damage, it can repeat the saving throw, ending the effect on itself on a success.

Whenever the affected creature chooses another creature as a target, it must choose the target at random from among the creatures it can see within range of the attack, power, or other ability it's using. If an enemy provokes an opportunity attack from the affected creature, the creature must make that attack if it is able to.

This feature has no effect on droids or constructs.

Explosive Distribution System

You upgrade your distributor, granting it the ability to create a volley. When you use your action to activate your distributor, you can choose to affect each creature in a 10-foot-radius sphere centered on a point you can see within 30 feet.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Injection Apparatus

You install a wrist mounted injection apparatus into your modified biochemist's pack. It is a simple vibroweapon with the finesse and light properties, and deals 1d4 kinetic damage on a hit. Your injection apparatus does not fill the hand slot, but you can't use it while the hand is full.

When you hit with the weapon, you can activate your distributor to deploy one of your mixtures. If you do so, the target has disadvantage on the saving throw against your mixture.

Inoculation

You gain immunity to the poisoned and diseased conditions.

Integrated EVA Functionality

You make several additions to your modified biochemist's pack, you are protected from hazardous conditions, as if wearing an EVA suit, for as long as you are wearing your modified biochemist's pack.

Kolto Aerosol

Prerequisite: 9th level You add a special dispersal system to your modified biochemist's pack. This system slowly disperses small amounts of kolto in the air. If creatures spend the entirety of a long rest within 30 feet of you, they regain all expended Hit Dice, instead of only half. Additionally, they are cured of any poisons or diseases that are suffering from.

Long-Range Distribution System

You upgrade your distributor, improving the range. When you use your action to activate your distributor, you can choose to increase the range to 60 feet.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

Luminous Gel

You've added a light-emitting gel to your modified biochemist's pack. As an action, you can coat an item, object, or location up to 5-foot-square with this gel. When you do so, the gel sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The gel lasts for 1 hour before losing its potency. You can end this effect as a bonus action.

Oil Spill

As an action, you can cast the oil slick tech power without expending tech points. Casting the power in this way does not require concentration, and the oil will remain in place for the full duration of the power.

Once you've used this feature, you must complete a short or long rest before you can use it again.

Persistent Chemicals

Prerequisite: 7th level Whenever you use your Biochemist's Touch feature, you may select one creature that was damaged. At the start of each of that creature's turns, it must make a Constitution saving throw. On a failed save, it takes damage of the triggering type equal to your Intelligence modifier and has disadvantage on attack rolls until the start of its next turn. On a success, this feature ends, and the creature becomes immune to it for one day.

Once you've used this feature, you must complete a short or long rest before you can use it again.

Piercing Gel

Prerequisite: 11th level Prerequisite: Luminous Gel Your luminous gel now automatically dispels illusions and can detect invisibility, as with truesight.

Self-Injection Module

You install a special kolto injector into your modified biochemist's pack that can inject you with kolto in response to pain. When you take damage, you can use your reaction and expend a Hit Die to regain health as long as the damage would not reduce your hit points to 0.

Smart Dispersal System

When you activate your distributor, you can choose a number of creature equal to your Intelligence modifier. Those creature automatically succeed on their saving throws against your mixtures.

Spray Distribution System

You upgrade your distributor, granting it the ability to spray in a cone. When you use your action to activate your distributor, you can choose to affect each creature in a 15-foot cone.

You can use this feature a number of times equal to your Intelligence modifier (a minimum of once). You regain all expended uses when you complete a short or long rest.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Biochem%20Engineering.webp"} +{"_id":"vWCA4gae11g8s1xq","name":"Assault Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Assault Specialist

\n

Those fighters who choose to become Assault Specialists focus on the development of raw physical power honed to deadly perfection. Assault Specialists combine rigorous training with physical excellence to deal devastating blows.

\n

Brute Force

\n

When you choose this specialty at 3rd level, once per turn, when you deal damage with a weapon, you can deal an additional 1d4 damage of the same type as the weapon’s damage. If this damage would affect multiple creatures, you can only apply this damage bonus to one of them.

\n

This damage increases to 1d6 at 5th level, 1d8 at 9th level, 1d10 and 13th level, and 1d12 at 17th level.

\n

Remarkable Athlete

\n

Also at 3rd level, you can add half your proficiency bonus (rounded up) to any Strength, Dexterity, or Constitution check you make that doesn’t already use your proficiency bonus.

\n

Brutish Durability

\n

Beginning at 7th level, once per round, roll 1d6 and add the die to your saving throw total. If applying this bonus to a death saving throw increases the total to 20 or higher, you gain the benefits of rolling a 20 on the d20. You can choose to use this feature before or after you make a saving throw, but you must decide before the GM says whether the save succeeds or fails.

\n

Additional Fighting Style

\n

At 10th level, you can choose a second Fighting Style option.

\n

Devastating Critical

\n

Starting at 15th level, when you score a critical hit with a weapon attack, you gain a bonus to that weapon's damage roll equal to your fighter level.

\n

Survivor

\n

At 18th level, you attain the pinnacle of resilience in battle. At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left. You don't gain this benefit if you have 0 hit points.

\n

The Assault Specialist

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelBonus Damage
3rd1d4
10th1d6
16th1d8
20th1d10
"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":""},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Assault%20Specialist.webp"} +{"_id":"w1XQ5LzJNpk6PT0F","name":"Form VI: Niman","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Guardian","description":{"value":"

Form VI: Niman

\n

Form VI, also known as Moderation Form, strikes a balance between bladework and force powers. Those guardians who focus on Niman Form weave Force manipulation with their melee weapon strikes, pushing their opponents off-balance to create an opening.

\n

Fighting Style

\n

When you choose this form as your focus at 3rd level, you adopt a style of fighting as your specialty. Choose one from the Equilibrium, Two-Weapon Fighting, or Versatile Fighting 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

The Way of the Rancor

\n

Also at 3rd level, as a bonus action, you can enter a balanced stance for one minute. As a part of this bonus action, and as a bonus action on each of your turns, when you use your action to cast a force power, you can make one melee weapon attack.

\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

\n

Channel the Force

\n

Lastly at 3rd level, you gain the following Channel the Force option.

\n

Telekinetic Slash

\n

When you deal damage with an at-will force power, you can expend a use of your Channel the Force and expend force points to deal additional damage to the target. The extra damage is 2d8 for a 1st-level force slot, plus 1d8 for each slot level higher than 1st, to a maximum of 5d8. The damage is the same type as the power's damage.

\n

Enlightenment

\n

Starting at 7th level, you can add half your Wisdom or Charisma modifier (your choice, rounded down, minimum of one) to any saving throw you make that doesn't already include that modifier.

\n

Redirect

\n

Starting at 15th level, when you would be affected by a force power that requires a Dexterity saving throw or attack roll and would effect only you, you may redirect that power to another target within 30 feet. If the power required an attack roll, make an appropriate attack roll against the new target. If it required a Dexterity saving throw, the new target must make a Dexterity saving throw against your force save DC.

\n

Once you've used this feature, you must complete a short or long rest before you can use it again.

\n

Master of Moderation

\n

At 20th level, the Force flows in perfect concert with your weapon attacks. Your Dexterity and Wisdom or Charisma scores (your choice) increase by 2. Your maximum for these scores increases by 2. Additionally, you can use your action to gain the following benefits for 1 minute:

\n\n

This effect ends early if you are incapacitated or die. Once you've used this feature, you can't use it again until you finish a long rest.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Niman%20Form.webp"} +{"_id":"xAObT0H9SNxYOQh2","name":"Predator Technique","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Scout","description":{"value":"

Predator Technique

\n

Some scouts work in solitude, while others prefer the strength of a group. Followers of the Predator Technique find power lies with the pack; they distract their prey, while their allies go for the kill.

\n

Bonus Proficiencies

\n

You gain proficiency in heavy armor.

\n

Hunting Party

\n

When you choose this technique at 3rd level, when you take the Attack action on your turn, you can use a bonus action to direct one of your companions to strike. When you do so, choose a friendly creature who can see or hear you. That creature can immediately use its reaction to make one weapon attack.

\n

You can use this feature a number of times equal to your Intelligence modifier (minimum of once). You regain all expended uses of it when you finish a long rest.

\n

Mark of the Predator

\n

Also at 3rd level, if the target of your Ranger's Quarry feature can see you, a number of friendly creatures you choose up to your Intelligence modifier have advantage on Dexterity (Stealth) checks made to hide from it.

\n

Predator's Resolve

\n

Beginning at 7th level, you can use your action to gain the following benefits for 1 minute:

\n\n

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

\n

Prey on the Weak

\n

Starting at 11th level, when you hit a creature with a weapon attack, and the creature is below its hit point maximum, the next attack roll made against that creature before the end of your next turn by someone other than you has advantage.

\n

On the Hunt

\n

At 15th level, when you use your Predator's Resolve feature, a number of friendly creatures you choose up to your Intelligence modifier that you can see within 30 feet of you also gain the benefits of the feature.

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Tech-caster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Predator%20Technique.webp"} +{"_id":"xIgy4jaHPhmry1Ub","name":"Path of Focus","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Sentinel","description":{"value":"

Path of Focus

\n

The ways of the Force can reveal themselves to a sentinel through intense concentration and, most importantly, focus. Those sentinels who follow the Path of Focus use debilitating bursts of lightsaber strikes and force powers to exhaust their foes, crushing any hopes they had of mounting an effective defense.

\n

Focused Burst

\n

Starting when you choose this calling at 3rd level, you learn the burst force power, which does not count against your total powers known. Additionally, you can use your Kinetic Combat feature when you cast it as your action. Finally, you add your Wisdom or Charisma modifier (your choice, a minimum of +1) to damage rolls with it, and creatures that succeed on their saving throw take half damage, instead of none.

\n

Blade Dance

\n

Also at 3rd level, when you deal damage to a creature within 5 feet of you, you can move up to 10 feet without provoking opportunity attacks.

\n

Blade Storm

\n

At 7th level, your bursts become even more overwhelming. Once on your turn, when a creature takes damage from you twice, you can immediately make one additional attack against that creature (no action required). This attack uses your Kinetic Combat die instead of the weapon's damage die

\n

Focused Flow

\n

By 13th level, whenever you use a Force-Empowered Self feature, you may instead expend no force points and roll a d4 in place of your Kinetic Combat die.

\n

Master Strike

\n

At 18th level, your bursts can overpower even the fiercest of foes. Once on your turn, when a creature takes damage from you three times, you can force it to make a Constitution saving throw against your universal force save DC. On a failed save, it becomes stunned until the end of its next turn.

"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Path%20of%20Focus.webp"} +{"_id":"xUUk8lINd1wpQrIh","name":"Beguiler Practice","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Operative","description":{"value":"

Beguiler Practice

\n

Those operatives who choose the Beguiler Practice augment their natural wiles and charm with subtle utilization of the Force. They tap into these powers to cloud the minds of their foes, distracting and diverting before abruptly dispatching them.

\n

Forcecasting

\n

When you choose this practice at 3rd level, you have derived powers from your emotional connection to the Force. See chapter 10 for the general rules of forcecasting and chapter 11 for the force powers list.

\n

Force Powers Known

\n

You learn 4 force powers of your choice, and you learn more at higher levels, as shown in the Force Powers Known column of the Beguiler Practice Forcecasting 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 operative level, as shown in the Force Points column of the Beguiler Practice Forcecasting 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 Beguiler Practice Forcecasting table.

\n

You may only cast force powers at 4th-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

Fascinating Display

\n

Also at 3rd level, you can spend 1 minute attemping to distract and enthrall those around you. Choose a number of humanoids within 60 feet of you who watched your display for the duration, up to a number equal to your Charisma modifier (minimum of one). Each target must succeed on a Wisdom saving throw (DC = 8 + your proficiency bonus + your Charisma modifier) or be charmed by you. While charmed in this way, the target idolizes you, speaking glowingly of you to anyone who talks to it. Additionally, it hinders anyone who opposes you, although it avoids violence unless it was already inclined to fight on your behalf. This effect ends on a target after 1 hour, if it takes any damage, if you attack it, or if it witnesses you attacking or damaging any of its allies.

\n

If a target succeeds on this saving throw, the target has no hint you tried to charm it.

\n

Once you've used this feature, you must complete a long rest before you can use it again.

\n

Mesmerizing Presence

\n

Beginning at 9th level, you have advantage on attack rolls against creatures charmed by you.

\n

Enthralling Vigor

\n

Starting at 13th level, whenever a creature fails a Wisdom or Charisma saving throw against a force power or class feature you use, you can gain temporary hit points equal to half your operative level (rounded down) + your Charisma modifier (minimum of one).

\n

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

\n

Distracting Countenance

\n

At 17th level, as a bonus action, you can mask yourself with the Force for 1 minute or until you are incapacitated. For the duration, whenever any creature tries to attack you for the first time on a turn, the attacker must make a Charisma saving throw (DC = 8 + your prof-iciency bonus + your Charisma modifier). On a failed save, it can't attack you on this turn, and it must choose a new target for its attack or the attack is wasted. On a successful save, it can attack you on this turn, but it has disadvantage on any saving throw it makes against your powers on your next turn.

\n

Once you've used this feature, you must com-plete a short or long rest before you can use it again.

\n
Beguiler Practice Forcecasting
\n

The Beguiler Practice

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelForce Powers KnownForce PointsMax Power Level
3rd431st
4th541st
5th651st
6th761st
7th872nd
8th982nd
9th1092nd
10th11102nd
11th12112nd
12th13122nd
13th14133rd
14th15143rd
15th16153rd
16th17163rd
17th18174th
18th18184th
19th19194th
20th19204th
"},"source":"PHB","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"classCasterType":"Forcecaster"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Beguiler%20Practice.webp"} +{"_id":"zxnST2OeLGmt8buI","name":"Praetorian Specialist","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"archetype","data":{"className":"Fighter","description":{"value":"

Praetorian Specialist

\n

Those fighters who choose to become Praetorian Specialists seek perfection of both body and mind. These warriors master the art of warfare, and are often sought as bodyguards for the galaxy's elite. They are engines of destruction and resilience, able to fight on to their last breath.

\n

Bonus Proficiency

\n

When you choose this archetype at 3rd level, you gain proficiency in one of the following skills of your choice: Insight, Lore, Performance, or Persuasion. Alternatively, you learn one language of your choice.

\n

Fighting Spirit

\n

Starting at 3rd level, your intensity in battle can shield you and help you strike true. As a bonus action on your turn, you can give yourself advantage on all weapon attack rolls until the end of the current turn. When you do so, you also gain 5 temporary hit points. The number of hit points increases when you reach certain levels in this class, increasing to 10 at 10th level and 15 at 15th level.

\n

You can use this feature three times. You regain all expended uses when you finish a long rest.

\n

Resilient Retainer

\n

Starting at 7th level, your discipline and attention to detail allow you to excel in social situations. Whenever you make a Charisma (Persuasion) check, you gain a bonus to the check equal to your Wisdom modifier.

\n

Your self-control also causes you to gain proficiency in Wisdom saving throws. If you already have this proficiency, you instead gain proficiency in Intelligence or Charisma saving throws (your choice).

\n

Tireless Spirit

\n

Starting at 10th level, when you roll initiative and have no uses of Fighting Spirit remaining, you regain one use.

\n

Rapid Strike

\n

Starting at 15th level, you learn to trade accuracy for swift strikes. If you take the Attack action on your turn and have advantage on an attack roll against one of the targets, you can forgo the advantage for that roll to make an additional weapon attack against that target, as part of the same action. You can do so no more than once per turn.

\n

Strength Before Death

\n

Starting at 18th level, your fighting spirit can delay the grasp of death. If you take damage that reduces you to 0 hit points, you can use your reaction to delay falling unconscious, and you can immediately take an extra turn. While you have 0 hit points during that extra turn, taking damage causes death saving throw failures as normal, and three death saving throw failures can still kill you. When the extra turn ends, you fall unconscious if you still have 0 hit points.

\n

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

"},"source":"EC","activation":{"cost":null,"type":""},"actionType":"","damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}},"img":"systems/sw5e/packs/Icons/Archetypes/Praetorian%20Specialist.webp"} diff --git a/packs/packs/classes.db b/packs/packs/classes.db index bc11f47d..ee38817a 100644 --- a/packs/packs/classes.db +++ b/packs/packs/classes.db @@ -2,7 +2,7 @@ {"_id":"2femmWtRKWpl2VAl","name":"Operative","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

Controller who focuses on stealth and techniques

","chat":"","unidentified":""},"source":"PHB","levels":1,"subclass":"","hitDice":"d8","hitDiceUsed":0,"skills":{"number":4,"choices":[],"value":[]},"spellcasting":"none","attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Classes/Operative.webp"} {"_id":"MN79cDvuWQ2YGjNA","name":"Scout","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

Versatile combatant who blends tech powers with weapons

","chat":"","unidentified":""},"source":"PHB","levels":1,"subclass":"","hitDice":"d10","hitDiceUsed":0,"skills":{"number":3,"choices":[],"value":[]},"spellcasting":"full","attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Classes/Scout.webp"} {"_id":"O414X0HamnCKpEF5","name":"Consular","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

Force-wielder who focuses on utilizing force powers

","chat":"","unidentified":""},"source":"PHB","levels":1,"subclass":"","hitDice":"d6","hitDiceUsed":0,"skills":{"number":2,"choices":[],"value":[]},"spellcasting":"full","attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Classes/Guardian.webp"} -{"_id":"Q14Bi1e8iFPQYbpz","name":"Berserker","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

Melee combatant who utilizes rage to increase prowess

","chat":"","unidentified":""},"source":"PHB","levels":1,"subclass":"","hitDice":"d12","hitDiceUsed":0,"skills":{"number":2,"choices":[],"value":[]},"spellcasting":"none","attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Classes/Berserker.webp"} +{"_id":"Q14Bi1e8iFPQYbpz","name":"Berserker","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

Melee combatant who utilizes rage to increase prowess

","chat":"","unidentified":""},"source":"PHB","levels":1,"subclass":"","hitDice":"d12","hitDiceUsed":0,"skills":{"number":2,"choices":[],"value":[]},"spellcasting":"none","attributes":{"spelldc":10},"damage":{"parts":[]},"powercasting":"none"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Classes/Berserker.webp"} {"_id":"X7aZfupQsjnLVS8D","name":"Gaurdian","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

Force-wielder specializing in melee combat

","chat":"","unidentified":""},"source":"PHB","levels":1,"subclass":"","hitDice":"d10","hitDiceUsed":0,"skills":{"number":2,"choices":[],"value":[]},"spellcasting":"full","attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Classes/Consular.webp"} {"_id":"XZhWixwwCdFfnhoT","name":"Engineer","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

A Tech Caster who enhances items to benefit allies.

","chat":"","unidentified":""},"source":"PHB","levels":1,"subclass":"","hitDice":"d8","hitDiceUsed":0,"skills":{"number":3,"choices":[],"value":[]},"spellcasting":"full","damage":{"parts":[]},"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Classes/Engineer.webp"} {"_id":"glPjmRU5IT8dn4GW","name":"Scholar","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"class","data":{"description":{"value":"

Academic who uses wits and allies to control the battlefield

","chat":"","unidentified":""},"source":"PHB","levels":1,"subclass":"","hitDice":"d8","hitDiceUsed":0,"skills":{"number":3,"choices":[],"value":[]},"spellcasting":"none","attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Classes/Scholar.webp"} diff --git a/packs/packs/classfeatures.db b/packs/packs/classfeatures.db index a9d64890..cc5f1618 100644 --- a/packs/packs/classfeatures.db +++ b/packs/packs/classfeatures.db @@ -1,236 +1,36 @@ -{"_id":"01pcLg6PRu5zGrsb","name":"Cunning Action","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting 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.

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 2","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":149}},"img":"systems/sw5e/icons/skills/violet_10.jpg"} -{"_id":"06NVMYf58Z76O85O","name":"Fighting Style: Protection","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.

","chat":"","unidentified":""},"source":"PHB pg. 72; 73; 84","activation":{"type":"reaction","cost":1,"condition":"Must be wearing a shield."},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Fighter 1, Champion 10, Paladin 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":198}},"img":"systems/sw5e/icons/skills/weapon_14.jpg"} -{"_id":"0C04rwyvoknvFYiy","name":"Eldritch Master","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended power slots. You can spend 1 minute entreating your patron for aid to regain all your expended power slots from your Pact Magic feature. Once you regain power slots with this feature, you must finish a long rest before you can do so again.

","chat":"","unidentified":""},"source":"PHB pg. 108","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 20","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":32}},"img":"systems/sw5e/icons/skills/violet_26.jpg"} -{"_id":"0Jgf8fYY2ExwgQpN","name":"Mindless Rage","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your @Compendium[sw5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}, the effect is suspended for the duration of the rage.

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Path of the Berserker 6","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":137}},"img":"systems/sw5e/icons/skills/affliction_24.jpg"} -{"_id":"10b6z2W1txNkrGP7","name":"Ki","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level equals the number of ki points you have, so a 2nd level monk has 2 ki points, a 16th level monk has 16.

\n

You can spend these points to fuel various ki features. You start knowing three such features: @Compendium[sw5e.classfeatures.5MwNlVZK7m6VolOH]{Ki: Flurry of Blows}, @Compendium[sw5e.classfeatures.TDglPcxIVEzvVSgK]{Ki: Patient Defense}, and @Compendium[sw5e.classfeatures.yrSFIGTaQOH2PFRI]{Ki: Step of the Wind}. You learn more ki features as you gain levels in this class. 

\n

When you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.

\n

Some of your ki features require your target to make a saving throw to resist the feature’s effects. The saving throw DC is calculated as follows:

\n

Ki save DC = 8 + your proficiency bonus + your Wisdom modifier

\n

**Foundry note: Use this to track all the various uses of ki for the monk. Note the limited uses is set to the base default of 2 per short or long rest. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 78","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":2,"max":2,"per":"sr","type":"sr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 2","recharge":{"value":null,"charged":false},"consume":{"type":"","target":"","amount":null}},"sort":100001,"flags":{"_sheetTab":"details","entityorder":{"order":186},"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/yellow_13.jpg"} -{"_id":"1DY8w3CXeD7PHDXF","name":"Multiattack: Whirlwind Attack","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":""},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Hunter 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/yellow_06.jpg"} -{"_id":"1dJHU48yNqn3lcfx","name":"Ranger Archetype","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 3rd level, you choose an archetype that you strive to emulate, such as the Hunter. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.

","chat":"","unidentified":""},"source":"PHB pg. 92","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Ranger 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":152}},"img":"systems/sw5e/icons/skills/nature_05.jpg"} -{"_id":"2fyuw7MiCnocDeAU","name":"Invocation: Agonizing Blast","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you cast @Compendium[sw5e.powers.Z9p1vezIn95jw1Yw]{Eldritch Blast}, add your Charisma modifier to the damage it deals on a hit.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2, Eldritch Blast","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":20}},"img":"systems/sw5e/icons/skills/affliction_12.jpg"} -{"_id":"31bKbWe9ZGVLEns6","name":"Signature Powers (Second Power)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

When you reach 20th level, you gain mastery over two powerful powers and can cast them with little effort. Choose two 3rd-level wizard powers in your powerbook as your signature powers. You always have these powers prepared, they don't count against the number of powers you have prepared, and you can cast each of them once at 3rd level without expending a power slot. When you do so, you can't do so again until you finish a short or long rest. 

\n

If you want to cast either power at a higher level, you must expend a power slot as normal.

\n

If you wish, manually edit this entry and make a note of your second choice here:

\n","chat":"","unidentified":""},"source":"PHB pg. 115","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"sr","type":"sr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power","value":""},"requirements":"Wizard 20","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":53}},"img":"systems/sw5e/icons/skills/yellow_38.jpg"} -{"_id":"3647zjKSE9zFwOXc","name":"Dragon Wings","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn. 

You can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.

","chat":"","unidentified":""},"source":"PHB pg. 103","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Draconic Bloodline 14","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":74}},"img":"systems/sw5e/icons/skills/blue_02.jpg"} -{"_id":"3CaP1vFHVR8LgHjx","name":"Foe Slayer","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.

","chat":"","unidentified":""},"source":"PHB pg. 92","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"wis","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["@mod",""]],"versatile":"","value":""},"formula":"@mod","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Ranger 20","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":157}},"img":"systems/sw5e/icons/skills/arrow_03.jpg"} -{"_id":"3FB25qKxmkmxcxuC","name":"Land's Stride (Circle of the Land)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. 

\n

In addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the @Compendium[sw5e.powers.gMrWeG8fMDPRFiVe]{Entangle} power.

","chat":"","unidentified":""},"source":"PHB pg. 69","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Circle of the Land 6","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":126}},"img":"systems/sw5e/icons/skills/green_16.jpg"} -{"_id":"3Nc6u9pyStByuJsm","name":"Fighting Style: Great Weapon Fighting","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.

","chat":"","unidentified":""},"source":"PHB pg. 72; 73; 84","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Fighter 1, Champion 10, Paladin 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":197}},"img":"systems/sw5e/icons/skills/yellow_16.jpg"} -{"_id":"3VDZGs5Ug3hIE322","name":"Font of Inspiration","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning when you reach 5th level, you regain all of your expended uses of @Compendium[sw5e.classfeatures.EeGafsa17CapsH2j]{Bardic Inspiraton} when you finish a short or long rest.

\n

Please note, the Foundry default for Bardic Inspiration is set to long rest recovery by default. Please edit to short rest upon reaching this level.

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Bard 5","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":223}},"img":"systems/sw5e/icons/skills/green_22.jpg"} -{"_id":"3jwFt3hSqDswBlOH","name":"Ki: Empty Body","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.

\n

Additionally, you can spend 8 ki points to cast the @Compendium[sw5e.powers.TIoadMIsUKD4edXi]{Astral Projection} power, without needing material components. When you do so, you can’t take any other creatures with you.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"action","cost":1,"condition":"Also requires 4 ki points (or 8 for Astral Projection)."},"duration":{"value":1,"units":"minute"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 18","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":183}},"img":"systems/sw5e/icons/skills/shadow_17.jpg"} -{"_id":"3sN91lT1R3oxcDKd","name":"Invocation: Devil's Sight","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":14}},"img":"systems/sw5e/icons/skills/shadow_17.jpg"} -{"_id":"3sYPftQKnbbVnHrh","name":"Expertise (Rogue)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.

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

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":146}},"img":"systems/sw5e/icons/skills/yellow_35.jpg"} -{"name":"Expanded Power List","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

The Fiend lets you choose from an expanded list of powers when you learn a warlock power. The following powers are added to the warlock power list for you.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Fiend Expanded Powers
Power LevelPowers
1st@Compendium[sw5e.powers.5SuJewoa1CRWaj1F]{Burning Hands}, @Compendium[sw5e.powers.arzCrMRgcNiQuh43]{Command}
2nd@Compendium[sw5e.powers.zwGsAv6kmwzYGhh3]{Blindness/Deafness}, @Compendium[sw5e.powers.7u2obDvuvtZBkTfq]{Scorching Ray}
3rd@Compendium[sw5e.powers.ztgcdrWPshKRpFd0]{Fireball}, @Compendium[sw5e.powers.TwlD4PLcltv7Xh7j]{Stinking Cloud}
4th@Compendium[sw5e.powers.avD5XUtkBPQQR97c]{Fire Shield}, @Compendium[sw5e.powers.X3DrXgxjwI2dvkD6]{Wall of Fire}
5th@Compendium[sw5e.powers.5e1xTohkzqFqbYH4]{Flame Strike}, @Compendium[sw5e.powers.SLxA9QhrggTz0taU]{Hallow}
","chat":"","unidentified":""},"source":"PHB pg. 109","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power","value":""},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":38},"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/yellow_40.jpg","_id":"4IHsIcBhAVDt8QjY"} -{"_id":"4UOgxzr83vFuUash","name":"Supreme Healing","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 17th level, when you would normally roll one or more dice to restore hit points with a power, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.

","chat":"","unidentified":""},"source":"PHB pg. 60","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Life Domain 17","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":132}},"img":"systems/sw5e/icons/skills/green_19.jpg"} -{"_id":"4Vpj9vCOB37GtXk6","name":"Favored Enemy","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy. 

\n

Choose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies. 

\n

You have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them. 

\n

When you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all. 

\n

You choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.

\n

If you wish, manually edit this entry and make a note of your choices here:

\n","chat":"","unidentified":""},"source":"PHB pg. 91","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":159}},"img":"systems/sw5e/icons/skills/violet_22.jpg"} -{"_id":"5MwNlVZK7m6VolOH","name":"Ki: Flurry of Blows","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Immediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action.

","chat":"","unidentified":""},"source":"PHB pg. 78","activation":{"type":"bonus","cost":1,"condition":"Comes immediately after taking the Attack action."},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":182}},"img":"systems/sw5e/icons/skills/blood_11.jpg"} -{"_id":"5gx1O0sxK08awEO9","name":"Hunter's Prey: Colossus Slayer","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":null,"max":null,"per":""},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d8",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":102}},"img":"systems/sw5e/icons/skills/yellow_14.jpg"} -{"_id":"5zPmHPQUne7RDfaU","name":"Cutting Words","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others.

\n

When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of @Compendium[sw5e.classfeatures.EeGafsa17CapsH2j]{Bardic Inspiraton}, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll.

\n

You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"reaction","cost":1,"condition":"Target must be able to hear you and not be immune to being Charmed."},"duration":{"value":null,"units":"inst"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"College of Lore 3","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":135}},"img":"systems/sw5e/icons/skills/yellow_17.jpg"} -{"_id":"61kXR1sniXHjvN17","name":"Invocation: Beast Speech","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.aL1F8fvYLtNzUbKu]{Speak with Animals} at will, without expending a power slot.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":10,"units":"minute"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":19}},"img":"systems/sw5e/icons/skills/green_13.jpg"} -{"_id":"653ZHbNcmm7ZGXbw","name":"Indomitable","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can’t use this feature again until you finish a long rest.

\n

You can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.

\n

**Foundry note: Note the limited uses is set to the base default of 1 per long rest. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 72","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"lr","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Fighter 9","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":216}},"img":"systems/sw5e/icons/skills/fire_07.jpg"} -{"_id":"65ReXU4ZWqcSs3Cm","name":"Invocation: Gaze of Two Minds","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":"Target must be a willing humanoid."},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":17}},"img":"systems/sw5e/icons/skills/light_01.jpg"} -{"name":"Bonus Proficiency (Life Domain)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

When you choose this domain at 1st level, you gain proficiency with heavy armor.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/items/armor/splint.png","_id":"68bYIOvx6rIqnlOW"} -{"_id":"6VBXkjjBgjSpNElh","name":"Sculpt Powers","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation powers. When you cast an evocation power that affects other creatures that you can see, you can choose a number of them equal to 1 + the power's level. The chosen creatures automatically succeed on their saving throws against the power, and they take no damage if they would normally take half damage on a successful save.

","chat":"","unidentified":""},"source":"PHB pg. 117","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"School of Evocation 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":63}},"img":"systems/sw5e/icons/skills/green_08.jpg"} -{"_id":"7D2EkLdISwShEDlN","name":"Ki: Diamond Soul","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws. Additionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 14","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":184}},"img":"systems/sw5e/icons/skills/ice_01.jpg"} -{"_id":"7O85kj6uDEG5NzUE","name":"Empowered Evocation","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation power you cast.

","chat":"","unidentified":""},"source":"PHB pg. 117","activation":{"type":"special","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"int","actionType":"other","attackBonus":0,"chatFlavor":"The bonus to one damage roll:","critical":null,"damage":{"parts":[["@mod",""]],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"School of Evocation 10","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":47}},"img":"systems/sw5e/icons/skills/fire_11.jpg"} -{"_id":"7flZKruSSu6dHg6D","name":"Ki-Empowered Strikes","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 6","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":185}},"img":"systems/sw5e/icons/skills/fire_07.jpg"} -{"_id":"7pyZjz5vlUWV01qQ","name":"Superior Hunter's Defense: Uncanny Dodge","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"reaction","cost":1,"condition":"Attacker must be visible."},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":106}},"img":"systems/sw5e/icons/skills/blue_06.jpg"} -{"_id":"7uzJ2JkmsdRGLra3","name":"Evocation Savant","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation power into your powerbook is halved.

","chat":"","unidentified":""},"source":"PHB pg. 117","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"School of Evocation 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":51}},"img":"systems/sw5e/icons/skills/yellow_15.jpg"} -{"_id":"7vSrGc0MP5Vzm9Ac","name":"Unarmored Movement","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the table below. 

\n

At 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Monk LevelUnarmored Movement
2nd+10 ft.
3rd+10 ft.
4th+10 ft.
5th+10 ft.
6th+15 ft.
7th+15 ft.
8th+15 ft.
9th+15 ft.
10th+20 ft.
11th+20 ft.
12th+20 ft.
13th+20 ft.
14th+25 ft.
15th+25 ft.
16th+25 ft.
17th+25 ft.
18th+30 ft.
19th+30 ft.
20th+30 ft.
\n

 

","chat":"","unidentified":""},"source":"PHB pg. 77-78","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 2 ","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":169}},"img":"systems/sw5e/icons/skills/green_16.jpg"} -{"name":"Multiattack","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 11th level, you gain one of the following features of your choice.

\n

Volley

\n

Whirlwind Attack

\n

You can drag your choice from the above onto your character sheet and it will automatically update.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Hunter 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/green_03.jpg","_id":"7zlTRRXT1vWSBGjX"} -{"name":"Roguish Archetype","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities, such as Thief. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power","value":""},"requirements":"Rogue 3","recharge":{"value":null,"charged":false},"featType":{"value":"passive","_deprecated":true,"type":"String","label":"Feat Type"},"time":{"value":"","_deprecated":true},"damageType":{"value":"","_deprecated":true}},"flags":{"_sheetTab":"description","entityorder":{"order":144}},"img":"systems/sw5e/icons/skills/violet_07.jpg","_id":"80USV8ZFPIahpLd0"} -{"_id":"8M7uOPhbTxoxxJSo","name":"Channel Divinity (Paladin)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

Your oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.

\n

When you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.

\n

Some Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin power save DC.

\n

**Foundry note: Use this to track all the various uses of Channel Divinity for the paladin.

","chat":"","unidentified":""},"source":"PHB pg. 85","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"sr"},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Paladin 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/yellow_38.jpg"} -{"_id":"8MlxM2nEfE3Q0EVk","name":"Eldritch Invocations","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.

\n

At 2nd level, you gain two eldritch invocations of your choice. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column in the class table.

\n

Additionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.

\n

Eldritch Invocations

\n

If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
PrerequisitesInvocation
Class LevelOther
2nd@Compendium[sw5e.powers.Z9p1vezIn95jw1Yw]{Eldritch Blast}@Compendium[sw5e.classfeatures.2fyuw7MiCnocDeAU]{Agonizing Blast}
 @Compendium[sw5e.classfeatures.alUqO6c6OEKFQJdb]{Armor of Shadows}
 @Compendium[sw5e.classfeatures.61kXR1sniXHjvN17]{Beast Speech}
 @Compendium[sw5e.classfeatures.eNvpIaSnJUdF8fHl]{Beguiling Influence}
@Compendium[sw5e.classfeatures.MYM908WLZ1lVvA1u]{Pact of the Tome}@Compendium[sw5e.classfeatures.CFIYXDmbmSP8BXjN]{Book of Ancient Secrets}
 @Compendium[sw5e.classfeatures.3sN91lT1R3oxcDKd]{Devil's Sight}
 @Compendium[sw5e.classfeatures.bbUEsCPTLzbbwK6o]{Eldritch Sight}
@Compendium[sw5e.powers.Z9p1vezIn95jw1Yw]{Eldritch Blast}@Compendium[sw5e.classfeatures.r01WtcxTg4yTHm9m]{Eldritch Spear}
 @Compendium[sw5e.classfeatures.lEZKbWaVrSljRa9n]{Eyes of the Rune Keeper}
 @Compendium[sw5e.classfeatures.id0gmGvzNZBEdzbx]{Fiendish Vigor}
 @Compendium[sw5e.classfeatures.65ReXU4ZWqcSs3Cm]{Gaze of Two Minds}
 @Compendium[sw5e.classfeatures.MhJfdBl1B7PdU4oZ]{Mask of Many Faces}
 @Compendium[sw5e.classfeatures.k5DU0mMuYVHejiqz]{Misty Visions}
@Compendium[sw5e.powers.Z9p1vezIn95jw1Yw]{Eldritch Blast}@Compendium[sw5e.classfeatures.rdBPd6CwqXT64iJM]{Repelling Blast}
 @Compendium[sw5e.classfeatures.rhbwDZ9XNTmdkX2u]{Thief of Five Fates}
@Compendium[sw5e.classfeatures.Ic1CSjvbWKudVUv9]{Pact of the Chain}@Compendium[sw5e.classfeatures.k5M8gsl7MMcdjOjs]{Voice of the Chain Master}
5th @Compendium[sw5e.classfeatures.DjXi0IkCTbJx1gsp]{Mire the Mind}
 @Compendium[sw5e.classfeatures.KfnUyjUWAk0bAAus]{One With Shadows}
 @Compendium[sw5e.classfeatures.dTSV0xZMpY5CxkRk]{Sign of Ill Omen}
@Compendium[sw5e.classfeatures.9dSSa68mIPoX2ezA]{Pact of the Blade}@Compendium[sw5e.classfeatures.pJADgAxxefgcATWr]{Thirsting Blade}
7th @Compendium[sw5e.classfeatures.KygHql3cTj4IRrvZ]{Bewitching Whispers}
 @Compendium[sw5e.classfeatures.QBk1RsuTIEF4GEBC]{Dreadful Word}
 @Compendium[sw5e.classfeatures.Xa2MLUJGCReJ28B7]{Sculptor of Flesh}
9th @Compendium[sw5e.classfeatures.QEuH5TeBN4PPYT2g]{Ascendant Step}
 @Compendium[sw5e.classfeatures.QnRKYXb2bXpnNd2k]{Minions of Chaos}
 @Compendium[sw5e.classfeatures.8zciiglzEOZo7DDN]{Otherwordly Leap}
 @Compendium[sw5e.classfeatures.gFjxo01hAN4c9hDG]{Whispers of the Grave}
12th@Compendium[sw5e.classfeatures.9dSSa68mIPoX2ezA]{Pact of the Blade}@Compendium[sw5e.classfeatures.zUIAzBnyt0NDvVXb]{Life Drinker}
15th@Compendium[sw5e.classfeatures.Ic1CSjvbWKudVUv9]{Pact of the Chain}@Compendium[sw5e.classfeatures.Phy02H5x0TKHd7T3]{Chains of Carceri}
 @Compendium[sw5e.classfeatures.lxfdjLer3uKjyZqU]{Master of Myriad Forms}
 @Compendium[sw5e.classfeatures.zYIdNAjqRyhS6qWs]{Visions of Distant Realms}
 @Compendium[sw5e.classfeatures.snsjxGfmzWfZR5Nh]{Witch Sight}
\n

You can drag your choices onto your character sheet and it will automatically update.

","chat":"","unidentified":""},"source":"PHB pg. 107; 110","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false},"consume":{"type":"","target":null,"amount":null},"featType":{"value":"","_deprecated":true},"time":{"value":"","_deprecated":true},"damageType":{"value":"","_deprecated":true}},"folder":"tFOfAj4cr2LN77j7","sort":300001,"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/violet_28.jpg"} -{"_id":"8YwPFv3UAPjWVDNf","name":"Fighting Style: Archery","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You gain a +2 bonus to attack rolls you make with ranged weapons

","chat":"","unidentified":""},"source":"PHB pg. 72; 73; 91","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Fighter 1, Champion 10, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":194}},"img":"systems/sw5e/icons/skills/green_01.jpg"} -{"_id":"8fbZt2Qh7ZttwIan","name":"Natural Explorer","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in. 

\n

While traveling for an hour or more in your favored terrain, you gain the following benefits:

\n\n

You choose additional favored terrain types at 6th and 10th level.

\n

If it would be helpful, manually edit this entry and make a note of your choices here:

\n","chat":"","unidentified":""},"source":"PHB pg. 91","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Ranger 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":154}},"img":"systems/sw5e/icons/skills/nature_01.jpg"} -{"_id":"8zciiglzEOZo7DDN","name":"Invocation: Otherwordly Leap","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.ZrTc23tToJ0JpH2h]{Jump} on yourself at will, without expending a power slot or material components.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":28}},"img":"systems/sw5e/icons/skills/yellow_11.jpg"} -{"_id":"9UZ2WjUF2k58CQug","name":"Fiendish Resilience","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.

","chat":"","unidentified":""},"source":"PHB pg. 109","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":null,"max":null,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"The Fiend 10","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":40}},"img":"systems/sw5e/icons/skills/blue_34.jpg"} -{"_id":"9Uh7uTDNZ04oTJsL","name":"Metamagic","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 3rd level, you gain the ability to twist your powers to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level. You can use only one Metamagic option on a power when you cast it, unless otherwise noted.

\n

Careful Power

\n

Distant Power

\n

Empowered Power

\n

Extended Power

\n

Heightened Power

\n

Quickened Power

\n

Subtle Power

\n

Twinned Power

\n

You can drag your choices from the above onto your character sheet and it will automatically update.

","chat":"","unidentified":""},"source":"PHB pg. 101","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false},"consume":{"type":"","target":null,"amount":null},"featType":{"value":"passive","_deprecated":true,"type":"String","label":"Feat Type"},"time":{"value":"","_deprecated":true},"damageType":{"value":"","_deprecated":true}},"folder":"tFOfAj4cr2LN77j7","sort":700001,"flags":{"_sheetTab":"description","entityorder":{"order":69}},"img":"systems/sw5e/icons/skills/nature_07.jpg"} -{"_id":"9dSSa68mIPoX2ezA","name":"Pact of the Blade","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage. 

Your pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die. 

You can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.

","chat":"","unidentified":""},"source":"PHB pg. 107","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":43}},"img":"systems/sw5e/icons/skills/affliction_06.jpg"} -{"_id":"AEWr9EMxy5gj4ZFT","name":"Arcane Tradition","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools, such as Evocation. 

\n

Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.

","chat":"","unidentified":""},"source":"PHB pg. 115","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Wizard 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":49}},"img":"systems/sw5e/icons/skills/blue_08.jpg"} -{"_id":"ANE5gjojvhNEagzz","name":"Holy Nimbus","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that. Whenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage. 

In addition, for the duration, you have advantage on saving throws against powers cast by fiends or undead.

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

","chat":"","unidentified":""},"source":"PHB pg. 86","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":30,"long":60,"units":"ft"},"uses":{"value":1,"max":1,"per":"lr","type":""},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["10","radiant"]],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Oath of Devotion 20","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":111}},"img":"systems/sw5e/icons/skills/light_03.jpg"} -{"_id":"C5fzaOBc6HxyOWRn","name":"Land's Stride (Ranger)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. 

\n

In addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the @Compendium[sw5e.powers.gMrWeG8fMDPRFiVe]{Entangle} power.

","chat":"","unidentified":""},"source":"PHB pg. 92","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Ranger 8","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":155}},"img":"systems/sw5e/icons/skills/green_16.jpg"} -{"_id":"C6sHdDGmCMo0cYHd","name":"Hunter's Prey: Horde Breaker","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.

","chat":"","unidentified":""},"source":"PHB pg. 92","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":104}},"img":"systems/sw5e/icons/skills/yellow_18.jpg"} -{"_id":"CFIYXDmbmSP8BXjN","name":"Invocation: Book of Ancient Secrets","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level powers that have the ritual tag from any class's power list (the two needn't be from the same list). The powers appear in the book and don't count against the number of powers you know. With your Book of Shadows in hand, you can cast the chosen powers as rituals. You can't cast the powers except as rituals, unless you've learned them by some other means. You can also cast a warlock power you know as a ritual if it has the ritual tag.

On your adventures, you can add other ritual powers to your Book of Shadows. When you find such a power, you can add it to the book if the power's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the power. For each level of the power, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 3, Pact of the Tome","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":26}},"img":"systems/sw5e/icons/items/inventory/book-folder.jpg"} -{"_id":"CkbbAckeCtyHXEnL","name":"Frenzy","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting when you choose this path at 3rd level, you can go into a frenzy when you @Compendium[sw5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage}. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Path of the Berserker 3","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":136}},"img":"systems/sw5e/icons/skills/red_33.jpg"} -{"_id":"DPN2Gfk8yi1Z5wp7","name":"Sneak Attack","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning 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.

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["(ceil(@classes.rogue.levels /2))d6",""]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":142}},"img":"systems/sw5e/icons/skills/violet_27.jpg"} -{"_id":"DZpAa3LzMNBexbmX","name":"Metamagic: Distant Power","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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

When you cast a power that has a range of touch, you can spend 1 sorcery point to make the range of the power 30 feet.

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":73}},"img":"systems/sw5e/icons/skills/blue_03.jpg"} -{"_id":"DhU2dWCNnX78TstR","name":"Vanish","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.

","chat":"","unidentified":""},"source":"PHB pg. 92","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Ranger 14","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":151}},"img":"systems/sw5e/icons/skills/shadow_17.jpg"} -{"_id":"DjXi0IkCTbJx1gsp","name":"Invocation: Mire the Mind","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.yqUDoxk4x0NWG5Bz]{Slow} once using a warlock power slot. You can't do so again until you finish a long rest.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":40,"units":"ft","type":"cube"},"range":{"value":120,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"","scaling":"cha"},"requirements":"Warlock 5","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":18}},"img":"systems/sw5e/icons/skills/mech_12.jpg"} -{"_id":"Dop1RcU5UdhSVLYS","name":"Grappler","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Prerequisite: Strength 13 or higher

\n

You've developed the skills necessary to hold your own in close-quarters grappling.

\n

You gain the following benefits:

\n","chat":"","unidentified":""},"source":"PHB pg. 167","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"STR 13 or higher","recharge":{"value":null,"charged":false}},"sort":400000,"flags":{},"img":"systems/sw5e/icons/skills/yellow_08.jpg"} -{"_id":"E8ozg8avUVOX9N7u","name":"Divine Sense","permission":{"default":0},"type":"feat","data":{"description":{"value":"

The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the @Compendium[sw5e.powers.SLxA9QhrggTz0taU]{Hallow} power. 

\n

You can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.

\n

**Foundry note: Note the limited uses is set to the base default of 1 per long rest. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 84","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"round"},"target":{"value":null,"units":"","type":""},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"lr","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":164}},"img":"systems/sw5e/icons/skills/light_02.jpg"} -{"_id":"EZsonMThTNLZq35j","name":"Dragon Ancestor","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DragonDamage Type
BlackAcid
BlueLightning
BrassFire
BronzeLightning
CopperAcid
GoldFire
GreenPoison
RedFire
SilverCold
WhiteCold
\n

You can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":72}},"img":"systems/sw5e/icons/skills/fire_05.jpg"} -{"_id":"Ei1Oh4UAA2E30jcD","name":"Supreme Sneak","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.

","chat":"","unidentified":""},"source":"PHB pg. 97","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Thief 9","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":0}},"img":"systems/sw5e/icons/skills/shadow_17.jpg"} -{"_id":"EuX1kJNIw1F68yus","name":"Nature's Sanctuary","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you.

When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid power save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.

The creature is aware of this effect before it makes its attack against you.

","chat":"","unidentified":""},"source":"PHB pg. 69","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"wis","scaling":"wis"},"requirements":"Circle of the Land 14","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":124}},"img":"systems/sw5e/icons/skills/green_27.jpg"} -{"_id":"F2lEKSmOY0NUruzY","name":"Sorcerous Restoration","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 20","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":83}},"img":"systems/sw5e/icons/skills/red_24.jpg"} -{"_id":"FAk41RPCTcvCk6KI","name":"Improved Divine Smite","permission":{"default":0},"type":"feat","data":{"description":{"value":"

By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them.

\n

Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your @Compendium[sw5e.classfeatures.ySMPQ6zNSlvkrl2f]{Divine Smite} with an attack, you add this damage to the extra damage of your Divine Smite.

","chat":"","unidentified":""},"source":"PHB pg. 85","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d8","radiant"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Paladin 11","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":162}},"img":"systems/sw5e/icons/skills/light_06.jpg"} -{"_id":"FGrbXs6Ku5qxFK5G","name":"Second-Story Work","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.

In addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.

","chat":"","unidentified":""},"source":"PHB pg. 97","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Thief 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":93}},"img":"systems/sw5e/icons/skills/blue_07.jpg"} -{"_id":"FqfmbPgxiyrWzhYk","name":"Relentless Rage","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 11th level, your rage can keep you fighting despite grievous wounds.

\n

If you drop to 0 hit points while you're raging and don't die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead. 

\n

Each time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"con","dc":10,"value":"","scaling":"flat"},"requirements":"Barbarian 11","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":202}},"img":"systems/sw5e/icons/skills/red_01.jpg"} -{"_id":"GBYN5rH4nh1ocRlY","name":"Superior Inspiration","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 20th level, when you roll initiative and have no uses of @Compendium[sw5e.classfeatures.EeGafsa17CapsH2j]{Bardic Inspiraton} left, you regain one use.

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Bard 20","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":219}},"img":"systems/sw5e/icons/skills/green_11.jpg"} -{"_id":"Gsha4bl0apxqspFy","name":"Draconic Presence","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration power), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.

","chat":"","unidentified":""},"source":"PHB pg. 103","activation":{"type":"action","cost":1,"condition":"Also requires 5 sorcery points."},"duration":{"value":1,"units":"minute"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"","scaling":"cha"},"requirements":"Draconic Bloodline 18","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":68}},"img":"systems/sw5e/icons/skills/affliction_14.jpg"} -{"_id":"HBn6FXLz7Eiudz0V","name":"Mystic Arcanum (7th-Level Power)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

Choose one 7th-level power from the warlock power list as an additional arcanum. 

\n

You can cast your arcanum power once without expending a power slot. You must finish a long rest before you can do so again. 

\n

At higher levels, you gain more warlock powers of your choice that can be cast in this way: one 8th-level power at 15th level, and one 9th-level power at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.

\n

If you wish, manually edit this entry and make a note of your choice here:

\n","chat":"","unidentified":""},"source":"PHB pg. 108","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power","value":""},"requirements":"Warlock 13","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":36}},"img":"systems/sw5e/icons/items/inventory/book-grey.jpg"} -{"_id":"ILhzFHiRrqgQ9dFJ","name":"Bard College","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 3rd level, you delve into the advanced techniques of a bard college of your choice, such as the College of Lore. Your choice grants you features at 3rd level and again at 6th and 14th level.

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Bard 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/yellow_09.jpg"} -{"_id":"IWpe0Y9uAStHGiH1","name":"Metamagic: Empowered Power","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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

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

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":75}},"img":"systems/sw5e/icons/skills/blue_13.jpg"} -{"_id":"Ic1CSjvbWKudVUv9","name":"Pact of the Chain","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You learn the @Compendium[sw5e.powers.JGT5bNqu9REL7Fuz]{Find Familiar} power and can cast it as a ritual. The power doesn't count against your number of powers known. When you cast the power, you can choose one of the normal forms for your familiar or one of the following special forms: @Compendium[sw5e.monsters.dLQiESMsfsXijD5c]{Imp}, pseudodragon, @Compendium[sw5e.monsters.bwtkdzavdNHISgp4]{Quasit}, or @Compendium[sw5e.monsters.MUpBNDoJEr09bLaO]{Sprite}. 

\n

Additionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.

","chat":"","unidentified":""},"source":"PHB pg. 107","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":41}},"img":"systems/sw5e/icons/skills/red_06.jpg"} -{"_id":"JfFfHTeIszx1hNRx","name":"Power Mastery","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 18th level, you have achieved such mastery over certain powers that you can cast them at will. Choose a 1st-level wizard power and a 2nd-level wizard power that are in your powerbook. You can cast those powers at their lowest level without expending a power slot when you have them prepared. If you want to cast either power at a higher level, you must expend a power slot as normal. 

\n

By spending 8 hours in study, you can exchange one or both of the powers you chose for different powers of the same levels.

\n

If you wish, manually edit this entry and make a note of your choices here:

\n","chat":"","unidentified":""},"source":"PHB pg. 115","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Wizard 18","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":59}},"img":"systems/sw5e/icons/skills/violet_06.jpg"} -{"_id":"Jv0zu4BtUi8bFCqJ","name":"Dark One's Blessing","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).

","chat":"","unidentified":""},"source":"PHB pg. 109","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"cha","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["@mod + @classes.warlock.levels","temphp"]],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"The Fiend 1","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":35}},"img":"systems/sw5e/icons/skills/affliction_10.jpg"} -{"_id":"KQz9bqxVkXjDl8gK","name":"Slow Fall","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.

","chat":"","unidentified":""},"source":"PHB pg. 78","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"5* @classes.monk.levels","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 4","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":174}},"img":"systems/sw5e/icons/skills/emerald_08.jpg"} -{"_id":"KfnUyjUWAk0bAAus","name":"Invocation: One With Shadows","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 5","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":4}},"img":"systems/sw5e/icons/skills/violet_07.jpg"} -{"_id":"Kl6zifJ5OmdHlOi2","name":"Fast Movement","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Your speed increases by 10 feet while you aren’t wearing heavy armor.

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 5","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":209}},"img":"systems/sw5e/icons/skills/armor_01.jpg"} -{"_id":"KygHql3cTj4IRrvZ","name":"Invocation: Bewitching Whispers","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.P6f1PPKPd9BCb742]{Compulsion} once using a warlock power slot. You can't do so again until you finish a long rest.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":null,"units":"any","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"","scaling":"cha"},"requirements":"Warlock 7","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":2}},"img":"systems/sw5e/icons/skills/shadow_20.jpg"} -{"_id":"L7nJSRosos8sHJH9","name":"Elusive","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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.

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 18","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":148}},"img":"systems/sw5e/icons/skills/blue_20.jpg"} -{"_id":"L94gyvNpUhUe0rwh","name":"Brutal Critical","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack. This increases to two additional dice at 13th level and three additional dice at 17th level.

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 9","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":211}},"img":"systems/sw5e/icons/skills/red_12.jpg"} -{"_id":"LBKChJY5n02Afhnq","name":"Font of Magic","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.

\n

Sorcery Points

\n

You have 2 sorcery points, and you gain more as you reach higher levels. Your sorcerer level equals the number of sorcery points you have, so a 4th level sorcerer has 4 sorcery points, a 16th level sorcerer has 16. You can never have more sorcery points than your level dictates.  You regain all spent sorcery points when you finish a long rest.

\n

Flexible Casting

\n

You can use your sorcery points to gain additional power slots, or sacrifice power slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels. 

\n

Creating Power SlotsYou can transform unexpended sorcery points into one power slot as a bonus action on your turn. The Creating Power Slots table shows the cost of creating a power slot of a given level. You can create power slots no higher in level than 5th.

\n

Any power slot you create with this feature vanishes when you finish a long rest.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Creating Power Slots
Power Slot LevelSorcery Point Cost
1st2
2nd3
3rd5
4th6
5th7
\n

Converting a Power Slot to Sorcery PointsAs a bonus action on your turn, you can expend one power slot and gain a number of sorcery points equal to the slot's level.

\n

**Foundry note: Use this to track all the various uses of sorcery points for the sorcerer. Note the limited uses is set to the base default of 2 per long rest. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 101","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":2,"max":2,"per":"lr","type":"lr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 2","recharge":{"value":null,"charged":false},"consume":{"type":"","target":"","amount":null}},"sort":200001,"flags":{"_sheetTab":"description","entityorder":{"order":67},"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/blue_35.jpg"} -{"_id":"LhRm1EeUMvp2EWhV","name":"Thief's Reflexes","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.

","chat":"","unidentified":""},"source":"PHB pg. 97","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Thief 17","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":95}},"img":"systems/sw5e/icons/skills/violet_01.jpg"} -{"name":"Druidic","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message’s presence with a successful DC 15 Wisdom (Perception) check but can’t decipher it without magic.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/yellow_41.jpg","_id":"LzJ5ayHt0OlSVGxi"} -{"_id":"M2DxVsgLeZgXOznT","name":"Aura of Devotion","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.

At 18th level, the range of this aura increases to 30 feet.

","chat":"","unidentified":""},"source":"PHB pg. 86","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":10,"long":30,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Oath of Devotion 7","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":108}},"img":"systems/sw5e/icons/skills/red_15.jpg"} -{"_id":"M6VSMzVtKPhh8B0i","name":"Intimidating Presence","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 10th level, you can use your action to frighten someone with your menacing presence.

When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you. 

If the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"wis","scaling":"cha"},"requirements":"Path of the Berserker 10","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":138}},"img":"systems/sw5e/icons/skills/yellow_14.jpg"} -{"_id":"MW1ExvBLm8Hg82aA","name":"Draconic Resilience","permission":{"default":0},"type":"feat","data":{"description":{"value":"

As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class. 

Additionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Draconic Bloodline 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":70}},"img":"systems/sw5e/icons/skills/red_20.jpg"} -{"_id":"MYM908WLZ1lVvA1u","name":"Pact of the Tome","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Your patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's power list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock power list, they are nonetheless warlock powers for you. 

If you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.

","chat":"","unidentified":""},"source":"PHB pg. 108","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":39}},"img":"systems/sw5e/icons/items/inventory/book-purple.jpg"} -{"_id":"MhJfdBl1B7PdU4oZ","name":"Invocation: Mask of Many Faces","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.A3q2gTNqG6fvNGrv]{Disguise Self} at will, without expending a power slot.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"hour"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":1}},"img":"systems/sw5e/icons/skills/blue_37.jpg"} -{"_id":"Mm64SKAHJWYecgXS","name":"Uncanny Dodge","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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.

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 5","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":139}},"img":"systems/sw5e/icons/skills/armor_01.jpg"} -{"_id":"NMy4piwXIpLjYbRE","name":"Destroy Undead","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 5th level, when an undead fails its saving throw against your @Compendium[sw5e.classfeatures.r91UIgwFdHwkXdia]{Turn Undead} feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the table below.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Cleric LevelDestroys Undead of CR...
5th1/2 or lower
8th1 or lower
11th2 or lower
14th3 or lower
17th4 or lower
","chat":"","unidentified":""},"source":"PHB pg. 59","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Cleric 5","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":214}},"img":"systems/sw5e/icons/skills/ice_17.jpg"} -{"_id":"NlXslw4yAqmKZWtN","name":"Feral Instinct","permission":{"default":0},"type":"feat","data":{"description":{"value":"

By 7th level, your instincts are so honed that you have advantage on initiative rolls. 

Additionally, if you are surprised at the beginning of combat and aren't incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 7","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":208}},"img":"systems/sw5e/icons/skills/blue_29.jpg"} -{"_id":"NqWyHE7Rpw9lyKWu","name":"Use Magic Device","permission":{"default":0},"type":"feat","data":{"description":{"value":"

By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.

","chat":"","unidentified":""},"source":"PHB pg. 97","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Thief 13","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":98}},"img":"systems/sw5e/icons/skills/mech_5.jpg"} -{"_id":"OQSb0bO1yDI4aiMx","name":"Dark One's Own Luck","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur. 

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

","chat":"","unidentified":""},"source":"PHB pg. 109","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"sr","type":"sr"},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"1d10","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"The Fiend 6","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":37}},"img":"systems/sw5e/icons/skills/yellow_20.jpg"} -{"_id":"OTvrJSJSUgAwXrWX","name":"Nature's Ward","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.

","chat":"","unidentified":""},"source":"PHB pg. 69","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Circle of the Land 10","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":123}},"img":"systems/sw5e/icons/skills/nature_02.jpg"} -{"_id":"OdrvL3afwLOPeuYZ","name":"Lay on Hands","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5. 

\n

As an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.

\n

Alternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.

\n

This feature has no effect on undead and constructs.

\n

**Foundry note: Note the limited uses is set to the base default of 5 points of healing power per long rest. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 84","activation":{"type":"action","cost":1,"condition":"Target cannot be Undead or a Construct."},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":5,"max":5,"per":"lr","type":"lr"},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":161}},"img":"systems/sw5e/icons/skills/light_10.jpg"} -{"_id":"Phy02H5x0TKHd7T3","name":"Invocation: Chains of Carceri","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.l9Ju5KE7bbn3WpTm]{Hold Monster} at will - targeting a celestial, fiend, or elemental - without expending a power slot or material components. You must finish a long rest before you can use this invocation on the same creature again.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"","scaling":"cha"},"requirements":"Warlock 15, Pact of the Chain","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":13}},"img":"systems/sw5e/icons/skills/red_32.jpg"} -{"_id":"Q1exex5ALteprrPo","name":"Indomitable Might","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 18","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":207}},"img":"systems/sw5e/icons/skills/blood_11.jpg"} -{"_id":"Q7mOdk4b1lgjcptF","name":"Wholeness of Body","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["3* @classes.monk.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Way of the Open Hand 6","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":116}},"img":"systems/sw5e/icons/skills/blood_04.jpg"} -{"_id":"QBVmY56RMQuh6C8h","name":"Feral Senses","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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. 

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.

","chat":"","unidentified":""},"source":"PHB pg. 92","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Ranger 18","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":158}},"img":"systems/sw5e/icons/skills/blood_13.jpg"} -{"_id":"QBk1RsuTIEF4GEBC","name":"Invocation: Dreadful Word","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.9hQXdMSmerkTsHDe]{Confusion} once using a warlock power slot. You can't do so again until you finish a long rest.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":10,"units":"ft","type":"sphere"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"","scaling":"cha"},"requirements":"Warlock 7","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":29}},"img":"systems/sw5e/icons/skills/blue_15.jpg"} -{"_id":"QEuH5TeBN4PPYT2g","name":"Invocation: Ascendant Step","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.MRxldJd6C4bsBo3O]{Levitate} on yourself at will, without expending a power slot or material components.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":10,"units":"minute"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":21}},"img":"systems/sw5e/icons/skills/yellow_13.jpg"} -{"_id":"Qb391hakCfmH4w8p","name":"Metamagic: Twinned Power","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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

\n

To be eligible, a power must be incapable of targeting more than one creature at the power's current level. For example, @Compendium[sw5e.powers.41JIhpDyM9Anm7cs]{Magic Missile} and @Compendium[sw5e.powers.7u2obDvuvtZBkTfq]{Scorching Ray} aren't eligible, but @Compendium[sw5e.powers.ctW81uiX56xZR2c5]{Ray of Frost} is.

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":81}},"img":"systems/sw5e/icons/skills/blue_21.jpg"} -{"_id":"QnRKYXb2bXpnNd2k","name":"Invocation: Minions of Chaos","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.1LkZvINag7KqBmDR]{Conjure Elemental} once using a warlock power slot. You can't do so again until you finish a long rest.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"hour"},"target":{"value":10,"units":"ft","type":"space"},"range":{"value":90,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":24}},"img":"systems/sw5e/icons/skills/blue_26.jpg"} -{"name":"Pact Boon","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.

\n

Pact of the Blade

\n

Pact of the Chain

\n

Pact of the Tome

\n

You can drag your choice from the above onto your character sheet and it will automatically update.

","chat":"","unidentified":""},"source":"PHB pg. 107","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Warlock 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/violet_17.jpg","_id":"QwgfIpCN8VWfoUtX"} -{"_id":"SCVjqRdlZ9cvHVSR","name":"Reckless Attack","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation.

When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.

","chat":"","unidentified":""},"source":"PHB pg. 48","activation":{"type":"none","cost":0,"condition":""},"duration":{"value":1,"units":"round"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":203}},"img":"systems/sw5e/icons/skills/weapon_34.jpg"} -{"_id":"SEJmsjkEhdAZ90ki","name":"Countercharm","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"action","cost":1,"condition":"Creatures must be able to hear you to benefit."},"duration":{"value":1,"units":"round"},"target":{"value":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":""},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Bard 6","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/emerald_06.jpg"} -{"_id":"SZbsNbaxFFGwBpNK","name":"Unarmored Defense (Barbarian)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.

","chat":"","unidentified":""},"source":"PHB pg. 48","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":201}},"img":"systems/sw5e/icons/skills/blue_35.jpg"} -{"_id":"StfmqK1twVfukpa0","name":"Hunter's Prey: Giant Killer","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.

","chat":"","unidentified":""},"source":"PHB pg. 92","activation":{"type":"reaction","cost":1,"condition":"Creature must be Large or larger and visible."},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":103}},"img":"systems/sw5e/icons/skills/red_01.jpg"} -{"_id":"T6u5z8ZTX6UftXqE","name":"Divine Strike","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 8th level, you gain the ability to infuse your weapon strikes with divine energy.

\n

Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.

\n

**Foundry note: Note the damage die is set to the base default of 1d8, Versatile 2d8.

","chat":"","unidentified":""},"source":"PHB pg. 60","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d8","radiant"]],"versatile":"2d8"},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Life Domain 8","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":131}},"img":"systems/sw5e/icons/skills/light_05.jpg"} -{"_id":"TDglPcxIVEzvVSgK","name":"Ki: Patient Defense","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can spend 1 ki point to take the Dodge action as a bonus action on your turn.

","chat":"","unidentified":""},"source":"PHB pg. 78","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":181}},"img":"systems/sw5e/icons/skills/blue_18.jpg"} -{"_id":"TH1QAf6YNGSeBVjT","name":"Primal Path","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 3rd level, you choose a path that shapes the nature of your rage, such as the Path of the Berserker. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.

","chat":"","unidentified":""},"source":"PHB pg. 48","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Barbarian 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/yellow_38.jpg"} -{"_id":"U7BIPVPsptBmwsnV","name":"Cleansing Touch","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 14th level, you can use your action to end one power on yourself or on one willing creature that you touch. 

\n

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

\n

**Foundry note: Note the limited uses is set to the base default of 1 per long rest. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 85","activation":{"type":"action","cost":1,"condition":"Target must be willing."},"duration":{"value":null,"units":"inst"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":1,"per":"lr","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Paladin 14","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":166}},"img":"systems/sw5e/icons/skills/light_08.jpg"} -{"_id":"UAvV7N7T4zJhxdfI","name":"Unarmored Defense (Monk)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.

","chat":"","unidentified":""},"source":"PHB pg. 78","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":170}},"img":"systems/sw5e/icons/skills/blue_35.jpg"} -{"_id":"V4pwFxlwHtNeB4w9","name":"Slippery Mind","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 15","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":143}},"img":"systems/sw5e/icons/skills/violet_03.jpg"} -{"_id":"VUtSLeCzFubGXmGx","name":"Overchannel","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 14th level, you can increase the power of your simpler powers. When you cast a wizard power of 1st through 5th level that deals damage, you can deal maximum damage with that power.

\n

The first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the power, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per power level increases by 1d12. This damage ignores resistance and immunity.

\n

**Foundry note: Note the limited use is to track the first, safe instance of Overchanneling. The damage formula is set to the base default of 2d12. The Versatile roll is set to 1d12 to add any additional damage.

","chat":"","unidentified":""},"source":"PHB pg. 118","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["2d12","necrotic"]],"versatile":"1d12"},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"School of Evocation 14","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":57}},"img":"systems/sw5e/icons/skills/affliction_20.jpg"} -{"_id":"VoR0SUrNX5EJVPIO","name":"Rage","permission":{"default":0},"type":"feat","data":{"description":{"value":"

In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action. While raging, you gain the following benefits if you aren't wearing heavy armor:

\n\n

If you are able to cast powers, you can't cast them or concentrate on them while raging. 

\n

Your rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action. 

\n

Once you have raged the number of times shown for your barbarian level in the Rages column in the table below, you must finish a long rest before you can rage again.

\n

**Foundry note: Note the limited uses is set to the base default of 2. Please manually adjust as required.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Barbarian LevelRagesRage Damage
1st2+2
2nd2+2
3rd3+2
4th3+2
5th3+2
6th4+2
7th4+2
8th4+2
9th4+3
10th4+3
11th4+3
12th5+3
13th5+3
14th5+3
15th5+3
16th5+4
17th6+4
18th6+4
19th6+4
20thUnlimited+4
\n

 

","chat":"","unidentified":""},"source":"PHB pg. 48","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":2,"max":2,"per":"lr","type":"lr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 1","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":204}},"img":"systems/sw5e/icons/skills/red_10.jpg"} -{"name":"Defensive Tactics","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 7th level, you gain on of the following features of your choice.

\n

@Compendium[sw5e.classfeatures.pAQMJU5R9SGUmzHU]{Escape the Horde}

\n

@Compendium[sw5e.classfeatures.slelvrm83v9UAKZU]{Multiattack Defense}

\n

@Compendium[sw5e.classfeatures.zbHu0NvHuII8lR7W]{Steel Will}

\n

You can drag your choice from the above onto your character sheet and it will automatically update.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/green_24.jpg","_id":"WgQrqjmeyMqDzVt3"} -{"_id":"Xa2MLUJGCReJ28B7","name":"Invocation: Sculptor of Flesh","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.04nMsTWkIFvkbXlY]{Polymorph} once using a warlock power slot. You can't do so again until you finish a long rest.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"hour"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"","scaling":"cha"},"requirements":"Warlock 7","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":34}},"img":"systems/sw5e/icons/skills/blue_29.jpg"} -{"_id":"Xf763cJoDHPPWSGG","name":"Superior Hunter's Defense: Stand Against the Tide","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice. 

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":105}},"img":"systems/sw5e/icons/skills/emerald_08.jpg"} -{"_id":"XjuGBeB8Y0C3A5D4","name":"Tongue of the Sun and Moon","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 13","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":171}},"img":"systems/sw5e/icons/skills/yellow_39.jpg"} -{"_id":"XogoBnFWmCAHXppo","name":"Extra Attack","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can attack twice, instead of once, whenever you take the Attack action on your turn.

","chat":"","unidentified":""},"source":"PHB pg. 49; 79; 85; 92","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 5, Monk 5, Paladin 5, Ranger 5","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":200}},"img":"systems/sw5e/icons/skills/weapon_08.jpg"} -{"_id":"YN9xm6MCvse4Y60u","name":"Reliable Talent","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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.

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 11","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":145}},"img":"systems/sw5e/icons/skills/yellow_34.jpg"} -{"_id":"YgLQV1O849wE5TgM","name":"Improved Critical","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Your weapon attacks score a critical hit on a roll of 19 or 20.

","chat":"","unidentified":""},"source":"PHB pg. 72","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Champion 3","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":119}},"img":"systems/sw5e/icons/skills/red_13.jpg"} -{"_id":"YiK59gWSlcQ6Mbdz","name":"Circle Powers","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Your mystical connection to the land infuses you with the ability to cast certain powers. At 3rd, 5th, 7th, and 9th level you gain access to circle powers connected to the land where you became a druid. Choose that land - arctic, coast, desert, forest, grassland, mountain, or swamp - and consult the associated list of powers.

\n

Once you gain access to a circle power, you always have it prepared, and it doesn't count against the number of powers you can prepare each day. If you gain access to a power that doesn’t appear on the druid power list, the power is nonetheless a druid power for you.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

Arctic

\n
Druid LevelCircle Powers
3rd@Compendium[sw5e.powers.3Lo9boi7P2ro6QV4]{Hold Person}, @Compendium[sw5e.powers.9gYGkrL6qFTsE6fw]{Spike Growth}
5th@Compendium[sw5e.powers.dhqBY4TvVjxVmOZd]{Sleet Storm}, @Compendium[sw5e.powers.yqUDoxk4x0NWG5Bz]{Slow}
7th@Compendium[sw5e.powers.da0a1t2FqaTjRZGT]{Freedom of Movement}, @Compendium[sw5e.powers.WN2LWEljYU6QqnRH]{Ice Storm}
9th@Compendium[sw5e.powers.d54VDyFulD9xxY7J]{Commune}, @Compendium[sw5e.powers.RpKjTlYASrfqUPVA]{Cone of Cold}
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

Coast

\n
Druid LevelCircle Powers
3rd@Compendium[sw5e.powers.X4c8xCkmF8U9HUMz]{Mirror Image}, @Compendium[sw5e.powers.wqfAVANuQonNBgnL]{Misty Step}
5th@Compendium[sw5e.powers.13uVuBQP6VaiSPvC]{Water Breathing}, @Compendium[sw5e.powers.YBda6nLKjxdT1LbS]{Water Walk}
7th@Compendium[sw5e.powers.7fFHlBk3UNX8gPKL]{Control Water}, @Compendium[sw5e.powers.da0a1t2FqaTjRZGT]{Freedom of Movement}
9th@Compendium[sw5e.powers.1LkZvINag7KqBmDR]{Conjure Elemental}, @Compendium[sw5e.powers.fVbCxFRaORalHB20]{Scrying}
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

Desert

\n
Druid LevelCircle Powers
3rd@Compendium[sw5e.powers.UDUnlfPsOAbq2RSE]{Blur}, @Compendium[sw5e.powers.5VhqFROQYjr1P9lp]{Silence}
5th@Compendium[sw5e.powers.BV0mpbHh29IbbIj5]{Create Food and Water}, @Compendium[sw5e.powers.j8NtLXOOJ3GAKF8I]{Protection from Energy}
7th@Compendium[sw5e.powers.pybg5MNc3lkerH4Y]{Blight}, @Compendium[sw5e.powers.sTIkQK7KuQNOyY0C]{Hallucinatory Terrain}
9th@Compendium[sw5e.powers.OVikYmSdHliAG2YD]{Insect Plague}, @Compendium[sw5e.powers.NmoRmM1mhuM3pqnY]{Wall of Stone}
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

Forest

\n
Druid LevelCircle Powers
3rd@Compendium[sw5e.powers.JPwIEfgUPVebr5AH]{Barkskin}, @Compendium[sw5e.powers.KJRVzeMQXPj8Gtyx]{Spider Climb}
5th@Compendium[sw5e.powers.ehvmg9U9fcMEhE4z]{Call Lightning}, @Compendium[sw5e.powers.YWtwzp6ZnQJMEmVW]{Plant Growth}
7th@Compendium[sw5e.powers.XqzXSKNR75ZdYTA9]{Divination}, @Compendium[sw5e.powers.da0a1t2FqaTjRZGT]{Freedom of Movement}
9th@Compendium[sw5e.powers.dp6xny4v8PDoIGjh]{Commune with Nature}, @Compendium[sw5e.powers.DUBgwHPakcLDkB6W]{Tree Stride}
\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

Grassland

\n
Druid LevelCircle Powers
3rd@Compendium[sw5e.powers.1N8dDMMgZ1h1YJ3B]{Invisibility}, @Compendium[sw5e.powers.pRMvmknwLf2tdMTj]{Pass without Trace}
5th@Compendium[sw5e.powers.BP3GCwa66IAw1yTG]{Daylight}, @Compendium[sw5e.powers.Szvk5FEVQW3uhJi5]{Haste}
7th@Compendium[sw5e.powers.XqzXSKNR75ZdYTA9]{Divination}, @Compendium[sw5e.powers.da0a1t2FqaTjRZGT]{Freedom of Movement}
9th@Compendium[sw5e.powers.kSPRpeIx3w3nihrF]{Dream}, @Compendium[sw5e.powers.OVikYmSdHliAG2YD]{Insect Plague}
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

Mountain

\n
Druid LevelCircle PowersMountain
3rd@Compendium[sw5e.powers.KJRVzeMQXPj8Gtyx]{Spider Climb}, @Compendium[sw5e.powers.9gYGkrL6qFTsE6fw]{Spike Growth}
5th@Compendium[sw5e.powers.IyikgTEOTv701jgQ]{Lightning Bolt}, @Compendium[sw5e.powers.64uo4fHriHLjRUrX]{Meld into Stone}
7th@Compendium[sw5e.powers.QvGcdRUSNRKEQJlK]{Stone Shape}, @Compendium[sw5e.powers.ReMbjfeOKoSj3O79]{Stoneskin}
9th@Compendium[sw5e.powers.d9MwcXi7Il3HROXd]{Passwall}, @Compendium[sw5e.powers.NmoRmM1mhuM3pqnY]{Wall of Stone}
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

Swamp

\n
Druid LevelCircle Powers
3rd@Compendium[sw5e.powers.4H6YgYdKgnX6ZQ8M]{Acid Arrow}, @Compendium[sw5e.powers.S7VbUetIfVT7B6Eq]{Darkness}
5th@Compendium[sw5e.powers.YBda6nLKjxdT1LbS]{Water Walk}, @Compendium[sw5e.powers.TwlD4PLcltv7Xh7j]{Stinking Cloud}
7th@Compendium[sw5e.powers.da0a1t2FqaTjRZGT]{Freedom of Movement}, @Compendium[sw5e.powers.gXtzz9t1DTzJeLr4]{Locate Creature}
9th@Compendium[sw5e.powers.OVikYmSdHliAG2YD]{Insect Plague}, @Compendium[sw5e.powers.fVbCxFRaORalHB20]{Scrying}
","chat":"","unidentified":""},"source":"PHB pg. 68","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Circle of the Land 3","recharge":{"value":null,"charged":false},"consume":{"type":"","target":null,"amount":null}},"sort":400001,"flags":{"_sheetTab":"details","entityorder":{"order":127},"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/water_09.jpg"} -{"_id":"YpiLQEKGalROn7iJ","name":"Channel Divinity (Cleric)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.

\n

When you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again. Some Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric power save DC.

\n

Beginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.

\n

**Foundry note: Use this to track all the various uses of Channel Divinity for the cleric. Note the limited uses is set to the base default of 1 per short or long rest. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 60","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"sr","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power","value":""},"requirements":"Cleric 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":129}},"img":"systems/sw5e/icons/skills/yellow_07.jpg"} -{"_id":"ZHJyYrqMYSLub4RY","name":"Purity of Spirit","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 15th level, you are always under the effects of a @Compendium[sw5e.powers.xmDBqZhRVrtLP8h2]{Protection from Evil and Good} power.

","chat":"","unidentified":""},"source":"PHB pg. 86","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Oath of Devotion 15","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":112}},"img":"systems/sw5e/icons/skills/affliction_21.jpg"} -{"_id":"ZdwGlsJNtc7pGFCd","name":"Channel Divinity: Turn the Unholy","permission":{"default":0},"type":"feat","data":{"description":{"value":"

As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage. 

A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can’t take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.

","chat":"","unidentified":""},"source":"PHB pg. 86","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"","scaling":"cha"},"requirements":"Oath of Devotion 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":110}},"img":"systems/sw5e/icons/skills/yellow_18.jpg"} -{"_id":"ZmC31XKS4YNENnoc","name":"Stillness of Mind","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 7","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":173}},"img":"systems/sw5e/icons/skills/emerald_02.jpg"} -{"name":"Superior Hunter's Defense","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 15th level, you gain one of the following features of your choice.

\n

@Compendium[sw5e.classfeatures.laVHAIOKIsUeezWd]{Evasion}

\n

@Compendium[sw5e.classfeatures.Xf763cJoDHPPWSGG]{Stand Against the Tide}

\n

@Compendium[sw5e.classfeatures.7pyZjz5vlUWV01qQ]{Uncanny Dodge}

\n

You can drag your choice from the above onto your character sheet and it will automatically update.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/green_21.jpg","_id":"a0Sq88dgnREcIMfl"} -{"_id":"a4P4DNMmH8CqSNkC","name":"Evasion","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon’s lightning breath or a fireball power. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.

","chat":"","unidentified":""},"source":"PHB pg. 79; 96","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 7, Rogue 7","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":187}},"img":"systems/sw5e/icons/skills/red_03.jpg"} -{"_id":"aCUmlnHlUPHS0rdu","name":"Hurl Through Hell","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape. 

At the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience. 

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

","chat":"","unidentified":""},"source":"PHB pg. 109","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":1,"units":"round"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["10d10","psychic"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"The Fiend 14","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":42}},"img":"systems/sw5e/icons/skills/red_07.jpg"} -{"_id":"aQLg7BWdRnm4Hr9S","name":"Expertise (Bard)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies. At 10th level, you can choose another two skill proficiencies to gain this benefit.

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Bard 3","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":224}},"img":"systems/sw5e/icons/skills/mech_7.jpg"} -{"_id":"aVKH6TLn1AG9hPSA","name":"Superior Critical","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Your weapon attacks score a critical hit on a roll of 18–20.

","chat":"","unidentified":""},"source":"PHB pg. 73","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Champion 15","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":121}},"img":"systems/sw5e/icons/skills/red_12.jpg"} -{"_id":"alUqO6c6OEKFQJdb","name":"Invocation: Armor of Shadows","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.CKZTpZlxj7hjjo2H]{Mage Armor} on yourself at will, without expending a power slot or material components.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":8,"units":"hour"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":8}},"img":"systems/sw5e/icons/skills/violet_15.jpg"} -{"_id":"aonJ2YjkqkYB9WYB","name":"Magical Secrets","permission":{"default":0},"type":"feat","data":{"description":{"value":"

By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines.

Choose two powers from any class, including this one. A power you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.

The chosen powers count as bard powers for you and are included in the number in the Powers Known column of the Bard table.

You learn two additional powers from any class at 14th level and again at 18th level.

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Bard 10","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":221}},"img":"systems/sw5e/icons/skills/yellow_41.jpg"} -{"_id":"ax8M0X0q1GGWM26j","name":"Martial Archetype","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.

","chat":"","unidentified":""},"source":"PHB pg. 72","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Fighter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/yellow_37.jpg"} -{"_id":"bbUEsCPTLzbbwK6o","name":"Invocation: Eldritch Sight","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.ghXTfe7sgCbgf1Q8]{Detect Magic} at will, without expending a power slot.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":10,"units":"minute"},"target":{"value":30,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":15}},"img":"systems/sw5e/icons/skills/shadow_11.jpg"} -{"_id":"bqWA7t9pDELbNRkp","name":"Purity of Body","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 10","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":175}},"img":"systems/sw5e/icons/skills/green_27.jpg"} -{"_id":"cVDEQo0ow1WJT7Wl","name":"Timeless Body (Druid)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.

","chat":"","unidentified":""},"source":"PHB pg. 67","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Druid 18","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":190}},"img":"systems/sw5e/icons/skills/mech_12.jpg"} -{"_id":"carGDhkIdoduTC0I","name":"Aura of Protection","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus.

 At 18th level, the range of this aura increases to 30 feet.

","chat":"","unidentified":""},"source":"PHB pg. 85","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":10,"long":30,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Paladin 6","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":167}},"img":"systems/sw5e/icons/skills/blue_13.jpg"} -{"_id":"cmRCL9T9UgRYOj1c","name":"Sorcerous Origins","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Choose a sorcerous origin, which describes the source of your innate magical power, such as Draconic Bloodline.

\n

Your choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.

","chat":"","unidentified":""},"source":"PHB pg. 101","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":82}},"img":"systems/sw5e/icons/skills/violet_17.jpg"} -{"_id":"dHu1yzIjD38BvGGd","name":"Remarkable Athlete","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn’t already use your proficiency bonus.

In addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.

","chat":"","unidentified":""},"source":"PHB pg. 72","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Champion 7","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":120}},"img":"systems/sw5e/icons/skills/armor_01.jpg"} -{"_id":"dTSV0xZMpY5CxkRk","name":"Invocation: Sign of Ill Omen","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.pO4zGe5LmFIYqJiL]{Bestow Curse} once using a warlock power slot. You can't do so again until you finish a long rest.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"","scaling":"cha"},"requirements":"Warlock 5","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":5}},"img":"systems/sw5e/icons/skills/violet_20.jpg"} -{"_id":"dY9yrqkyEDuF0CG2","name":"Divine Health","permission":{"default":0},"type":"feat","data":{"description":{"value":"

By 3rd level, the divine magic flowing through you makes you immune to disease.

","chat":"","unidentified":""},"source":"PHB pg. 85","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Paladin 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":165}},"img":"systems/sw5e/icons/skills/green_19.jpg"} -{"_id":"e0uTcFPpgxjIyUW9","name":"Arcane Recovery","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You have learned to regain some of your magical energy by studying your powerbook. Once per day when you finish a short rest, you can choose expended power slots to recover. The power slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.

For example, if you're a 4th-level wizard, you can recover up to two levels worth of power slots. You can recover either a 2nd-level power slot or two 1st-level power slots.

","chat":"","unidentified":""},"source":"PHB pg. 115","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"lr","type":""},"ability":"","actionType":"util","attackBonus":0,"chatFlavor":"The wizard can recover this number worth of powers slots (of 5th-level or lower):","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"ceil(@classes.wizard.levels/2)","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":45}},"img":"systems/sw5e/icons/skills/green_11.jpg"} -{"name":"Bonus Proficiencies (College of Lore)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":""},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"College of Lore 3","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/yellow_36.jpg","_id":"e9ytGikyLFgwZ5wi"} -{"_id":"eNvpIaSnJUdF8fHl","name":"Invocation: Beguiling Influence","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You gain proficiency in the Deception and Persuasion skills.

","chat":"","unidentified":""},"source":"PHB pg. 110","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":25}},"img":"systems/sw5e/icons/skills/light_07.jpg"} -{"_id":"eVXqHn0ojWrEuYGU","name":"Divine Intervention","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great. 

Imploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric power or cleric domain power would be appropriate.

If your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest. 

At 20th level, your call for intervention succeeds automatically, no roll required.

","chat":"","unidentified":""},"source":"PHB pg. 59","activation":{"type":"action","cost":1,"condition":"Your need must be great..."},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"util","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"1d100","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Cleric 10","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":212}},"img":"systems/sw5e/icons/skills/light_03.jpg"} -{"_id":"evEWCpE5MYgr5RRW","name":"Potent Cantrip","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.

","chat":"","unidentified":""},"source":"PHB pg. 117","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"School of Evocation 6","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":61}},"img":"systems/sw5e/icons/skills/fire_09.jpg"} -{"_id":"ezWijmCnlnQ9ZRX2","name":"Jack of All Trades","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Bard 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":222}},"img":"systems/sw5e/icons/skills/mech_8.jpg"} -{"_id":"fXa0DMhoVLtbBu9l","name":"Metamagic: Subtle Power","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you cast a power, you can spend 1 sorcery point to cast it without any somatic or verbal components.

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":80}},"img":"systems/sw5e/icons/skills/blue_20.jpg"} -{"_id":"fbExzwNwEAl2kW9c","name":"Fighting Style","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

You adopt a particular style of fighting as your specialty. Choose one of the following options from the appropriate class list. You can't take a Fighting Style option more than once, even if you later get to choose again.

\n

Fighter Options

\n

@Compendium[sw5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}

\n

@Compendium[sw5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}

\n

@Compendium[sw5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}

\n

@Compendium[sw5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}

\n

@Compendium[sw5e.classfeatures.06NVMYf58Z76O85O]{Protection}

\n

@Compendium[sw5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}

\n

Paladin Options

\n

@Compendium[sw5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}

\n

@Compendium[sw5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}

\n

@Compendium[sw5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}

\n

@Compendium[sw5e.classfeatures.06NVMYf58Z76O85O]{Protection}

\n

Ranger Options

\n

@Compendium[sw5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}

\n

@Compendium[sw5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}

\n

@Compendium[sw5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}

\n

@Compendium[sw5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}

","chat":"","unidentified":""},"source":"PHB pg. 72; 84; 91","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Fighter 1, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"sort":500001,"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/weapon_22.jpg"} -{"_id":"fjsBk7zxoAbLf8ZI","name":"Blindsense","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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.

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 14","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":150}},"img":"systems/sw5e/icons/skills/shadow_12.jpg"} -{"_id":"gDH8PMrKvLHaNmEI","name":"Timeless Body (Monk)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can’t be aged magically. You can still die of old age, however. In addition, you no longer need food or water.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 15","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":172}},"img":"systems/sw5e/icons/skills/mech_12.jpg"} -{"_id":"gFjxo01hAN4c9hDG","name":"Invocation: Whispers of the Grave","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.I2LUSF5ogc7Bj62e]{Speak with Dead} at will, without expending a power slot.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":10,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":10,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 9","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":7}},"img":"systems/sw5e/icons/skills/affliction_08.jpg"} -{"_id":"ga3dt2zrCn2MHK8R","name":"Fast Hands","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 3rd level, you can use the bonus action granted by your @Compendium[sw5e.classfeatures.01pcLg6PRu5zGrsb]{Cunning Action} to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.

","chat":"","unidentified":""},"source":"PHB pg. 97","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"touch"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Thief 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":65}},"img":"systems/sw5e/icons/skills/gray_05.jpg"} -{"name":"Powercasting (Wizard)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

As a student of arcane magic, you have a powerbook containing powers that show the first glimmerings of your true power.

\n

Cantrips

\n

At 1st level, you know three cantrips of your choice from the wizard power list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.

\n

Powerbook

\n

At 1st level, you have a powerbook containing six 1stlevel wizard powers of your choice. Your powerbook is the repository of the wizard powers you know, except your cantrips, which are fixed in your mind.

\n

Preparing and Casting Powers

\n

The Wizard table shows how many power slots you have to cast your powers of 1st level and higher. To cast one of these powers, you must expend a slot of the power’s level or higher. You regain all expended power slots when you finish a long rest.

\n

You prepare the list of wizard powers that are available for you to cast. To do so, choose a number of wizard powers from your powerbook equal to your Intelligence modifier + your wizard level (minimum of one power). The powers must be of a level for which you have power slots.

\n

For example, if you’re a 3rd-level wizard, you have four 1st-level and two 2nd-level power slots. With an Intelligence of 16, your list of prepared powers can include six powers of 1st or 2nd level, in any combination, chosen from your powerbook. If you prepare the 1st-level power magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the power doesn’t remove it from your list of prepared powers.

\n

You can change your list of prepared powers when you finish a long rest. Preparing a new list of wizard powers requires time spent studying your powerbook and memorizing the incantations and gestures you must make to cast the power: at least 1 minute per power level for each power on your list.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelCantrips Known—Power Slots per Power Level—
1st2nd3rd4th5th6th7th8th9th
1st32--------
2nd33--------
3rd342-------
4th443-------
5th4432------
6th4433------
7th44331-----
8th44332-----
9th443331----
10th543332----
11th5433321---
12th5433321---
13th54333211--
14th54333211--
15th543332111-
16th543332111-
17th5433321111
18th5433331111
19th5433332111
20th5433332211
\n

Powercasting Ability

\n

Intelligence is your powercasting ability for your wizard powers, since you learn your powers through dedicated study and memorization. You use your Intelligence whenever a power refers to your powercasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard power you cast and when making an attack roll with one.

\n

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

\n

Power attack modifier = your proficiency bonus + your Intelligence modifier

\n

Ritual Casting

\n

You can cast a wizard power as a ritual if that power has the ritual tag and you have the power in your powerbook. You don’t need to have the power prepared.

\n

Powercasting Focus

\n

You can use an arcane focus as a powercasting focus for your wizard powers.

\n

Learning Powers of 1st Level and Higher

\n

Each time you gain a wizard level, you can add two wizard powers of your choice to your powerbook for free. Each of these powers must be of a level for which you have power slots, as shown on the Wizard table. On your adventures, you might find other powers that you can add to your powerbook (see the “Your Powerbook” sidebar).

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Wizard 1","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/fire_06.jpg","_id":"gbNo5eVPaqr8IVKL"} -{"_id":"h1gM8SH3BNRtFevE","name":"Ki: Quivering Palm","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 17th level, you gain the ability to set up lethal vibrations in someone’s body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.

You can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.

","chat":"","unidentified":""},"source":"PHB pg. 80","activation":{"type":"action","cost":1,"condition":"Only ending the vibrations harmfully requires an action."},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["10d10","necrotic"]],"versatile":""},"formula":"","save":{"ability":"con","dc":null,"value":"con","scaling":"wis"},"requirements":"Way of the Open Hand 17","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":114}},"img":"systems/sw5e/icons/skills/violet_20.jpg"} -{"_id":"hCop9uJrWhF1QPb4","name":"Fighting Style: Dueling","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.

","chat":"","unidentified":""},"source":"PHB pg. 72; 73; 84; 91","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":196}},"img":"systems/sw5e/icons/skills/weapon_01.jpg"} -{"_id":"hEymt45rICi4f9eL","name":"Channel Divinity: Preserve Life","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 2nd level, you can use your Channel Divinity to heal the badly injured. 

As an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level.

Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.

","chat":"","unidentified":""},"source":"PHB pg. 60","activation":{"type":"action","cost":1,"condition":"The target cannot be Undead or a Construct"},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["5* @classes.cleric.levels","healing"]],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Life Domain 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":129}},"img":"systems/sw5e/icons/skills/light_03.jpg"} -{"_id":"he8RpPXwSl2lVSIk","name":"Song of Rest","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest.

\n

If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points. 

\n

The extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.

\n

**Foundry note: Note the healing roll is set to the base default of 1d6. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d6","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Bard 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":220}},"img":"systems/sw5e/icons/skills/green_19.jpg"} -{"name":"Bardic Inspiration","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time. 

\n

You can use this feature a number of times equal to your Charisma modifier (a minimum of once). 

\n

You regain any expended uses when you finish a long rest. 

\n

Your Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.

\n

**Foundry note: Note the Other Formula is set to the base default of 1d6 and limited uses is set to the minimum of 1. Additionally, recovery is set to long rest (for levels before @Compendium[sw5e.classfeatures.3VDZGs5Ug3hIE322]{Font of Inspiration} is gained). Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 53","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":10,"units":"minute"},"target":{"value":1,"units":"","type":"creature"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"util","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"1d6","save":{"ability":"","dc":null,"scaling":"power","value":""},"requirements":"Bard 1","recharge":{"value":null,"charged":false},"featType":{"value":"ability","_deprecated":true,"type":"String","label":"Feat Type"},"time":{"value":"","_deprecated":true},"damageType":{"value":"","_deprecated":true}},"flags":{"entityorder":{"order":225}},"img":"systems/sw5e/icons/skills/yellow_08.jpg","_id":"hpLNiGq7y67d2EHA"} -{"name":"Powercasting (Druid)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

Drawing on the divine essence of nature itself, you can cast powers to shape that essence to your will.

\n

Cantrips

\n

At 1st level, you know two cantrips of your choice from the druid power list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.

\n

Preparing and Casting Powers

\n

The Druid table shows how many power slots you have to cast your powers of 1st level and higher. To cast one of these druid powers, you must expend a slot of the power’s level or higher. You regain all expended power slots when you finish a long rest.

\n

You prepare the list of druid powers that are available for you to cast, choosing from the druid power list. When you do so, choose a number of druid powers equal to your Wisdom modifier + your druid level (minimum of one power). The powers must be of a level for which you have power slots.

\n

For example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level power slots. With a Wisdom of 16, your list of prepared powers can include six powers of 1st or 2nd level, in any combination. If you prepare the 1st-level power cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the power doesn’t remove it from your list of prepared powers.

\n

You can also change your list of prepared powers when you finish a long rest. Preparing a new list of druid powers requires time spent in prayer and meditation: at least 1 minute per power level for each power on your list.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelCantrips Known-Power Slots per Power Level-
1st2nd3rd4th5th6th7th8th9th
1st22--------
2nd23--------
3rd242-------
4th343-------
5th3432------
6th3433------
7th34331-----
8th34332-----
9th343331----
10th443332----
11th4433321---
12th4433321---
13th44333211--
14th44333211--
15th443332111-
16th443332111-
17th4433321111
18th4433331111
19th4433332111
20th4433332211
\n

Powercasting Ability

\n

Wisdom is your powercasting ability for your druid powers, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a power refers to your powercasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid power you cast and when making an attack roll with one.

\n

Power save DC = 8 + your proficiency bonus + your Wisdom modifier

\n

Power attack modifier = your proficiency bonus + your Wisdom modifier

\n

Ritual Casting

\n

You can cast a druid power as a ritual if that power has the ritual tag and you have the power prepared.

\n

Powercasting Focus

\n

You can use a druidic focus (see @Compendium[sw5e.rules.bogWrnJqoNlBd0O8]{Adventuring Gear}) as a powercasting focus for your druid powers.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Druid 1","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/green_09.jpg","_id":"i6tPm3FNK13Ftc9v"} -{"_id":"iQxLNydNLlCHNKbp","name":"Open Hand Technique","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own.

\n

Whenever you hit a creature with one of the attacks granted by your @Compendium[world.class-features-srd-v2.5MwNlVZK7m6VolOH]{Ki: Flurry of Blows}, you can impose one of the following effects on that target:

\n","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Way of the Open Hand 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":115}},"img":"systems/sw5e/icons/skills/violet_28.jpg"} -{"_id":"id0gmGvzNZBEdzbx","name":"Invocation: Fiendish Vigor","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.7e3QXF10hLNDEdr6]{False Life} on yourself at will as a 1st-level power, without expending a power slot or material components.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"hour"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d4 +4","temphp"]],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":27}},"img":"systems/sw5e/icons/skills/affliction_07.jpg"} -{"name":"Powercasting (Paladin)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast powers as a cleric does.

\n

Preparing and Casting Powers

\n

The Paladin table shows how many power slots you have to cast your powers. To cast one of your paladin powers of 1st level or higher, you must expend a slot of the power’s level or higher. You regain all expended power slots when you finish a long rest.

\n

You prepare the list of paladin powers that are available for you to cast, choosing from the paladin power list. When you do so, choose a number of paladin powers equal to your Charisma modifier + half your paladin level, rounded down (minimum of one power). The powers must be of a level for which you have power slots.

\n

For example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level power slots. With a Charisma of 14, your list of prepared powers can include four powers of 1st or 2nd level, in any combination. If you prepare the 1st-level power cure wounds, you can cast it using a 1st-level or a 2ndlevel slot. Casting the power doesn’t remove it from your list of prepared powers.

\n

You can change your list of prepared powers when you finish a long rest. Preparing a new list of paladin powers requires time spent in prayer and meditation: at least 1 minute per power level for each power on your list.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Level-  Power Slots per Power Level  -
1st2nd3rd4th5th
1st-----
2nd2----
3rd3----
4th3----
5th42---
6th42---
7th43---
8th43---
9th432--
10th432--
11th433--
12th433--
13th4331-
14th4331-
15th4332-
16th4332-
17th43331
18th43331
19th43332
20th43332
\n

Powercasting Ability

\n

Charisma is your powercasting ability for your paladin powers, since their power derives from the strength of your convictions. You use your Charisma whenever a power refers to your powercasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin power you cast and when making an attack roll with one.

\n

Power save DC = 8 + your proficiency bonus + your Charisma modifier

\n

Power attack modifier = your proficiency bonus + your Charisma modifier

\n

Powercasting Focus

\n

You can use a holy symbol as a powercasting focus for your paladin powers.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Paladin 1","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/light_06.jpg","_id":"ihoQHsmVZlyDbPhX"} -{"_id":"ip4bvmGoz3qkoqes","name":"Archdruid","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 20th level, you can use your @Compendium[sw5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape} an unlimited number of times. 

\n

Additionally, you can ignore the verbal and somatic components of your druid powers, as well as any material components that lack a cost and aren't consumed by a power.

\n

You gain this benefit in both your normal shape and your beast shape from Wild Shape.

","chat":"","unidentified":""},"source":"PHB pg. 67","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Druid 20","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":193}},"img":"systems/sw5e/icons/skills/green_15.jpg"} -{"_id":"ipG5yx1tRNmeJfSH","name":"Survivor","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You attain the pinnacle of resilience in battle.

At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left.

You don’t gain this benefit if you have 0 hit points.

","chat":"","unidentified":""},"source":"PHB pg. 73","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"con","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["5 + @mod","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Champion 18","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":122}},"img":"systems/sw5e/icons/skills/red_15.jpg"} -{"_id":"jF8AFfEMICIJnAkR","name":"Disciple of Life","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 1st level, your healing powers are more effective.

\n

Whenever you use a power of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the power's level.

","chat":"","unidentified":""},"source":"PHB pg. 60","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Life Domain 1","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":130}},"img":"systems/sw5e/icons/skills/light_08.jpg"} -{"_id":"jTXHaK0vvT5DV3uO","name":"Otherworldly Patron","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 1st level, you have struck a bargain with an otherworldly being, such as the Fiend. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.

","chat":"","unidentified":""},"source":"PHB pg. 107, 109","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 1","recharge":{"value":null,"charged":false},"consume":{"type":"","target":null,"amount":null}},"sort":600001,"flags":{"entityorder":{"order":38},"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/affliction_05.jpg"} -{"_id":"jVU4AgqfrFaqgXns","name":"Primal Champion","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 20","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":205}},"img":"systems/sw5e/icons/skills/green_22.jpg"} -{"_id":"k5DU0mMuYVHejiqz","name":"Invocation: Misty Visions","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.BrBZdCCrJRIVg7YX]{Silent Image} at will, without expending a power slot or material components.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":10,"units":"minute"},"target":{"value":15,"units":"ft","type":"cube"},"range":{"value":60,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"abil","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":23}},"img":"systems/sw5e/icons/skills/violet_14.jpg"} -{"_id":"k5M8gsl7MMcdjOjs","name":"Invocation: Voice of the Chain Master","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 3, Pact of the Chain","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":3}},"img":"systems/sw5e/icons/skills/emerald_07.jpg"} -{"_id":"kYJsED0rqqqUcgKz","name":"Additional Fighting Style","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

Choose a second fighting style class feature from the following:

\n

@Compendium[sw5e.classfeatures.8YwPFv3UAPjWVDNf]{Archery}

\n

@Compendium[sw5e.classfeatures.zSlV0O2rQMdoq6pB]{Defense}

\n

@Compendium[sw5e.classfeatures.hCop9uJrWhF1QPb4]{Dueling}

\n

@Compendium[sw5e.classfeatures.3Nc6u9pyStByuJsm]{Great Weapon Fighting}

\n

@Compendium[sw5e.classfeatures.06NVMYf58Z76O85O]{Protection}

\n

@Compendium[sw5e.classfeatures.mHcSjcHJ8oZu3hkb]{Two Weapon Fighting}

\n

The choice must be different to the one made at level 1.

\n

You can drag your choice from the above onto your character sheet and it will automatically update.

","chat":"","unidentified":""},"source":"PHB pg. 73","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Champion 10","recharge":{"value":null,"charged":false},"consume":{"type":"","target":null,"amount":null},"featType":{"value":"passive","_deprecated":true,"type":"String","label":"Feat Type"},"time":{"value":"","_deprecated":true},"damageType":{"value":"","_deprecated":true}},"folder":"tFOfAj4cr2LN77j7","sort":100001,"flags":{"entityorder":{"order":118}},"img":"systems/sw5e/icons/skills/weapon_27.jpg"} -{"_id":"kaHcUGiwi8AtfZIm","name":"Primeval Awareness","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 3rd level, you can use your action and expend one ranger power slot to focus your awareness on the region around you. For 1 minute per level of the power slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.

","chat":"","unidentified":""},"source":"PHB pg. 92","activation":{"type":"action","cost":1,"condition":"It also expends a power slot; the slot level dictates duration."},"duration":{"value":null,"units":"spec"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":1,"long":6,"units":"mi"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Ranger 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":153}},"img":"systems/sw5e/icons/skills/violet_02.jpg"} -{"_id":"knDZR4l4QfLTKinm","name":"Mystic Arcanum (8th-Level Power)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

Choose one 8th-level power from the warlock power list as an additional arcanum. 

\n

You can cast your arcanum power once without expending a power slot. You must finish a long rest before you can do so again. 

\n

At higher levels, you gain more warlock powers of your choice that can be cast in this way: one 9th-level power at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.

\n

If you wish, manually edit this entry and make a note of your choice here:

\n","chat":"","unidentified":""},"source":"PHB pg. 108","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power","value":""},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":36}},"img":"systems/sw5e/icons/items/inventory/book-grey.jpg"} -{"_id":"l50hjTxO2r0iecKw","name":"Martial Arts","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don’t have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:

\n\n

Certain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.

","chat":"","unidentified":""},"source":"PHB pg. 78","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":5,"units":"ft","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"dex","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":178}},"img":"systems/sw5e/icons/skills/yellow_08.jpg"} -{"_id":"l7W6JB9yWLLLtQKP","name":"Multiattack: Volley","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon’s range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":20,"units":"ft","type":"square"},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Hunter 11","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/weapon_03.jpg"} -{"_id":"l8tUhZ5Pecm9wz7I","name":"Persistent Rage","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 15th level, your @Compendium[sw5e.classfeatures.VoR0SUrNX5EJVPIO]{Rage} is so fierce that it ends early only if you fall unconscious or if you choose to end it.

","chat":"","unidentified":""},"source":"PHB pg. 49","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 15","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":206}},"img":"systems/sw5e/icons/skills/red_01.jpg"} -{"_id":"lEZKbWaVrSljRa9n","name":"Invocation: Eyes of the Rune Keeper","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can read all writing.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":9}},"img":"systems/sw5e/icons/skills/yellow_41.jpg"} -{"name":"Bonus Cantrip (Druid)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Circle of the Land 2","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/powers/vines-acid-1.jpg","_id":"lT8GsPOPgRzDC3QJ"} -{"_id":"laVHAIOKIsUeezWd","name":"Superior Hunter's Defense: Evasion","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt power, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail. 

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Hunter 15","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":107}},"img":"systems/sw5e/icons/skills/yellow_28.jpg"} -{"_id":"lxfdjLer3uKjyZqU","name":"Invocation: Master of Myriad Forms","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.8RTDOt80u8aBv9qx]{Alter Self} at will, without expending a power slot.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"hour"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":30}},"img":"systems/sw5e/icons/skills/beast_01.jpg"} -{"_id":"mHcSjcHJ8oZu3hkb","name":"Fighting Style: Two Weapon Fighting","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.

","chat":"","unidentified":""},"source":"PHB pg. 72; 73; 91","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Fighter 1, Champion 10, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":199}},"img":"systems/sw5e/icons/skills/weapon_28.jpg"} -{"_id":"mQNPg89YIs7g5tG4","name":"Perfect Self","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 20","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":176}},"img":"systems/sw5e/icons/skills/violet_03.jpg"} -{"_id":"myBu3zi5eYvQIcuy","name":"Additional Magical Secrets","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 6th level, you learn two powers of your choice from any class. A power you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen powers count as bard powers for you but don't count against the number of bard powers you know.

","chat":"","unidentified":""},"source":"PHB pg. 55","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"College of Lore 6","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":134}},"img":"systems/sw5e/icons/skills/yellow_41.jpg"} -{"_id":"mzweVbnsJPQiVkAe","name":"Deflect Missiles","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.

\n

If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 @Compendium[sw5e.classfeatures.10b6z2W1txNkrGP7]{Ki} point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.

\n

**Foundry note: Note the reduce damage roll is calculated by the Other Formula. Additionally, the damage die for the thrown attack is the base default of 1d4. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 78","activation":{"type":"reaction","cost":1,"condition":"Can be thrown back using 1 ki point "},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":20,"long":60,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"dex","actionType":"rwak","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d4 + @mod",""]],"versatile":"","value":""},"formula":"1d10 + @mod + @classes.monk.levels","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":188}},"img":"systems/sw5e/icons/skills/arrow_06.jpg"} -{"_id":"nTjmWbyHweXuIqwc","name":"Second Wind","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level.

Once you use this feature, you must finish a short or long rest before you can use it again.

","chat":"","unidentified":""},"source":"PHB pg. 72","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":0,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"sr"},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["1d10 + @classes.fighter.levels","healing"]],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Fighter 1","recharge":{"value":0,"charged":false}},"folder":null,"sort":200000,"flags":{},"img":"systems/sw5e/icons/skills/blood_04.jpg"} -{"_id":"nUrZDi6QN1YjwAr6","name":"Signature Powers (First Power)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you reach 20th level, you gain mastery over two powerful powers and can cast them with little effort. Choose two 3rd-level wizard powers in your powerbook as your signature powers. You always have these powers prepared, they don't count against the number of powers you have prepared, and you can cast each of them once at 3rd level without expending a power slot. When you do so, you can't do so again until you finish a short or long rest. 

\n

If you want to cast either power at a higher level, you must expend a power slot as normal.

\n

If you wish, manually edit this entry and make a note of your first choice here:

\n","chat":"","unidentified":""},"source":"PHB pg. 115","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"sr","type":"sr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Wizard 20","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":53}},"img":"systems/sw5e/icons/skills/yellow_38.jpg"} -{"_id":"nViGf6bZ6DQAJhkw","name":"Metamagic: Quickened Power","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

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

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":""},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/mech_12.jpg"} -{"_id":"nahSkBO6LH4HkpaT","name":"Aura of Courage","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.

At 18th level, the range of this aura increases to 30 feet.

","chat":"","unidentified":""},"source":"PHB pg. 85","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":10,"long":30,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Paladin 10","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":168}},"img":"systems/sw5e/icons/skills/yellow_13.jpg"} -{"_id":"ohwfuwnvuoBWlSQr","name":"Thieves' Cant","permission":{"default":0},"type":"feat","data":{"description":{"value":"

During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly. 

In addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.

","chat":"","unidentified":""},"source":"PHB pg. 96","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 1","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":140}},"img":"systems/sw5e/icons/skills/yellow_41.jpg"} -{"_id":"olAqNsUTIef9x8xC","name":"Sacred Oath","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose an oath, such as the Oath of Devotion.

\n

Your choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath powers and the Channel Divinity feature.

\n

Oath Powers

\n

Each oath has a list of associated powers. You gain access to these powers at the levels specified in the oath description. Once you gain access to an oath power, you always have it prepared. Oath powers don’t count against the number of powers you can prepare each day.

\n

If you gain an oath power that doesn't appear on the paladin power list, the power is nonetheless a paladin power for you.

\n

Channel Divinity

\n

@Compendium[sw5e.classfeatures.8M7uOPhbTxoxxJSo]{Channel Divinity}

","chat":"","unidentified":""},"source":"PHB pg. 85, 86","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Paladin 3","recharge":{"value":null,"charged":false},"consume":{"type":"","target":null,"amount":null}},"sort":700001,"flags":{"_sheetTab":"description","entityorder":{"order":160},"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/red_26.jpg"} -{"name":"Powercasting (Sorcerer)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your powers.

\n

Cantrips

\n

At 1st level, you know four cantrips of your choice from the sorcerer power list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.

\n

Power Slots

\n

The Sorcerer table shows how many power slots you have to cast your powers of 1st level and higher. To cast one of these sorcerer powers, you must expend a slot of the power’s level or higher. You regain all expended power slots when you finish a long rest.

\n

For example, if you know the 1st-level power burning hands and have a 1st-level and a 2nd-level power slot available, you can cast burning hands using either slot.

\n

Powers Known of 1st Level and Higher

\n

You know two 1st-level powers of your choice from the sorcerer power list.

\n

The Powers Known column of the Sorcerer table shows when you learn more sorcerer powers of your choice. Each of these powers must be of a level for which you have power slots. For instance, when you reach 3rd level in this class, you can learn one new power of 1st or 2nd level.

\n

Additionally, when you gain a level in this class, you can choose one of the sorcerer powers you know and replace it with another power from the sorcerer power list, which also must be of a level for which you have power slots.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelCantrips KnownPowers Known—Power Slots per Power Level—
1st2nd3rd4th5th6th7th8th9th
1st422--------
2nd433--------
3rd4442-------
4th5543-------
5th56432------
6th57433------
7th584331-----
8th594332-----
9th51043331----
10th61143332----
11th612433321---
12th612433321---
13th6134333211--
14th6134333211--
15th61443332111-
16th61443332111-
17th615433321111
18th615433331111
19th615433332111
20th615433332211
\n

Powercasting Ability

\n

Charisma is your powercasting ability for your sorcerer powers, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a power refers to your powercasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer power you cast and when making an attack roll with one.

\n

Power save DC = 8 + your proficiency bonus + your Charisma modifier

\n

Power attack modifier = your proficiency bonus + your Charisma modifier

\n

Powercasting Focus

\n

You can use an arcane focus as a powercasting focus for your sorcerer powers.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Sorcerer 1","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/violet_28.jpg","_id":"oygRF3ZjTv2T7z0Y"} -{"_id":"pAQMJU5R9SGUmzHU","name":"Defensive Tactics: Escape the Horde","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Opportunity attacks against you are made with disadvantage. 

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":99}},"img":"systems/sw5e/icons/skills/nature_08.jpg"} -{"_id":"pJADgAxxefgcATWr","name":"Invocation: Thirsting Blade","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 5, Pact of the Blade","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":6}},"img":"systems/sw5e/icons/skills/red_13.jpg"} -{"_id":"pquwueEMweRhiWaq","name":"Peerless Skill","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 14th level, when you make an ability check, you can expend one use of @Compendium[sw5e.classfeatures.EeGafsa17CapsH2j]{Bardic Inspiraton}.

\n

Roll a Bardic Inspiration die and add the number rolled to your ability check.

\n

You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.

","chat":"","unidentified":""},"source":"PHB pg. 54","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"College of Lore 14","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":133}},"img":"systems/sw5e/icons/skills/yellow_09.jpg"} -{"_id":"pvRc6GAu1ok6zihC","name":"Ki: Stunning Strike","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 5th level, you can interfere with the flow of ki in an opponent’s body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.

","chat":"","unidentified":""},"source":"PHB pg. 79","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"con","dc":null,"value":"con","scaling":"wis"},"requirements":"Monk 5","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":179}},"img":"systems/sw5e/icons/skills/ice_10.jpg"} -{"_id":"q9g1MLXuLZyxjQMg","name":"Extra Attack (Fighter)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can attack twice, instead of once, whenever you take the Attack action on your turn.

The number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.

","chat":"","unidentified":""},"source":"PHB pg. 72","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Fighter 5","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":217}},"img":"systems/sw5e/icons/skills/weapon_08.jpg"} -{"_id":"r01WtcxTg4yTHm9m","name":"Invocation: Eldritch Spear","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you cast @Compendium[sw5e.powers.Z9p1vezIn95jw1Yw]{Eldritch Blast}, its range is 300 feet.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2, Eldritch Blast","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":16}},"img":"systems/sw5e/icons/skills/blue_14.jpg"} -{"_id":"r0unvWK0lPsDthDx","name":"Hide in Plain Sight","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage. 

Once you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.

","chat":"","unidentified":""},"source":"PHB pg. 92","activation":{"type":"minute","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":""},"ability":"dex","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Ranger 10","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":156}},"img":"systems/sw5e/icons/skills/green_18.jpg"} -{"_id":"r91UIgwFdHwkXdia","name":"Channel Divinity: Turn Undead","permission":{"default":0},"type":"feat","data":{"description":{"value":"

As an action, you present your holy symbol and speak a prayer censuring the undead.

Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage. 

A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions.

For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.

","chat":"","unidentified":""},"source":"PHB pg. 59","activation":{"type":"action","cost":1,"condition":"Targets must be able to see or hear you."},"duration":{"value":1,"units":"minute"},"target":{"value":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"wis","scaling":"wis"},"requirements":"Cleric 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":215}},"img":"systems/sw5e/icons/skills/yellow_19.jpg"} -{"_id":"rBDZLatuoolT2FUW","name":"Tranquility","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a @Compendium[sw5e.powers.gvdA9nPuWLck4tBl]{Sanctuary} power that lasts until the start of your next long rest (the power can end early as normal). The saving throw DC for the power equals 8 + your Wisdom modifier + your proficiency bonus.

","chat":"","unidentified":""},"source":"PHB pg. 80","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"wis","dc":null,"value":"wis","scaling":"wis"},"requirements":"Way of the Open Hand 11","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":117}},"img":"systems/sw5e/icons/skills/blue_09.jpg"} -{"_id":"rQhWDaMHMn7iU4f2","name":"Stroke of Luck","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 20th level, you have an uncanny knack for succeeding when you need to. 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. 

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

","chat":"","unidentified":""},"source":"PHB pg. 97","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"sr","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Rogue 20","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":141}},"img":"systems/sw5e/icons/skills/yellow_09.jpg"} -{"_id":"rdBPd6CwqXT64iJM","name":"Invocation: Repelling Blast","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you hit a creature with @Compendium[sw5e.powers.Z9p1vezIn95jw1Yw]{Eldritch Blast}, you can push the creature up to 10 feet away from you in a straight line.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 2, Eldritch Blast","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":31}},"img":"systems/sw5e/icons/skills/yellow_18.jpg"} -{"_id":"rhbwDZ9XNTmdkX2u","name":"Invocation: Thief of Five Fates","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.95K2aUhAGV9qXjnf]{Bane} once using a warlock power slot. You can't do so again until you finish a long rest.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":3,"units":"","type":"creature"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"cha","dc":null,"value":"","scaling":"cha"},"requirements":"Warlock 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":33}},"img":"systems/sw5e/icons/skills/affliction_11.jpg"} -{"_id":"rtpQdX77dYWbDIOH","name":"Monastic Tradition","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you reach 3rd level, you commit yourself to a monastic tradition, such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.

","chat":"","unidentified":""},"source":"PHB pg. 78","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":177}},"img":"systems/sw5e/icons/skills/nature_01.jpg"} -{"name":"Ability Score Improvement","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

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.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Barbarian 4, Bard 4, Cleric 4, Druid 4, Monk 4, Paladin 4, Ranger 4, Sorcerer 4, Warlock 4, Wizard 4","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/blue_10.jpg","_id":"s0Cc2zcX0JzIgam5"} -{"name":"Ability Score Improvement (Fighter)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

When you reach 4th level, and again at 6th, 8th, 12th, 14th, 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.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Fighter 4","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/weapon_26.jpg","_id":"sPy2OLoN7JaAcMl4"} -{"_id":"slelvrm83v9UAKZU","name":"Defensive Tactics: Multiattack Defense","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":100}},"img":"systems/sw5e/icons/skills/blue_10.jpg"} -{"_id":"snsjxGfmzWfZR5Nh","name":"Invocation: Witch Sight","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":10}},"img":"systems/sw5e/icons/skills/violet_09.jpg"} -{"_id":"swK0r5TOIxredxWS","name":"Wild Shape","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest. 

\n

Your druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.

\n

Beast Shapes

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelMax. CRLimitationsExample
2nd1/4No flying or swimming speed@Compendium[sw5e.monsters.yawTeS8u2FCfzzZH]{Wolf}
4th1/2No flying speed@Compendium[sw5e.monsters.8aCTKP5qaBPFOqxM]{Crocodile}
8th1--@Compendium[sw5e.monsters.DBCCRXiLn6mIS8hX]{Giant Eagle}
\n

You can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die. 

\n

While you are transformed, the following rules apply:

\n","chat":"","unidentified":""},"source":"PHB pg. 66","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":"inst"},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":2,"max":2,"per":"sr","type":"sr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Druid 2","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":189}},"img":"systems/sw5e/icons/skills/green_13.jpg"} -{"_id":"tNG2qi9zhmXEkecA","name":"Metamagic: Heightened Power","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":78}},"img":"systems/sw5e/icons/skills/fire_11.jpg"} -{"_id":"tQxlKyAx9sgPrbgj","name":"Metamagic: Extended Power","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":77}},"img":"systems/sw5e/icons/skills/affliction_02.jpg"} -{"name":"Powercasting (Bard)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music. Your powers are part of your vast repertoire, magic that you can tune to different situations.

\n

Cantrips

\n

You know two cantrips of your choice from the bard power list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.

\n

Power Slots

\n

The Bard table shows how many power slots you have to cast your powers of 1st level and higher. To cast one of these powers, you must expend a slot of the power’s level or higher. You regain all expended power slots when you finish a long rest.

\n

For example, if you know the 1st-level power cure wounds and have a 1st-level and a 2nd-level power slot available, you can cast cure wounds using either slot.

\n

Powers Known of 1st Level and Higher

\n

You know four 1st-level powers of your choice from the bard power list.

\n

The Powers Known column of the Bard table shows when you learn more bard powers of your choice. Each of these powers must be of a level for which you have power slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new power of 1st or 2nd level.

\n

Additionally, when you gain a level in this class, you can choose one of the bard powers you know and replace it with another power from the bard power list, which also must be of a level for which you have power slots.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelCantrips KnownPowers Known—Power Slots per Power Level—
1st2nd3rd4th5th6th7th8th9th
1st242--------
2nd253--------
3rd2642-------
4th3743-------
5th38432------
6th39433------
7th3104331-----
8th3114332-----
9th31243331----
10th41443332----
11th415433321---
12th415433321---
13th4164333211--
14th4184333211--
15th41943332111-
16th41943332111-
17th420433321111
18th422433331111
19th422433332111
20th422433332211
\n

Powercasting Ability

\n

Charisma is your powercasting ability for your bard powers. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a power refers to your powercasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard power you cast and when making an attack roll with one.

\n

Power save DC = 8 + your proficiency bonus + your Charisma modifier

\n

Power attack modifier = your proficiency bonus + your Charisma modifier

\n

Ritual Casting

\n

You can cast any bard power you know as a ritual if that power has the ritual tag.

\n

Powercasting Focus

\n

You can use a musical instrument (see @Compendium[sw5e.rules.bogWrnJqoNlBd0O8]{Adventuring Gear}) as a powercasting focus for your bard powers.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Bard 1","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/yellow_29.jpg","_id":"u4NLajXETJhJU31v"} -{"_id":"u6Du2P9s81SWuGbi","name":"Druid Circle","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 2nd level, you choose to identify with a circle of druids, such as the Circle of the Land.

\n

Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.

","chat":"","unidentified":""},"source":"PHB pg. 67","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Druid 2","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":191}},"img":"systems/sw5e/icons/skills/nature_01.jpg"} -{"name":"Powercasting (Ranger)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

By the time you reach 2nd level, you have learned to use the magical essence of nature to cast powers, much as a druid does.

\n

Power Slots

\n

The Ranger table shows how many power slots you have to cast your powers of 1st level and higher. To cast one of these powers, you must expend a slot of the power’s level or higher. You regain all expended power slots when you finish a long rest.

\n

For example, if you know the 1st-level power animal friendship and have a 1st-level and a 2nd-level power slot available, you can cast animal friendship using either slot.

\n

Powers Known of 1st Level and Higher

\n

You know two 1st-level powers of your choice from the ranger power list.

\n

The Powers Known column of the Ranger table shows when you learn more ranger powers of your choice. Each of these powers must be of a level for which you have power slots. For instance, when you reach 5th level in this class, you can learn one new power of 1st or 2nd level.

\n

Additionally, when you gain a level in this class, you can choose one of the ranger powers you know and replace it with another power from the ranger power list, which also must be of a level for which you have power slots.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelPowers Known- Power Slots per Power Level -
1st2nd3rd4th5th
1st------
2nd22----
3rd33----
4th33----
5th442---
6th442---
7th543---
8th543---
9th6432--
10th6432--
11th7433--
12th7433--
13th84331-
14th84331-
15th94332-
16th94332-
17th1043331
18th1043331
19th1143332
20th1143332
\n

Powercasting Ability

\n

Wisdom is your powercasting ability for your ranger powers, since your magic draws on your attunement to nature. You use your Wisdom whenever a power refers to your powercasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger power you cast and when making an attack roll with one.

\n

Power save DC = 8 + your proficiency bonus + your Wisdom modifier

\n

Power attack modifier = your proficiency bonus + your Wisdom modifier

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Ranger 2","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/green_20.jpg","_id":"u6xV3Ki3TXRrD7zg"} -{"name":"Powercasting (Cleric)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

As a conduit for divine power, you can cast cleric powers.

\n

Cantrips

\n

At 1st level, you know three cantrips of your choice from the cleric power list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.

\n

Preparing and Casting Powers

\n

The Cleric table shows how many power slots you have to cast your powers of 1st level and higher. To cast one of these powers, you must expend a slot of the power’s level or higher. You regain all expended power slots when you finish a long rest.

\n

You prepare the list of cleric powers that are available for you to cast, choosing from the cleric power list. When you do so, choose a number of cleric powers equal to your Wisdom modifier + your cleric level (minimum of one power). The powers must be of a level for which you have power slots.

\n

For example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level power slots. With a Wisdom of 16, your list of prepared powers can include six powers of 1st or 2nd level, in any combination. If you prepare the 1st-level power cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the power doesn’t remove it from your list of prepared powers.

\n

You can change your list of prepared powers when you finish a long rest. Preparing a new list of cleric powers requires time spent in prayer and meditation: at least 1 minute per power level for each power on your list.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelCantrips Known—Power Slots per Power Level—
1st2nd3rd4th5th6th7th8th9th
1st32--------
2nd33--------
3rd342-------
4th443-------
5th4432------
6th4433------
7th44331-----
8th44332-----
9th443331----
10th543332----
11th5433321---
12th5433321---
13th54333211--
14th54333211--
15th543332111-
16th543332111-
17th5433321111
18th5433331111
19th5433332111
20th5433332211
\n

Powercasting Ability

\n

Wisdom is your powercasting ability for your cleric powers. The power of your powers comes from your devotion to your deity. You use your Wisdom whenever a cleric power refers to your powercasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric power you cast and when making an attack roll with one.

\n

Power save DC = 8 + your proficiency bonus + your Wisdom modifier

\n

Power attack modifier = your proficiency bonus + your Wisdom modifier

\n

Ritual Casting

\n

You can cast a cleric power as a ritual if that power has the ritual tag and you have the power prepared.

\n

Powercasting Focus

\n

You can use a holy symbol (see @Compendium[sw5e.rules.bogWrnJqoNlBd0O8]{Adventuring Gear}) as a powercasting focus for your cleric powers.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Cleric 1","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/light_04.jpg","_id":"v4gKwLhAq9vuqza7"} -{"name":"Ability Score Improvement (Rogue)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

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.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Rogue 4","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/violet_07.jpg","_id":"v7MxFuTAgOsmxZCD"} -{"_id":"vMxJQEKeK6WwZFaF","name":"Mystic Arcanum (9th-Level Power)","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

Choose one 9th-level power from the warlock power list as an additional arcanum. 

\n

You can cast your arcanum power once without expending a power slot. You must finish a long rest before you can do so again. 

\n

You regain all uses of your Mystic Arcanum when you finish a long rest.

\n

If you wish, manually edit this entry and make a note of your choice here:

\n","chat":"","unidentified":""},"source":"PHB pg. 108","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power","value":""},"requirements":"Warlock 17","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":36}},"img":"systems/sw5e/icons/items/inventory/book-grey.jpg"} -{"_id":"vt31lWAULygEl7yk","name":"Danger Sense","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 2nd level, you gain an uncanny sense of when things nearby aren't as they should be, giving you an edge when you dodge away from danger.

You have advantage on Dexterity saving throws against effects that you can see, such as traps and powers. To gain this benefit, you can’t be blinded, deafened, or incapacitated.

","chat":"","unidentified":""},"source":"PHB pg. 46","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Barbarian 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":210}},"img":"systems/sw5e/icons/skills/yellow_17.jpg"} -{"_id":"wKdRtFsvGfMKQHLY","name":"Natural Recovery","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature.

During a short rest, you choose expended power slots to recover. The power slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest. 

For example, when you are a 4th-level druid, you can recover up to two levels worth of power slots. You can recover either a 2nd-level slot or two 1st-level slots.

","chat":"","unidentified":""},"source":"PHB pg. 68","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"lr","type":""},"ability":"","actionType":"util","attackBonus":0,"chatFlavor":"The druid can recover this number worth of power slots (of 5th level or lower):","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"ceil(@classes.druid.levels/2)","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Circle of the Land 2","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":125}},"img":"systems/sw5e/icons/skills/green_22.jpg"} -{"name":"Hunter's Prey","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

At 3rd level, you gain one of the following features of your choice.

\n

@Compendium[sw5e.classfeatures.5gx1O0sxK08awEO9]{Colossus Slayer}

\n

@Compendium[sw5e.classfeatures.StfmqK1twVfukpa0]{Giant Killer}

\n

@Compendium[sw5e.classfeatures.C6sHdDGmCMo0cYHd]{Horde Breaker}

\n

You can drag your choice from the above onto your character sheet and it will automatically update.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Hunter 3","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/green_12.jpg","_id":"wrxIW5sDfmGr3u5s"} -{"_id":"x637K2Icp2ZFM1TB","name":"Divine Domain","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Choose one domain related to your deity, such as Life. Your choice grants you domain powers and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.

\n

Domain Powers

\n

Each domain has a list of powers—its domain powers—that you gain at the cleric levels noted in the domain description. Once you gain a domain power, you always have it prepared, and it doesn’t count against the number of powers you can prepare each day.

\n

If you have a domain power that doesn’t appear on the cleric power list, the power is nonetheless a cleric power for you.

","chat":"","unidentified":""},"source":"PHB pg. 58","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Cleric 1","recharge":{"value":null,"charged":false},"consume":{"type":"","target":null,"amount":null}},"sort":800001,"flags":{"entityorder":{"order":213},"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/blue_09.jpg"} -{"name":"Pact Magic","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

Your arcane research and the magic bestowed on you by your patron have given you facility with powers.

\n

Cantrips

\n

You know two cantrips of your choice from the warlock power list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.

\n

Power Slots

\n

The Warlock table shows how many power slots you have. The table also shows what the level of those slots is; all of your power slots are the same level. To cast one of your warlock powers of 1st level or higher, you must expend a power slot. You regain all expended power slots when you finish a short or long rest.

\n

For example, when you are 5th level, you have two 3rd-level power slots. To cast the 1st-level power thunderwave, you must spend one of those slots, and you cast it as a 3rd-level power.

\n

Powers Known of 1st Level and Higher

\n

At 1st level, you know two 1st-level powers of your choice from the warlock power list.

\n

The Powers Known column of the Warlock table shows when you learn more warlock powers of your choice of 1st level and higher. A power you choose must be of a level no higher than what’s shown in the table’s Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock power, which can be 1st, 2nd, or 3rd level.

\n

Additionally, when you gain a level in this class, you can choose one of the warlock powers you know and replace it with another power from the warlock power list, which also must be of a level for which you have power slots.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
LevelCantrips KnownPowers KnownPower SlotsSlot Level
1st2211st
2nd2321st
3rd2422nd
4th3522nd
5th3623rd
6th3723rd
7th3824th
8th3924th
9th31025th
10th41025th
11th41135th
12th41135th
13th41235th
14th41235th
15th41335th
16th41335th
17th41445th
18th41445th
19th41545th
20th41545th
\n

Powercasting Ability

\n

Charisma is your powercasting ability for your warlock powers, so you use your Charisma whenever a power refers to your powercasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock power you cast and when making an attack roll with one.

\n

Power save DC = 8 + your proficiency bonus + your Charisma modifier

\n

Power attack modifier = your proficiency bonus + your Charisma modifier

\n

Powercasting Focus

\n

You can use an arcane focus as a powercasting focus for your warlock powers.

","chat":"","unidentified":""},"source":"","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"consume":{"type":"","target":null,"amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Warlock 1","recharge":{"value":null,"charged":false}},"flags":{"exportSource":{"world":"srd-rules","system":"sw5e","coreVersion":"0.6.5","systemVersion":0.94}},"img":"systems/sw5e/icons/skills/blood_03.jpg","_id":"x6IJZwr6f0SGral7"} -{"_id":"x6eEZ9GUsuOcEa3G","name":"Elemental Affinity","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 6th level, when you cast a power that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that power. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":"1 sorcery point is also required if the resistance is desired."},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"cha","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["@mod",""]],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Draconic Bloodline 6","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":76}},"img":"systems/sw5e/icons/skills/ice_02.jpg"} -{"_id":"xF1VTcJ3AdkbTsdQ","name":"Action Surge","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible Bonus Action.

\n

Once you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.

\n

**Foundry note: Note the limited uses is set to the base default of 1 per short or long rest. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 72","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":0,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"sr","type":"sr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Fighter 2","recharge":{"value":0,"charged":false}},"folder":null,"sort":100000,"flags":{"_sheetTab":"details","entityorder":{"order":218}},"img":"systems/sw5e/icons/skills/red_01.jpg"} -{"_id":"xNN0JMKqlG4hKVYu","name":"Channel Divinity: Sacred Weapon","permission":{"default":0},"type":"feat","data":{"description":{"value":"

As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity.

For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.

You can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends. 

","chat":"","unidentified":""},"source":"PHB pg. 86","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"minute"},"target":{"value":null,"units":"","type":""},"range":{"value":20,"long":40,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Oath of Devotion 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":109}},"img":"systems/sw5e/icons/skills/light_05.jpg"} -{"_id":"xvgPu1O57DgXCM86","name":"Beast Powers","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 18th level, you can cast many of your druid powers in any shape you assume using @Compendium[sw5e.classfeatures.swK0r5TOIxredxWS]{Wild Shape}. You can perform the somatic and verbal components of a druid power while in a beast shape, but you aren't able to provide material components.

","chat":"","unidentified":""},"source":"PHB pg. 67","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Druid 18","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":192}},"img":"systems/sw5e/icons/skills/green_07.jpg"} -{"_id":"xzD9zlRP6dUxCtCl","name":"Retaliation","permission":{"default":0,"bmcUarCizzNhZT0y":3},"type":"feat","data":{"description":{"value":"

Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.

","chat":"","unidentified":""},"source":"PHB pg. 50","activation":{"type":"reaction","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":5,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":""},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"requirements":"Path of the Berserker 14","recharge":{"value":null,"charged":false}},"flags":{},"img":"systems/sw5e/icons/skills/yellow_37.jpg"} -{"_id":"ySMPQ6zNSlvkrl2f","name":"Divine Smite","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one power slot to deal radiant damage to the target, in addition to the weapon’s damage.

\n

The extra damage is 2d8 for a 1st-level power slot, plus 1d8 for each power level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.

\n

**Foundry note: Note the limited uses is set to the base default of 1 per short or long rest. Please manually adjust as required.

","chat":"","unidentified":""},"source":"PHB pg. 85","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["2d8","radiant"]],"versatile":"1d8"},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Paladin 2","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":163}},"img":"systems/sw5e/icons/skills/light_05.jpg"} -{"_id":"yrSFIGTaQOH2PFRI","name":"Ki: Step of the Wind","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.

","chat":"","unidentified":""},"source":"PHB pg. 78","activation":{"type":"bonus","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Monk 2","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":180}},"img":"systems/sw5e/icons/skills/blue_06.jpg"} -{"_id":"yv49QN6Bzqs0ecCs","name":"Blessed Healer","permission":{"default":0},"type":"feat","data":{"description":{"value":"

Beginning at 6th level, the healing powers you cast on others heal you as well.

\n

When you cast a power of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the power's level. 

\n

**Foundry note: The healing formula is set to 2. Please add the additional from the power level manually.

","chat":"","unidentified":""},"source":"PHB pg. 60","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"heal","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[["2","healing"]],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Life Domain 6","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":128}},"img":"systems/sw5e/icons/skills/light_10.jpg"} -{"_id":"zB77V8BcCJvWVxck","name":"Mystic Arcanum (6th-Level Power)","permission":{"default":0},"type":"feat","data":{"description":{"value":"

At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th-level power from the warlock power list as this arcanum. 

\n

You can cast your arcanum power once without expending a power slot. You must finish a long rest before you can do so again. 

\n

At higher levels, you gain more warlock powers of your choice that can be cast in this way: one 7th-level power at 13th level, one 8th-level power at 15th level, and one 9th-level power at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.

\n

If you wish, manually edit this entry and make a note of your choice here:

\n","chat":"","unidentified":""},"source":"PHB pg. 108","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":null,"type":"self"},"range":{"value":null,"long":null,"units":"self"},"uses":{"value":1,"max":1,"per":"lr","type":"lr"},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 11","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":36}},"img":"systems/sw5e/icons/items/inventory/book-grey.jpg"} -{"_id":"zElYrOcCFFMhB6Xl","name":"Metamagic: Careful Power","permission":{"default":0},"type":"feat","data":{"description":{"value":"

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 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the power.

","chat":"","unidentified":""},"source":"PHB pg. 102","activation":{"type":"special","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Sorcerer 3","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"description","entityorder":{"order":71}},"img":"systems/sw5e/icons/skills/green_15.jpg"} -{"_id":"zSlV0O2rQMdoq6pB","name":"Fighting Style: Defense","permission":{"default":0},"type":"feat","data":{"description":{"value":"

While you are wearing armor, you gain a +1 bonus to AC

","chat":"","unidentified":""},"source":"PHB pg. 72; 73; 85; 91","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Fighter 1, Champion 10, Paladin 2, Ranger 2","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":195}},"img":"systems/sw5e/icons/skills/weapon_15.jpg"} -{"_id":"zUIAzBnyt0NDvVXb","name":"Invocation: Life Drinker","permission":{"default":0},"type":"feat","data":{"description":{"value":"

When you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null,"type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 12, Pact of the Blade","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":12}},"img":"systems/sw5e/icons/skills/weapon_39.jpg"} -{"_id":"zYIdNAjqRyhS6qWs","name":"Invocation: Visions of Distant Realms","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You can cast @Compendium[sw5e.powers.ImlCJQwR1VL40Qem]{Arcane Eye} at will, without expending a power slot.

","chat":"","unidentified":""},"source":"PHB pg. 111","activation":{"type":"action","cost":1,"condition":""},"duration":{"value":1,"units":"hour"},"target":{"value":null,"units":"","type":""},"range":{"value":30,"long":null,"units":"ft"},"uses":{"value":0,"max":0,"per":"","type":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Warlock 15","recharge":{"value":null,"charged":false}},"flags":{"entityorder":{"order":11}},"img":"systems/sw5e/icons/skills/shadow_12.jpg"} -{"_id":"zbHu0NvHuII8lR7W","name":"Defensive Tactics: Steel Will","permission":{"default":0},"type":"feat","data":{"description":{"value":"

You have advantage on saving throws against being frightened.

","chat":"","unidentified":""},"source":"PHB pg. 93","activation":{"type":"","cost":0,"condition":""},"duration":{"value":"","units":""},"target":{"value":"","units":"","type":""},"range":{"value":"","long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":"","value":""},"formula":"","save":{"ability":"","dc":null,"value":"","scaling":"power"},"requirements":"Hunter 7","recharge":{"value":null,"charged":false}},"flags":{"_sheetTab":"details","entityorder":{"order":101}},"img":"systems/sw5e/icons/skills/violet_15.jpg"} +{"_id":"3jqPPd5qJBBnonPw","name":"Seeing Sound","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Starting at 10th level, while you are raging or experiencing the high of a substance, you have blindsight with a range of 10 feet. If you are both raging and experiencing the high of a substance, you instead have blindsight with a range of 30 feet.

","chat":"","unidentified":""},"source":"EC","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Addicted Approach 10"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"9oyy0MMqEws2qoil","name":"Ability Score Improvement (Berserker)","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

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).

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 4"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"Cid5ujSdnooH0vMm","name":"Tracker's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Prerequisite: 7th level
You can track other creatures while traveling at a fast pace, and you can move stealthily while traveling at a normal pace.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 7"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"DlYiCiG39R0goG9u","name":"Llothcat's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

While you're raging, other creatures have disadvantage on opportunity attack rolls against you, and you can also use the Dash action as a bonus action on your turn.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"FbSpxpXm1xONn0na","name":"Acklay's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

While raging, you have advantage on Constitution saving throws.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"GbJDWzoTKWL7sEpR","name":"Release the Beast","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

At 6th level, while you are raging or experiencing the high of a substance, when you hit a creature with a melee weapon attack, you can expend a Hit Die to deal additional damage to the target. Roll the Hit Die, adding the result of the die to the damage roll. If you are both raging and experiencing the high of a substance, you also add your Constitution modifier to the damage roll.

","chat":"","unidentified":""},"source":"EC","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Addicted Approach 6"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"Hg8zYh1iXL0DGUVq","name":"Terentatek's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Prerequisite: 13th level
When you are forced to make a saving throw against a force power, you can immediately use your reaction to move up to half your speed towards the source power's caster. If you end this movement within 5 feet of the target, you can immediately make one melee weapon attack against the target as a part of that reaction.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 13"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"IDt6duVrBzL8euRc","name":"Unarmored Defense","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Also at 1st level, while you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 1"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"IWTDawTUf79eWbEV","name":"Primal Champion","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

At 20th level, you embody the power of the wilds. Your Strength or Dexterity score increases by 2, and your Consitution score increases by 2. Your maximum for those scores increases by 2.

\n

Additionally, you can enter rage an unlimited number of times, and entering rage no longer requires your bonus action.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 20"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"KDiQ8O2evV2Z1YTo","name":"Fighter's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

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.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"Q1JyHnVs9iIEBs91","name":"Reckless Attack","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation. When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"QRnYiJmRk18ekE9v","name":"Boggdo's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Prerequisite: 13th level
While raging you have a flying speed equal to your current walking speed, though you fall if you end your turn in the air and nothing else is holding you aloft.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 13"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"ROdICoWR82v6A2Rf","name":"Tactician's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

When you use your Reckless Attack feature, you can choose to not have advantage on your attack rolls this turn. If you do so, friendly creatures within 5 feet of a hostile creature that is within 5 feet of you have advantage on attack rolls against that creature.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"WTBhKJgkArQI3Tgv","name":"Hawk's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Prerequisite: 7th level
You can see up to 1 mile away with no difficulty. You are able to discern even fine details as though looking at something no more than 100 feet away from you. Additionally, dim light doesn't impose disadvantage on your Wisdom (Perception) checks.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 7"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"YHPUv9lN3nCapAgP","name":"Persistent Rage","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Beginning at 15th level, your rage is so fierce that it ends early only if you fall unconscious or if you choose to end it.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 15"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"bi8G8H5Ur9B3BAyM","name":"Brutal Critical","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack.

\n

This increases to two additional dice at 13th level and three additional dice at 17th level.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 9"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"cdCx5Hvq2rYRMzRj","name":"Blurrg's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Whether mounted or on foot, your travel pace is doubled, as is the travel pace of up to ten companions while they're within 60 feet of you and you're not incapacitated.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"dPWmHiWmpnhHTsgd","name":"Extra Attack (Berserker)","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

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

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 5"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"dTdbL8dypa6BAdnP","name":"Predator's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Your speed increases by 10 feet.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"eWbTifdXJvvXT4CV","name":"Relentless Rage","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Starting at 11th level, your rage can keep you fighting despite grievous wounds. If you drop to 0 hit points while you're raging and don't die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.

\n

Each time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 11"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"efOA0nrvUqKJOOeP","name":"Slythmonger Savvy","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

When you choose this approach at 3rd level, you gain proficiency in your choice of brewer’s kit or spicer’s kit. Additionally, you have advantage on saving throws to avoid the low or addiction to substances. Lastly, you can consume substances as a bonus action, and when you do so, you can also enter a rage as a part of this same bonus action.

","chat":"","unidentified":""},"source":"EC","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Addicted Approach 3"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"fFKNqUAWh0ZOhvRc","name":"Indomitable Might","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 18"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"gSGeitc98ItAwhfF","name":"One with the Force","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

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. If you want to cast it at a higher level, you must expend force points as normal.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Consular 20"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"h1uDhP1tEOuvjRw6","name":"Dewback's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Choose three damage types. While raging, you have resistance to the chosen damage types.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"hMiA075EKBBOL2cv","name":"Berserker Instincts","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Also at 2nd level, you've honed two instincts, as detailed at the end of the class description. You hone an additional instinct at 7th, 13th, and 17th level.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"kzwSN9SabKgWZZvU","name":"Danger Sense","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

At 3rd level, you gain an uncanny sense of when things nearby aren't as they should be, giving you an edge when you dodge away from danger.

\n

You have advantage on Dexterity saving throws against effects that you can see, such as traps and powers. To gain this benefit, you can't be blinded, deafened, or incapacitated.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 3"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"nT6AfpQXSZ4IeChO","name":"Freedom Through Slavery","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Also at 3rd level, while you are raging or experiencing the high of a substance, you have advantage on saving throws that would force you to act against your will, be frightened, or prevent you from attacking a creature. If you are both raging and experiencing the high of a substance, you are instead immune to effects that would force you to act against your will or would prevent you from attacking a creature.

","chat":"","unidentified":""},"source":"EC","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Addicted Approach 3"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"oiT3TJxzRWPKAX9E","name":"Bantha's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Prerequisite: 7th level
Your carrying capacity and the weight you can push, drag, or lift doubles. If it would already double, it instead triples. Additionally, you have advantage on Strength checks made to push, pull, lift, or break objects.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 7"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"pMEmIt3NWThbee8k","name":"Feral Impulse","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

By 7th level, your instincts are so honed that you have advantage on initiative rolls.

\n

Additionally, if you are surprised at the start of combat and aren't incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 7"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"qWV5YogZcpZ3Y3xj","name":"Chirodactyl's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Prerequisite: 7th level
While raging, you have blindsight to a range of 30 feet, and you have advantage on Wisdom (Perception) checks that rely on sound, as long as you aren't deafened.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 7"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"rPOLy96fW96N2UPg","name":"Rage","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Beginning at 1st level, in battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action, if you aren't wearing heavy armor.

\n

While raging, you gain the following benefits:

\n\n

If you are able to cast powers, you can't cast them or concentrate on them while raging.

\n

Your rage lasts for 1 minute. It ends early if you are knocked unconscious, you don heavy armor, or if your turn ends and you haven't attacked a hostile creature or taken damage since your last turn. You can also end your rage on your turn as a bonus action.

\n

Once you have raged the number of times shown for your berserker level in the Rages column of the Berserker table, you must finish a long rest before you can rage again.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":""},"ability":"","actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"recharge":{"value":null,"charged":false},"requirements":"Berserker 1"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"sfEr8ZBFVddlfLeF","name":"Varactyl's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Prerequisite: 13th level
While raging, you have advantage Dexterity checks, your attack rolls can't suffer from disadvantage, and each slowed level only reduces your speed by 5 feet, unless it would reduce your speed to 0.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 13"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"sgJdISZMtwv08WPJ","name":"Katarn's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

You gain a climbing speed equal to your movement speed.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"v4CZJ8LBMl5PYZCO","name":"Fyrnock's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

While raging, you can use your bonus action to leap up to 30 feet to an empty space you can see. When you land you deal kinetic damage equal to your Strength modifier to each creature within 5 feet of where you land. You can use this feature a number of times equal to your Constitution modifier (a minimum of once). You regain all expended uses when you complete a long rest.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 2"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"xzRNHB2M2HdOZzr7","name":"Fuel the Rampage","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

At 14th level, while you are both raging and experiencing the high of a substance, having 0 hit points doesn’t knock you unconscious. You still must make death saving throws, and you suffer the normal effects of taking damage while at 0 hit points. However, if you would die due to failing death saving throws, you don’t die until your rage ends, and you die then only if you still have 0 hit points.

","chat":"","unidentified":""},"source":"EC","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Addicted Approach 14"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} +{"_id":"yGC9VzT840qQWxca","name":"Rancor's Instinct","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"classfeature","data":{"description":{"value":"

Prerequisite: 13th level
While you're raging any creature within 5 feet of you that's hostile to you has disadvantage on attack rolls against targets other than you or another character with this feature. An enemy is immune to this effect if it can't see or hear you or if it can't be frightened.

","chat":"","unidentified":""},"source":"PHB","activation":{"type":"","cost":0,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":0,"max":0,"per":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"power"},"className":"","armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"requirements":"Berserker 13"},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"icons/svg/mystery-man.svg"} diff --git a/sw5e.css b/sw5e.css index 3c6deddc..6d277f17 100644 --- a/sw5e.css +++ b/sw5e.css @@ -104,6 +104,7 @@ color: #191813; } .sw5e input[type="text"], +.sw5e input[type="number"], .sw5e select { height: calc(100% - 2px); border: 1px solid #7a7971; @@ -111,7 +112,9 @@ color: #191813; } .sw5e input[type="text"]:hover, -.sw5e input[type="text"]:focus { +.sw5e input[type="number"]:hover, +.sw5e input[type="text"]:focus, +.sw5e input[type="number"]:focus { border: 1px solid #111; box-shadow: 0 0 8px red; } @@ -257,12 +260,15 @@ overflow-y: auto; align-content: flex-start; } -.sw5e.sheet input[type="text"] { +.sw5e.sheet input[type="text"], +.sw5e.sheet input[type="number"] { background: none; border: 1px solid transparent; } .sw5e.sheet input[type="text"]:hover, -.sw5e.sheet input[type="text"]:focus { +.sw5e.sheet input[type="number"]:hover, +.sw5e.sheet input[type="text"]:focus, +.sw5e.sheet input[type="number"]:focus { border: 1px solid #111; } .sw5e.sheet select { @@ -470,6 +476,9 @@ /* Powerbook */ /* ----------------------------------------- */ /* ----------------------------------------- */ + /* Active Effects */ + /* ----------------------------------------- */ + /* ----------------------------------------- */ /* TinyMCE */ /* ----------------------------------------- */ } @@ -584,8 +593,9 @@ flex: 0 0 18px; margin-top: -1px; line-height: 18px; - font-family: "Signika", "Palatino Linotype", serif; + font-family: "Signika", sans-serif; font-size: 12px; + font-weight: 400; } .sw5e.sheet.actor .ability-scores { flex: 0 0 100px; @@ -600,7 +610,6 @@ height: 70px; text-align: center; border-bottom: 2px groove #eeede0; - /* Hide modifier box on hover */ } .sw5e.sheet.actor .ability-scores .ability:last-child { border-bottom: none; @@ -635,6 +644,7 @@ .sw5e.sheet.actor .ability-scores .ability .ability-modifiers span.ability-save { border-left: 2px groove #eeede0; } + /* Hide modifier box on hover */ .sw5e.sheet.actor .ability-scores .ability input.ability-score:hover + .ability-modifiers { visibility: hidden; } @@ -712,7 +722,8 @@ .sw5e.sheet.actor .counters .counter .counter-value > * { display: inline; } -.sw5e.sheet.actor .counters .counter input[type="text"] { +.sw5e.sheet.actor .counters .counter input[type="text"], +.sw5e.sheet.actor .counters .counter input[type="number"] { height: 20px; max-width: 20px; margin: 0; @@ -815,6 +826,7 @@ padding: 0 5px; overflow-y: auto; scrollbar-width: thin; + color: #7a7971; } .sw5e.sheet.actor .inventory-list .item { line-height: 30px; @@ -840,10 +852,10 @@ overflow-x: hidden; } .sw5e.sheet.actor .inventory-list .item .item-name.rollable:hover .item-image { - background-image: url("/icons/svg/d20-grey.svg") !important; + background-image: url("../../icons/svg/d20-grey.svg") !important; } .sw5e.sheet.actor .inventory-list .item .item-name.rollable .item-image:hover { - background-image: url("/icons/svg/d20-black.svg") !important; + background-image: url("../../icons/svg/d20-black.svg") !important; } .sw5e.sheet.actor .inventory-list .item .item-name i.attuned { color: #7a7971; @@ -865,6 +877,7 @@ .sw5e.sheet.actor .inventory-list .inventory-header { margin: 2px 0; padding: 0; + align-items: center; background: rgba(0, 0, 0, 0.05); border: 2px groove #eeede0; font-weight: bold; @@ -879,6 +892,9 @@ .sw5e.sheet.actor .inventory-list .inventory-header .item-controls a.item-create { flex: 0 0 100%; } +.sw5e.sheet.actor .inventory-list .item-name { + color: #191813; +} .sw5e.sheet.actor .inventory-list .item-detail { flex: 0 0 70px; font-size: 12px; @@ -1067,6 +1083,37 @@ .sw5e.sheet.actor .powerbook-empty .item-controls { flex: 1; } +.sw5e.sheet.actor .effects .effect-name { + flex: 2; + align-items: center; + color: #191813; +} +.sw5e.sheet.actor .effects .effect-name h4 { + margin: 0; +} +.sw5e.sheet.actor .effects .effect-icon { + flex: 0 0 30px; + height: 30px; + margin-right: 5px; + border: none; +} +.sw5e.sheet.actor .effects .effect-source, +.sw5e.sheet.actor .effects .effect-duration { + text-align: center; + border-left: 1px solid #c9c7b8; + border-right: 1px solid #c9c7b8; +} +.sw5e.sheet.actor .effects .effect-controls { + flex: 0 0 60px; + text-align: right; +} +.sw5e.sheet.actor .effects .effect { + align-items: center; + border-bottom: 1px solid #c9c7b8; +} +.sw5e.sheet.actor .effects .effect:last-child { + border-bottom: none; +} .sw5e.sheet.actor .editor { padding: 0 8px; } @@ -1163,6 +1210,7 @@ line-height: 18px; } .sw5e.sheet.item .details input[type="text"], +.sw5e.sheet.item .details input[type="number"], .sw5e.sheet.item .details select { height: 24px; border: 1px solid #7a7971; @@ -1773,3 +1821,31 @@ line-height: 24px; font-weight: bold; } +/* Text Input */ +input[type="number"] { + width: calc(100% - 2px); + min-width: 20px; + height: 26px; + background: rgba(0, 0, 0, 0.05); + padding: 1px 3px; + margin: 0; + color: #191813; + font-family: inherit; + font-size: inherit; + text-align: inherit; + line-height: inherit; + border: 1px solid #7a7971; + border-radius: 3px; + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + -moz-appearance: textfield; +} +input[type="number"]:focus { + box-shadow: 0 0 5px red; +} +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + -webkit-appearance: none; +} diff --git a/sw5e.js b/sw5e.js index 598f32b1..4a038e35 100644 --- a/sw5e.js +++ b/sw5e.js @@ -72,7 +72,7 @@ Hooks.once("init", function() { CONFIG.SW5E = SW5E; CONFIG.Actor.entityClass = Actor5e; CONFIG.Item.entityClass = Item5e; - //CONFIG.time.roundTime = 6; + if ( CONFIG.time ) CONFIG.time.roundTime = 6; // TODO remove conditional after 0.7.x // Add DND5e namespace for module compatability game.dnd5e = game.sw5e; diff --git a/system.json b/system.json index b3b8d876..3b831519 100644 --- a/system.json +++ b/system.json @@ -25,11 +25,16 @@ "label": "Classes", "path": "./packs/packs/classes.db", "entity": "Item" - }, + }, + { + "name": "archetypes.db", + "label": "Archetypes", + "path": "./packs/packs/archetypes.db", + "entity": "Item" + }, { "name": "classfeatures", "label": "Class Features", - "system": "sw5e", "path": "./packs/packs/classfeatures.db", "entity": "Item" }, @@ -107,7 +112,7 @@ "primaryTokenAttribute": "attributes.hp", "secondaryTokenAttribute": null, "minimumCoreVersion": "0.5.6", - "compatibleCoreVersion": "0.7.2", + "compatibleCoreVersion": "0.7.5", "url": "https://github.com/unrealkakeman89/sw5e", "manifest": "https://raw.githubusercontent.com/unrealkakeman89/sw5e/master/system.json", "download": "https://github.com/unrealkakeman89/sw5e/archive/master.zip" diff --git a/template.json b/template.json index b84d642f..ddc7e3c4 100644 --- a/template.json +++ b/template.json @@ -393,8 +393,13 @@ } }, "Item": { - "types": ["weapon", "equipment", "consumable", "tool", "loot", "class", "power", "feat", "species", "backpack"], + "types": ["weapon", "equipment", "consumable", "tool", "loot", "class", "power", "feat", "species", "archetype", "classfeature", "backpack"], "templates": { + "archetypeDescription": { + "className": "", + "description": "", + "source": "" + }, "itemDescription": { "description": { "value": "", @@ -505,6 +510,15 @@ }, "powercasting": "none" }, + "archetype": { + "templates": ["archetypeDescription"], + "className": "", + "description": "" + }, + "classfeature": { + "templates": ["itemDescription", "activatedEffect", "action"], + "className": "" + }, "consumable": { "templates": ["itemDescription", "physicalItem", "activatedEffect", "action"], "consumableType": "potion", diff --git a/templates/actors/character-sheet.html b/templates/actors/character-sheet.html index 23f65080..f132cefe 100644 --- a/templates/actors/character-sheet.html +++ b/templates/actors/character-sheet.html @@ -17,8 +17,7 @@ {{#unless disableExperience}}
- + / {{data.details.xp.max}}
@@ -49,17 +48,15 @@
  • {{ localize "SW5E.Health" }}

    - + / - +
  • @@ -77,8 +74,7 @@
  • {{ localize "SW5E.ArmorClass" }}

    - +
  • @@ -131,7 +127,7 @@ {{#each data.abilities as |ability id|}}
  • {{ability.label}}

    - +
    {{numberFormat ability.mod decimals=0 sign=true}} @@ -171,11 +167,9 @@ {{ localize "SW5E.AbbreviationSR" }} - + / - +

    {{ localize "SW5E.Exhaustion" }}

    -
    @@ -237,15 +231,15 @@ {{!-- Biography Tab --}}
    - + - + - + - + - +
    diff --git a/templates/actors/npc-sheet.html b/templates/actors/npc-sheet.html index 0ee312fb..a360903c 100644 --- a/templates/actors/npc-sheet.html +++ b/templates/actors/npc-sheet.html @@ -40,11 +40,9 @@
  • {{ localize "SW5E.Health" }}

    - + / - +