forked from GitHub-Mirrors/foundry-sw5e
1210 lines
39 KiB
JavaScript
1210 lines
39 KiB
JavaScript
import {ClassFeatures} from "./classFeatures.js"
|
||
|
||
// Namespace SW5e Configuration Values
|
||
export const SW5E = {};
|
||
|
||
// ASCII Artwork
|
||
SW5E.ASCII = `
|
||
___________ ___________
|
||
/ _____/ \\ / \\ ____/ ____
|
||
\\_____ \\\\ \\/\\/ /____ \\_/ __ \\
|
||
/ \\\\ // \\ ___/
|
||
\\______ / \\__/\\ //______ /\\__ >
|
||
\\/ \\/ \\/ \\/ `;
|
||
|
||
|
||
/**
|
||
* The set of Ability Scores used within the system
|
||
* @type {Object}
|
||
*/
|
||
SW5E.abilities = {
|
||
"str": "SW5E.AbilityStr",
|
||
"dex": "SW5E.AbilityDex",
|
||
"con": "SW5E.AbilityCon",
|
||
"int": "SW5E.AbilityInt",
|
||
"wis": "SW5E.AbilityWis",
|
||
"cha": "SW5E.AbilityCha"
|
||
};
|
||
|
||
SW5E.abilityAbbreviations = {
|
||
"str": "SW5E.AbilityStrAbbr",
|
||
"dex": "SW5E.AbilityDexAbbr",
|
||
"con": "SW5E.AbilityConAbbr",
|
||
"int": "SW5E.AbilityIntAbbr",
|
||
"wis": "SW5E.AbilityWisAbbr",
|
||
"cha": "SW5E.AbilityChaAbbr"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* Character alignment options
|
||
* @type {Object}
|
||
*/
|
||
SW5E.alignments = {
|
||
'll': "SW5E.AlignmentLL",
|
||
'nl': "SW5E.AlignmentNL",
|
||
'cl': "SW5E.AlignmentCL",
|
||
'lb': "SW5E.AlignmentLB",
|
||
'bn': "SW5E.AlignmentBN",
|
||
'cb': "SW5E.AlignmentCB",
|
||
'ld': "SW5E.AlignmentLD",
|
||
'nd': "SW5E.AlignmentND",
|
||
'cd': "SW5E.AlignmentCD"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* An enumeration of item attunement types
|
||
* @enum {number}
|
||
*/
|
||
SW5E.attunementTypes = {
|
||
NONE: 0,
|
||
REQUIRED: 1,
|
||
ATTUNED: 2,
|
||
}
|
||
|
||
/**
|
||
* An enumeration of item attunement states
|
||
* @type {{"0": string, "1": string, "2": string}}
|
||
*/
|
||
SW5E.attunements = {
|
||
0: "SW5E.AttunementNone",
|
||
1: "SW5E.AttunementRequired",
|
||
2: "SW5E.AttunementAttuned"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
|
||
SW5E.weaponProficiencies = {
|
||
"sim": "SW5E.WeaponSimpleProficiency",
|
||
"mar": "SW5E.WeaponMartialProficiency"
|
||
};
|
||
|
||
SW5E.toolProficiencies = {
|
||
"armor": "SW5E.ToolArmormech",
|
||
"arms": "SW5E.ToolArmstech",
|
||
"arti": "SW5E.ToolArtificer",
|
||
"art": "SW5E.ToolArtist",
|
||
"astro": "SW5E.ToolAstrotech",
|
||
"bio": "SW5E.ToolBiotech",
|
||
"con": "SW5E.ToolConstructor",
|
||
"cyb": "SW5E.ToolCybertech",
|
||
"jew": "SW5E.ToolJeweler",
|
||
"sur": "SW5E.ToolSurveyor",
|
||
"syn": "SW5E.ToolSynthweaver",
|
||
"tin": "SW5E.ToolTinker",
|
||
"ant": "SW5E.ToolAntitoxkit",
|
||
"arc": "SW5E.ToolArchaeologistKit",
|
||
"aud": "SW5E.ToolAudiotechKit",
|
||
"bioa": "SW5E.ToolBioanalysisKit",
|
||
"brew": "SW5E.ToolBrewerKit",
|
||
"chef": "SW5E.ToolChefKit",
|
||
"demo": "SW5E.ToolDemolitionKit",
|
||
"disg": "SW5E.ToolDisguiseKit",
|
||
"forg": "SW5E.ToolForgeryKit",
|
||
"mech": "SW5E.ToolMechanicKit",
|
||
"game": "SW5E.ToolGamingSet",
|
||
"poi": "SW5E.ToolPoisonKit",
|
||
"scav": "SW5E.ToolScavengingKit",
|
||
"secur": "SW5E.ToolSecurityKit",
|
||
"slic": "SW5E.ToolSlicerKit",
|
||
"spice": "SW5E.ToolSpiceKit",
|
||
"music": "SW5E.ToolMusicalInstrument",
|
||
"vehicle": "SW5E.ToolVehicle"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* This Object defines the various lengths of time which can occur in SW5e
|
||
* @type {Object}
|
||
*/
|
||
SW5E.timePeriods = {
|
||
"inst": "SW5E.TimeInst",
|
||
"turn": "SW5E.TimeTurn",
|
||
"round": "SW5E.TimeRound",
|
||
"minute": "SW5E.TimeMinute",
|
||
"hour": "SW5E.TimeHour",
|
||
"day": "SW5E.TimeDay",
|
||
"month": "SW5E.TimeMonth",
|
||
"year": "SW5E.TimeYear",
|
||
"perm": "SW5E.TimePerm",
|
||
"spec": "SW5E.Special"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* This describes the ways that an ability can be activated
|
||
* @type {Object}
|
||
*/
|
||
SW5E.abilityActivationTypes = {
|
||
"none": "SW5E.None",
|
||
"action": "SW5E.Action",
|
||
"bonus": "SW5E.BonusAction",
|
||
"reaction": "SW5E.Reaction",
|
||
"minute": SW5E.timePeriods.minute,
|
||
"hour": SW5E.timePeriods.hour,
|
||
"day": SW5E.timePeriods.day,
|
||
"special": SW5E.timePeriods.spec,
|
||
"legendary": "SW5E.LegAct",
|
||
"lair": "SW5E.LairAct",
|
||
"crew": "SW5E.VehicleCrewAction"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
|
||
SW5E.abilityConsumptionTypes = {
|
||
"ammo": "SW5E.ConsumeAmmunition",
|
||
"attribute": "SW5E.ConsumeAttribute",
|
||
"material": "SW5E.ConsumeMaterial",
|
||
"charges": "SW5E.ConsumeCharges"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
// Creature Sizes
|
||
SW5E.actorSizes = {
|
||
"tiny": "SW5E.SizeTiny",
|
||
"sm": "SW5E.SizeSmall",
|
||
"med": "SW5E.SizeMedium",
|
||
"lg": "SW5E.SizeLarge",
|
||
"huge": "SW5E.SizeHuge",
|
||
"grg": "SW5E.SizeGargantuan"
|
||
};
|
||
|
||
SW5E.tokenSizes = {
|
||
"tiny": 1,
|
||
"sm": 1,
|
||
"med": 1,
|
||
"lg": 2,
|
||
"huge": 3,
|
||
"grg": 4
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* Classification types for item action types
|
||
* @type {Object}
|
||
*/
|
||
SW5E.itemActionTypes = {
|
||
"mwak": "SW5E.ActionMWAK",
|
||
"rwak": "SW5E.ActionRWAK",
|
||
"mpak": "SW5E.ActionMPAK",
|
||
"rpak": "SW5E.ActionRPAK",
|
||
"save": "SW5E.ActionSave",
|
||
"heal": "SW5E.ActionHeal",
|
||
"abil": "SW5E.ActionAbil",
|
||
"util": "SW5E.ActionUtil",
|
||
"other": "SW5E.ActionOther"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
SW5E.itemCapacityTypes = {
|
||
"items": "SW5E.ItemContainerCapacityItems",
|
||
"weight": "SW5E.ItemContainerCapacityWeight"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* Enumerate the lengths of time over which an item can have limited use ability
|
||
* @type {Object}
|
||
*/
|
||
SW5E.limitedUsePeriods = {
|
||
"sr": "SW5E.ShortRest",
|
||
"lr": "SW5E.LongRest",
|
||
"day": "SW5E.Day",
|
||
"charges": "SW5E.Charges"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* The set of equipment types for armor, clothing, and other objects which can ber worn by the character
|
||
* @type {Object}
|
||
*/
|
||
SW5E.equipmentTypes = {
|
||
"light": "SW5E.EquipmentLight",
|
||
"medium": "SW5E.EquipmentMedium",
|
||
"heavy": "SW5E.EquipmentHeavy",
|
||
"bonus": "SW5E.EquipmentBonus",
|
||
"natural": "SW5E.EquipmentNatural",
|
||
"shield": "SW5E.EquipmentShield",
|
||
"clothing": "SW5E.EquipmentClothing",
|
||
"trinket": "SW5E.EquipmentTrinket",
|
||
"vehicle": "SW5E.EquipmentVehicle"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* The set of Armor Proficiencies which a character may have
|
||
* @type {Object}
|
||
*/
|
||
SW5E.armorProficiencies = {
|
||
"lgt": SW5E.equipmentTypes.light,
|
||
"med": SW5E.equipmentTypes.medium,
|
||
"hvy": SW5E.equipmentTypes.heavy,
|
||
"shl": "SW5E.EquipmentShieldProficiency"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* Enumerate the valid consumable types which are recognized by the system
|
||
* @type {Object}
|
||
*/
|
||
SW5E.consumableTypes = {
|
||
"adrenal": "SW5E.ConsumableAdrenal",
|
||
"poison": "SW5E.ConsumablePoison",
|
||
"explosive": "SW5E.ConsumableExplosive",
|
||
"food": "SW5E.ConsumableFood",
|
||
"medpac": "SW5E.ConsumableMedpac",
|
||
"technology": "SW5E.ConsumableTechnology",
|
||
"ammunition": "SW5E.ConsumableAmmunition",
|
||
"trinket": "SW5E.ConsumableTrinket",
|
||
"force": "SW5E.ConsumableForce",
|
||
"tech": "SW5E.ConsumableTech"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* The valid currency denominations supported by the 5e system
|
||
* @type {Object}
|
||
*/
|
||
SW5E.currencies = {
|
||
"CR": "SW5E.CurrencyCR",
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
|
||
// Damage Types
|
||
SW5E.damageTypes = {
|
||
"acid": "SW5E.DamageAcid",
|
||
"cold": "SW5E.DamageCold",
|
||
"energy": "SW5E.DamageEnergy",
|
||
"fire": "SW5E.DamageFire",
|
||
"force": "SW5E.DamageForce",
|
||
"ion": "SW5E.DamageIon",
|
||
"kinetic": "SW5E.DamageKinetic",
|
||
"lightning": "SW5E.DamageLightning",
|
||
"necrotic": "SW5E.DamageNecrotic",
|
||
"poison": "SW5E.DamagePoison",
|
||
"psychic": "SW5E.DamagePsychic",
|
||
"sonic": "SW5E.DamageSonic"
|
||
};
|
||
|
||
// Damage Resistance Types
|
||
SW5E.damageResistanceTypes = duplicate(SW5E.damageTypes);
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
|
||
// armor Types
|
||
SW5E.armorPropertiesTypes = {
|
||
"Absorptive": "SW5E.ArmorProperAbsorptive",
|
||
"Agile": "SW5E.ArmorProperAgile",
|
||
"Anchor": "SW5E.ArmorProperAnchor",
|
||
"Avoidant": "SW5E.ArmorProperAvoidant",
|
||
"Barbed": "SW5E.ArmorProperBarbed",
|
||
"Bulky": "SW5E.ArmorProperBulky",
|
||
"Charging": "SW5E.ArmorProperCharging",
|
||
"Concealing": "SW5E.ArmorProperConcealing",
|
||
"Cumbersome": "SW5E.ArmorProperCumbersome",
|
||
"Gauntleted": "SW5E.ArmorProperGauntleted",
|
||
"Imbalanced": "SW5E.ArmorProperImbalanced",
|
||
"Impermeable": "SW5E.ArmorProperImpermeable",
|
||
"Insulated": "SW5E.ArmorProperInsulated",
|
||
"Interlocking": "SW5E.ArmorProperInterlocking",
|
||
"Lambent": "SW5E.ArmorProperLambent",
|
||
"Lightweight": "SW5E.ArmorProperLightweight",
|
||
"Magnetic": "SW5E.ArmorProperMagnetic",
|
||
"Obscured": "SW5E.ArmorProperObscured",
|
||
"Obtrusive": "SW5E.ArmorProperObtrusive",
|
||
"Powered": "SW5E.ArmorProperPowered",
|
||
"Reactive": "SW5E.ArmorProperReactive",
|
||
"Regulated": "SW5E.ArmorProperRegulated",
|
||
"Reinforced": "SW5E.ArmorProperReinforced",
|
||
"Responsive": "SW5E.ArmorProperResponsive",
|
||
"Rigid": "SW5E.ArmorProperRigid",
|
||
"Silent": "SW5E.ArmorProperSilent",
|
||
"Spiked": "SW5E.ArmorProperSpiked",
|
||
"Strength": "SW5E.ArmorProperStrength",
|
||
"Steadfast": "SW5E.ArmorProperSteadfast",
|
||
"Versatile": "SW5E.ArmorProperVersatile"
|
||
};
|
||
|
||
/**
|
||
* The valid units of measure for movement distances in the game system.
|
||
* By default this uses the imperial units of feet and miles.
|
||
* @type {Object<string,string>}
|
||
*/
|
||
SW5E.movementTypes = {
|
||
"burrow": "SW5E.MovementBurrow",
|
||
"climb": "SW5E.MovementClimb",
|
||
"fly": "SW5E.MovementFly",
|
||
"swim": "SW5E.MovementSwim",
|
||
"walk": "SW5E.MovementWalk",
|
||
}
|
||
|
||
/**
|
||
* The valid units of measure for movement distances in the game system.
|
||
* By default this uses the imperial units of feet and miles.
|
||
* @type {Object<string,string>}
|
||
*/
|
||
SW5E.movementUnits = {
|
||
"ft": "SW5E.DistFt",
|
||
"mi": "SW5E.DistMi"
|
||
}
|
||
|
||
/**
|
||
* The valid units of measure for the range of an action or effect.
|
||
* This object automatically includes the movement units from SW5E.movementUnits
|
||
* @type {Object<string,string>}
|
||
*/
|
||
SW5E.distanceUnits = {
|
||
"none": "SW5E.None",
|
||
"self": "SW5E.DistSelf",
|
||
"touch": "SW5E.DistTouch",
|
||
"spec": "SW5E.Special",
|
||
"any": "SW5E.DistAny"
|
||
};
|
||
for ( let [k, v] of Object.entries(SW5E.movementUnits) ) {
|
||
SW5E.distanceUnits[k] = v;
|
||
}
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
|
||
/**
|
||
* Configure aspects of encumbrance calculation so that it could be configured by modules
|
||
* @type {Object}
|
||
*/
|
||
SW5E.encumbrance = {
|
||
currencyPerWeight: 50,
|
||
strMultiplier: 15,
|
||
vehicleWeightMultiplier: 2000 // 2000 lbs in a ton
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* This Object defines the types of single or area targets which can be applied in SW5e
|
||
* @type {Object}
|
||
*/
|
||
SW5E.targetTypes = {
|
||
"none": "SW5E.None",
|
||
"self": "SW5E.TargetSelf",
|
||
"creature": "SW5E.TargetCreature",
|
||
"droid": "SW5E.TargetDroid",
|
||
"ally": "SW5E.TargetAlly",
|
||
"enemy": "SW5E.TargetEnemy",
|
||
"object": "SW5E.TargetObject",
|
||
"space": "SW5E.TargetSpace",
|
||
"radius": "SW5E.TargetRadius",
|
||
"sphere": "SW5E.TargetSphere",
|
||
"cylinder": "SW5E.TargetCylinder",
|
||
"cone": "SW5E.TargetCone",
|
||
"square": "SW5E.TargetSquare",
|
||
"cube": "SW5E.TargetCube",
|
||
"line": "SW5E.TargetLine",
|
||
"wall": "SW5E.TargetWall",
|
||
"weapon": "SW5E.TargetWeapon"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
|
||
/**
|
||
* Map the subset of target types which produce a template area of effect
|
||
* The keys are SW5E target types and the values are MeasuredTemplate shape types
|
||
* @type {Object}
|
||
*/
|
||
SW5E.areaTargetTypes = {
|
||
cone: "cone",
|
||
cube: "rect",
|
||
cylinder: "circle",
|
||
line: "ray",
|
||
radius: "circle",
|
||
sphere: "circle",
|
||
square: "rect",
|
||
wall: "ray"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
// Healing Types
|
||
SW5E.healingTypes = {
|
||
"healing": "SW5E.Healing",
|
||
"temphp": "SW5E.HealingTemp"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
|
||
/**
|
||
* Enumerate the denominations of hit dice which can apply to classes in the SW5E system
|
||
* @type {Array.<string>}
|
||
*/
|
||
SW5E.hitDieTypes = ["d4", "d6", "d8", "d10", "d12", "d20"];
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* The set of possible sensory perception types which an Actor may have
|
||
* @type {object}
|
||
*/
|
||
SW5E.senses = {
|
||
"blindsight": "SW5E.SenseBlindsight",
|
||
"darkvision": "SW5E.SenseDarkvision",
|
||
"tremorsense": "SW5E.SenseTremorsense",
|
||
"truesight": "SW5E.SenseTruesight"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* The set of skill which can be trained in SW5e
|
||
* @type {Object}
|
||
*/
|
||
SW5E.skills = {
|
||
"acr": "SW5E.SkillAcr",
|
||
"ani": "SW5E.SkillAni",
|
||
"ath": "SW5E.SkillAth",
|
||
"dec": "SW5E.SkillDec",
|
||
"ins": "SW5E.SkillIns",
|
||
"itm": "SW5E.SkillItm",
|
||
"inv": "SW5E.SkillInv",
|
||
"lor": "SW5E.SkillLor",
|
||
"med": "SW5E.SkillMed",
|
||
"nat": "SW5E.SkillNat",
|
||
"prc": "SW5E.SkillPrc",
|
||
"prf": "SW5E.SkillPrf",
|
||
"per": "SW5E.SkillPer",
|
||
"pil": "SW5E.SkillPil",
|
||
"slt": "SW5E.SkillSlt",
|
||
"ste": "SW5E.SkillSte",
|
||
"sur": "SW5E.SkillSur",
|
||
"tec": "SW5E.SkillTec"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
SW5E.powerPreparationModes = {
|
||
"prepared": "SW5E.PowerPrepPrepared",
|
||
"always": "SW5E.PowerPrepAlways",
|
||
"atwill": "SW5E.PowerPrepAtWill",
|
||
"innate": "SW5E.PowerPrepInnate"
|
||
};
|
||
|
||
SW5E.powerUpcastModes = ["always", "pact", "prepared"];
|
||
|
||
SW5E.powerProgression = {
|
||
"none": "SW5E.PowerNone",
|
||
"full": "SW5E.PowerProgFull",
|
||
"artificer": "SW5E.PowerProgArt"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* The available choices for how power damage scaling may be computed
|
||
* @type {Object}
|
||
*/
|
||
SW5E.powerScalingModes = {
|
||
"none": "SW5E.PowerNone",
|
||
"atwill": "SW5E.PowerAtWill",
|
||
"level": "SW5E.PowerLevel"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
|
||
/**
|
||
* Define the set of types which a weapon item can take
|
||
* @type {Object}
|
||
*/
|
||
SW5E.weaponTypes = {
|
||
"simpleVW": "SW5E.WeaponSimpleVW",
|
||
"simpleB": "SW5E.WeaponSimpleB",
|
||
"simpleLW": "SW5E.WeaponSimpleLW",
|
||
"martialVW": "SW5E.WeaponMartialVW",
|
||
"martialB": "SW5E.WeaponMartialB",
|
||
"martialLW": "SW5E.WeaponMartialLW",
|
||
"natural": "SW5E.WeaponNatural",
|
||
"improv": "SW5E.WeaponImprov",
|
||
"ammo": "SW5E.WeaponAmmo",
|
||
"siege": "SW5E.WeaponSiege"
|
||
};
|
||
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* Define the set of weapon property flags which can exist on a weapon
|
||
* @type {Object}
|
||
*/
|
||
SW5E.weaponProperties = {
|
||
"amm": "SW5E.WeaponPropertiesAmm",
|
||
"aut": "SW5E.WeaponPropertiesAut",
|
||
"bur": "SW5E.WeaponPropertiesBur",
|
||
"def": "SW5E.WeaponPropertiesDef",
|
||
"dex": "SW5E.WeaponPropertiesDex",
|
||
"dir": "SW5E.WeaponPropertiesDir",
|
||
"drm": "SW5E.WeaponPropertiesDrm",
|
||
"dgd": "SW5E.WeaponPropertiesDgd",
|
||
"dis": "SW5E.WeaponPropertiesDis",
|
||
"dpt": "SW5E.WeaponPropertiesDpt",
|
||
"dou": "SW5E.WeaponPropertiesDou",
|
||
"fin": "SW5E.WeaponPropertiesFin",
|
||
"fix": "SW5E.WeaponPropertiesFix",
|
||
"foc": "SW5E.WeaponPropertiesFoc",
|
||
"hvy": "SW5E.WeaponPropertiesHvy",
|
||
"hid": "SW5E.WeaponPropertiesHid",
|
||
"ken": "SW5E.WeaponPropertiesKen",
|
||
"lgt": "SW5E.WeaponPropertiesLgt",
|
||
"lum": "SW5E.WeaponPropertiesLum",
|
||
"mig": "SW5E.WeaponPropertiesMig",
|
||
"pic": "SW5E.WeaponPropertiesPic",
|
||
"rap": "SW5E.WeaponPropertiesRap",
|
||
"rch": "SW5E.WeaponPropertiesRch",
|
||
"rel": "SW5E.WeaponPropertiesRel",
|
||
"ret": "SW5E.WeaponPropertiesRet",
|
||
"shk": "SW5E.WeaponPropertiesShk",
|
||
"sil": "SW5E.WeaponPropertiesSil",
|
||
"spc": "SW5E.WeaponPropertiesSpc",
|
||
"str": "SW5E.WeaponPropertiesStr",
|
||
"thr": "SW5E.WeaponPropertiesThr",
|
||
"two": "SW5E.WeaponPropertiesTwo",
|
||
"ver": "SW5E.WeaponPropertiesVer",
|
||
"vic": "SW5E.WeaponPropertiesVic"
|
||
};
|
||
|
||
|
||
// Power Components
|
||
SW5E.powerComponents = {
|
||
"V": "SW5E.ComponentVerbal",
|
||
"S": "SW5E.ComponentSomatic",
|
||
"M": "SW5E.ComponentMaterial"
|
||
};
|
||
|
||
// Power Schools
|
||
SW5E.powerSchools = {
|
||
"lgt": "SW5E.SchoolLgt",
|
||
"uni": "SW5E.SchoolUni",
|
||
"drk": "SW5E.SchoolDrk",
|
||
"tec": "SW5E.SchoolTec",
|
||
"enh": "SW5E.SchoolEnh"
|
||
};
|
||
|
||
// Power Levels
|
||
SW5E.powerLevels = {
|
||
0: "SW5E.PowerLevel0",
|
||
1: "SW5E.PowerLevel1",
|
||
2: "SW5E.PowerLevel2",
|
||
3: "SW5E.PowerLevel3",
|
||
4: "SW5E.PowerLevel4",
|
||
5: "SW5E.PowerLevel5",
|
||
6: "SW5E.PowerLevel6",
|
||
7: "SW5E.PowerLevel7",
|
||
8: "SW5E.PowerLevel8",
|
||
9: "SW5E.PowerLevel9"
|
||
};
|
||
|
||
/**
|
||
* Define the standard slot progression by character level.
|
||
* The entries of this array represent the power slot progression for a full power-caster.
|
||
* @type {Array[]}
|
||
*/
|
||
SW5E.SPELL_SLOT_TABLE = [
|
||
[2],
|
||
[3],
|
||
[4, 2],
|
||
[4, 3],
|
||
[4, 3, 2],
|
||
[4, 3, 3],
|
||
[4, 3, 3, 1],
|
||
[4, 3, 3, 2],
|
||
[4, 3, 3, 3, 1],
|
||
[4, 3, 3, 3, 2],
|
||
[4, 3, 3, 3, 2, 1],
|
||
[4, 3, 3, 3, 2, 1],
|
||
[4, 3, 3, 3, 2, 1, 1],
|
||
[4, 3, 3, 3, 2, 1, 1],
|
||
[4, 3, 3, 3, 2, 1, 1, 1],
|
||
[4, 3, 3, 3, 2, 1, 1, 1],
|
||
[4, 3, 3, 3, 2, 1, 1, 1, 1],
|
||
[4, 3, 3, 3, 3, 1, 1, 1, 1],
|
||
[4, 3, 3, 3, 3, 2, 1, 1, 1],
|
||
[4, 3, 3, 3, 3, 2, 2, 1, 1]
|
||
];
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
// Polymorph options.
|
||
SW5E.polymorphSettings = {
|
||
keepPhysical: 'SW5E.PolymorphKeepPhysical',
|
||
keepMental: 'SW5E.PolymorphKeepMental',
|
||
keepSaves: 'SW5E.PolymorphKeepSaves',
|
||
keepSkills: 'SW5E.PolymorphKeepSkills',
|
||
mergeSaves: 'SW5E.PolymorphMergeSaves',
|
||
mergeSkills: 'SW5E.PolymorphMergeSkills',
|
||
keepClass: 'SW5E.PolymorphKeepClass',
|
||
keepFeats: 'SW5E.PolymorphKeepFeats',
|
||
keepPowers: 'SW5E.PolymorphKeepPowers',
|
||
keepItems: 'SW5E.PolymorphKeepItems',
|
||
keepBio: 'SW5E.PolymorphKeepBio',
|
||
keepVision: 'SW5E.PolymorphKeepVision'
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* Skill, ability, and tool proficiency levels
|
||
* Each level provides a proficiency multiplier
|
||
* @type {Object}
|
||
*/
|
||
SW5E.proficiencyLevels = {
|
||
0: "SW5E.NotProficient",
|
||
1: "SW5E.Proficient",
|
||
0.5: "SW5E.HalfProficient",
|
||
2: "SW5E.Expertise"
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
/**
|
||
* The amount of cover provided by an object.
|
||
* In cases where multiple pieces of cover are
|
||
* in play, we take the highest value.
|
||
*/
|
||
SW5E.cover = {
|
||
0: 'SW5E.None',
|
||
.5: 'SW5E.CoverHalf',
|
||
.75: 'SW5E.CoverThreeQuarters',
|
||
1: 'SW5E.CoverTotal'
|
||
};
|
||
|
||
/* -------------------------------------------- */
|
||
|
||
|
||
// Condition Types
|
||
SW5E.conditionTypes = {
|
||
"blinded": "SW5E.ConBlinded",
|
||
"charmed": "SW5E.ConCharmed",
|
||
"deafened": "SW5E.ConDeafened",
|
||
"diseased": "SW5E.ConDiseased",
|
||
"exhaustion": "SW5E.ConExhaustion",
|
||
"frightened": "SW5E.ConFrightened",
|
||
"grappled": "SW5E.ConGrappled",
|
||
"incapacitated": "SW5E.ConIncapacitated",
|
||
"invisible": "SW5E.ConInvisible",
|
||
"paralyzed": "SW5E.ConParalyzed",
|
||
"petrified": "SW5E.ConPetrified",
|
||
"poisoned": "SW5E.ConPoisoned",
|
||
"prone": "SW5E.ConProne",
|
||
"restrained": "SW5E.ConRestrained",
|
||
"shocked": "SW5E.ConShocked",
|
||
"slowed": "SW5E.ConSlowed",
|
||
"stunned": "SW5E.ConStunned",
|
||
"unconscious": "SW5E.ConUnconscious"
|
||
};
|
||
|
||
// Languages
|
||
SW5E.languages = {
|
||
"abyssin": "SW5E.LanguagesAbyssin",
|
||
"aleena": "SW5E.LanguagesAleena",
|
||
"antarian": "SW5E.LanguagesAntarian",
|
||
"anzellan": "SW5E.LanguagesAnzellan",
|
||
"aqualish": "SW5E.LanguagesAqualish",
|
||
"arconese": "SW5E.LanguagesArconese",
|
||
"ardennian": "SW5E.LanguagesArdennian",
|
||
"arkanian": "SW5E.LanguagesArkanian",
|
||
"balosur": "SW5E.LanguagesBalosur",
|
||
"barabel": "SW5E.LanguagesBarabel",
|
||
"basic": "SW5E.LanguagesBasic",
|
||
"besalisk": "SW5E.LanguagesBesalisk",
|
||
"binary": "SW5E.LanguagesBinary",
|
||
"bith": "SW5E.LanguagesBith",
|
||
"bocce": "SW5E.LanguagesBocce",
|
||
"bothese": "SW5E.LanguagesBothese",
|
||
"catharese": "SW5E.LanguagesCatharese",
|
||
"cerean": "SW5E.LanguagesCerean",
|
||
"chadra-fan": "SW5E.LanguagesChadra-Fan",
|
||
"chagri": "SW5E.LanguagesChagri",
|
||
"cheunh": "SW5E.LanguagesCheunh",
|
||
"chevin": "SW5E.LanguagesChevin",
|
||
"chironan": "SW5E.LanguagesChironan",
|
||
"clawdite": "SW5E.LanguagesClawdite",
|
||
"codruese": "SW5E.LanguagesCodruese",
|
||
"colicoid": "SW5E.LanguagesColicoid",
|
||
"dashadi": "SW5E.LanguagesDashadi",
|
||
"defel": "SW5E.LanguagesDefel",
|
||
"devaronese": "SW5E.LanguagesDevaronese",
|
||
"dosh": "SW5E.LanguagesDosh",
|
||
"draethos": "SW5E.LanguagesDraethos",
|
||
"durese": "SW5E.LanguagesDurese",
|
||
"dug": "SW5E.LanguagesDug",
|
||
"ewokese": "SW5E.LanguagesEwokese",
|
||
"falleen": "SW5E.LanguagesFalleen",
|
||
"felucianese": "SW5E.LanguagesFelucianese",
|
||
"gamorrese": "SW5E.LanguagesGamorrese",
|
||
"gand": "SW5E.LanguagesGand",
|
||
"geonosian": "SW5E.LanguagesGeonosian",
|
||
"givin": "SW5E.LanguagesGivin",
|
||
"gran": "SW5E.LanguagesGran",
|
||
"gungan": "SW5E.LanguagesGungan",
|
||
"hapan": "SW5E.LanguagesHapan",
|
||
"harchese": "SW5E.LanguagesHarchese",
|
||
"herglese": "SW5E.LanguagesHerglese",
|
||
"honoghran": "SW5E.LanguagesHonoghran",
|
||
"huttese": "SW5E.LanguagesHuttese",
|
||
"iktotchese": "SW5E.LanguagesIktotchese",
|
||
"ithorese": "SW5E.LanguagesIthorese",
|
||
"jawaese": "SW5E.LanguagesJawaese",
|
||
"kaleesh": "SW5E.LanguagesKaleesh",
|
||
"kaminoan": "SW5E.LanguagesKaminoan",
|
||
"karkaran": "SW5E.LanguagesKarkaran",
|
||
"keldor": "SW5E.LanguagesKelDor",
|
||
"kharan": "SW5E.LanguagesKharan",
|
||
"killik": "SW5E.LanguagesKillik",
|
||
"klatooinian": "SW5E.LanguagesKlatooinian",
|
||
"kubazian": "SW5E.LanguagesKubazian",
|
||
"kushiban": "SW5E.LanguagesKushiban",
|
||
"kyuzo": "SW5E.LanguagesKyuzo",
|
||
"lannik": "SW5E.LanguagesLannik",
|
||
"lasat": "SW5E.LanguagesLasat",
|
||
"lowickese": "SW5E.LanguagesLowickese",
|
||
"lurmese": "SW5E.LanguagesLurmese",
|
||
"mandoa": "SW5E.LanguagesMandoa",
|
||
"miralukese": "SW5E.LanguagesMiralukese",
|
||
"mirialan": "SW5E.LanguagesMirialan",
|
||
"moncal": "SW5E.LanguagesMonCal",
|
||
"mustafarian": "SW5E.LanguagesMustafarian",
|
||
"muun": "SW5E.LanguagesMuun",
|
||
"nautila": "SW5E.LanguagesNautila",
|
||
"ortolan": "SW5E.LanguagesOrtolan",
|
||
"pakpak": "SW5E.LanguagesPakPak",
|
||
"pyke": "SW5E.LanguagesPyke",
|
||
"quarrenese": "SW5E.LanguagesQuarrenese",
|
||
"rakata": "SW5E.LanguagesRakata",
|
||
"rattataki": "SW5E.LanguagesRattataki",
|
||
"rishii": "SW5E.LanguagesRishii",
|
||
"rodese": "SW5E.LanguagesRodese",
|
||
"ryn": "SW5E.LanguagesRyn",
|
||
"selkatha": "SW5E.LanguagesSelkatha",
|
||
"semblan": "SW5E.LanguagesSemblan",
|
||
"shistavanen": "SW5E.LanguagesShistavanen",
|
||
"shyriiwook": "SW5E.LanguagesShyriiwook",
|
||
"sith": "SW5E.LanguagesSith",
|
||
"squibbian": "SW5E.LanguagesSquibbian",
|
||
"sriluurian": "SW5E.LanguagesSriluurian",
|
||
"ssi-ruuvi": "SW5E.LanguagesSsi-ruuvi",
|
||
"sullustese": "SW5E.LanguagesSullustese",
|
||
"talzzi": "SW5E.LanguagesTalzzi",
|
||
"tarasinese": "SW5E.LanguagesTarasinese",
|
||
"thisspiasian": "SW5E.LanguagesThisspiasian",
|
||
"togorese": "SW5E.LanguagesTogorese",
|
||
"togruti": "SW5E.LanguagesTogruti",
|
||
"toydarian": "SW5E.LanguagesToydarian",
|
||
"tusken": "SW5E.LanguagesTusken",
|
||
"twi'leki": "SW5E.LanguagesTwileki",
|
||
"ugnaught": "SW5E.LanguagesUgnaught",
|
||
"umbaran": "SW5E.LanguagesUmbaran",
|
||
"utapese": "SW5E.LanguagesUtapese",
|
||
"verpine": "SW5E.LanguagesVerpine",
|
||
"vong": "SW5E.LanguagesVong",
|
||
"voss": "SW5E.LanguagesVoss",
|
||
"yevethan": "SW5E.LanguagesYevethan",
|
||
"zabraki": "SW5E.LanguagesZabraki",
|
||
"zygerrian": "SW5E.LanguagesZygerrian"
|
||
};
|
||
|
||
// Character Level XP Requirements
|
||
SW5E.CHARACTER_EXP_LEVELS = [
|
||
0, 300, 900, 2700, 6500, 14000, 23000, 34000, 48000, 64000, 85000, 100000,
|
||
120000, 140000, 165000, 195000, 225000, 265000, 305000, 355000]
|
||
;
|
||
|
||
// Challenge Rating XP Levels
|
||
SW5E.CR_EXP_LEVELS = [
|
||
10, 200, 450, 700, 1100, 1800, 2300, 2900, 3900, 5000, 5900, 7200, 8400, 10000, 11500, 13000, 15000, 18000,
|
||
20000, 22000, 25000, 33000, 41000, 50000, 62000, 75000, 90000, 105000, 120000, 135000, 155000
|
||
];
|
||
|
||
// Character Features Per Class And Level
|
||
SW5E.classFeatures = ClassFeatures;
|
||
|
||
// Configure Optional Character Flags
|
||
SW5E.characterFlags = {
|
||
"adaptiveResilience": {
|
||
name: "SW5E.FlagsAdaptiveResilience",
|
||
hint: "Prolongued use of technology allows members of your species to readily adapt to its effects. You have advantage on Strength and Constitution saving throws against tech powers.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"aggressive": {
|
||
name: "SW5E.FlagsAggressive",
|
||
hint: "As a bonus action, you can move up to your speed toward an enemy of your choice that you can see or hear. You must end this move closer to the enemy than you started.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"amphibious": {
|
||
name: "SW5E.FlagsAmphibious",
|
||
hint: "You can breathe air and water.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"armorIntegration": {
|
||
name: "SW5E.FlagsArmorIntegration",
|
||
hint: "You cannot wear armor, but you can have the armor professionally integrated into your chassis over the course of a long rest. This work must be done by someone proficient with astrotech’s implements. You must be proficient in armor in order to have it integrated.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"businessSavvy": {
|
||
name: "SW5E.FlagsBusinessSavvy",
|
||
hint: "Whenever you make a Charisma (Persuasion) check involving haggling you are considered to have expertise in the Persuasion skill.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"cannibalize": {
|
||
name: "SW5E.FlagsCannibalize",
|
||
hint: "If you spend at least 1 minute devouring the corpse of a beast or humanoid, you gain temporary hit points equal to your Constitution modifier. Once you've used this feature, you must complete a short or long rest before you can use it again.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"closedMind": {
|
||
name: "SW5E.FlagsClosedMind",
|
||
hint: "Members of your species have a natural attunement to the Force, which makes them resistant to its powers. You have advantage on Wisdom and Charisma saving throws against force powers.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"crudeWeaponSpecialists": {
|
||
name: "SW5E.FlagsCrudeWeaponSpecialists",
|
||
hint: "Members of your species are used to making do with less. You can spend 1 hour, which you can do over the course of a short rest, crafting a weapon out of loose materials. You can craft any simple kinetic weapon, but the weapon’s damage suffers a -1 penalty.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"defiant": {
|
||
name: "SW5E.FlagsDefiant",
|
||
hint: "Members of your species are known to be stubborn and often refuse to give up, even against the worst odds. When you or a creature you can see that can see and understand you makes an ability check, attack roll, or saving throw, you can roll a d4 and add it to their roll (no action required). You can use this before or after the roll, but before the GM determines the roll’s outcome. Once you’ve used this feature, you must complete a short or long rest before you can use it again.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"detailOriented": {
|
||
name: "SW5E.FlagsDetailOriented",
|
||
hint: "You have advantage on Intelligence (Investigation) checks within 5 feet.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"enthrallingPheromones": {
|
||
name: "SW5E.FlagsEnthrallingPheromones",
|
||
hint: "You can use your pheromones to influence individuals of both sexes. Whenever you roll a 1 on a Charisma (Persuasion) check, you can reroll the die and must use the new roll. Additionally, once per short or long rest, you can treat a d20 roll of 9 or lower on a Charisma check as a 10. This feature has no effect on droids or constructs.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"extraArms": {
|
||
name: "SW5E.FlagsExtraArms",
|
||
hint: "You possess more than two arms, which you can use independently of one another. 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).",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"forceContention": {
|
||
name: "SW5E.FlagsForceContention",
|
||
hint: "Due to their unique physiology, members of your species exhibit a hardiness that allows them to overcome use of the Force. You have advantage on Strength and Constitution saving throws against force powers.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"forceInsensitive": {
|
||
name: "SW5E.FlagsForceInsensitive",
|
||
hint: "While droids can be manipulated by many force powers, they cannot sense the Force. You can not use force powers or take levels in forcecasting classes.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"foreignBiology": {
|
||
name: "SW5E.FlagsForeignBiology",
|
||
hint: "You wear a breathing apparatus because many atmospheres in the galaxy differ from that of your species' homeworld. If your apparatus is removed while you are in such an environment, you lose consciousness.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"furyOfTheSmall": {
|
||
name: "SW5E.FlagsFuryOfTheSmall",
|
||
hint: "When you damage a creature with an attack or a power and the creature's size is larger than yours, you can cause the attack or power to deal extra damage to the creature. The extra damage equals your level. Once you use this trait, you can't use it again until you finish a short or long rest.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"grovelCowerAndBeg": {
|
||
name: "SW5E.FlagsGrovelCowerAndBeg",
|
||
hint: "As an action on your turn, you can cower pathetically to distract nearby foes. Until the end of your next turn, your allies gain advantage on attack rolls against enemies within 10 feet of you that can see you. Once you use this trait, you can’t use it again until you finish a short or long rest.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"inscrutable": {
|
||
name: "SW5E.FlagsInscrutable",
|
||
hint: "Your calm demeaner and control make you hard to read. Wisdom (Insight) checks made against you have disadvantage, and you have advantage on any saving throw against an effect that would read your thoughts.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"keenSenses": {
|
||
name: "SW5E.FlagsKeenSenses",
|
||
hint: "You have advantage on Wisdom (Perception) checks that involve using particular senses (see your species' traits for details).",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"longlimbed": {
|
||
name: "SW5E.FlagsLongLimbed",
|
||
hint: "When you make a melee attack on your turn, your reach for it is 5 feet greater than normal.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"maintenanceMode": {
|
||
name: "SW5E.FlagsMaintenanceMode",
|
||
hint: "Rather than sleep, you enter an inactive state to perform routine maintenance for 4 hours each day. You have disadvantage on Wisdom (Perception) checks while performing maintenance.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"maskOfTheWild": {
|
||
name: "SW5E.FlagsMaskOfTheWild",
|
||
hint: "You can attempt to hide even when you are only lightly obscured by foliage, heavy rain, falling snow, mist, and other natural phenomena.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"multipleHearts": {
|
||
name: "SW5E.FlagsMultipleHearts",
|
||
hint: "When you are reduced to 0 hit points 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.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"naturallyStealthy": {
|
||
name: "SW5E.FlagsNaturallyStealthy",
|
||
hint: "You can attempt to hide even when you are obscured only by a creature that is your size or larger than you.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"nimbleAgility": {
|
||
name: "SW5E.FlagsNimbleAgility",
|
||
hint: "Your reflexes and agility allow you to move with a burst of speed. When you move on your turn in combat, you can double your speed until the end of the turn. Once you use this trait, you can't use it again until you move 0 feet on one of your turns.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"nimbleEscape": {
|
||
name: "SW5E.FlagsNimbleEscape",
|
||
hint: "You can take the Disengage or Hide action as a bonus action.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"nimbleness": {
|
||
name: "SW5E.FlagsNimbleness",
|
||
hint: "You can move through the space of any creature that is of a size larger than yours.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"pintsized": {
|
||
name: "SW5E.FlagsPintsized",
|
||
hint: "Your tiny stature makes it hard for you to wield bigger weapons. You can’t use medium or heavy shields. Additionally, you can’t wield weapons with the two-handed or versatile property, and you can only wield one-handed weapons in two hands unless they have the light property.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"powerfulBuild": {
|
||
name: "SW5E.FlagsPowerfulBuild",
|
||
hint: "SW5E.FlagsPowerfulBuildHint",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"precognition": {
|
||
name: "SW5E.FlagsPrecognition",
|
||
hint: "You can see brief visions of the future that allow you to turn failures into successes. When you roll a 1 on an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"programmer": {
|
||
name: "SW5E.FlagsProgrammer",
|
||
hint: "Whenever you make an Intelligence (Technology) check related to computers, you are considered to have expertise in the Technology skill.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"puny": {
|
||
name: "SW5E.FlagsPuny",
|
||
hint: "Members of your species are too small to pack much of a punch. You have disadvantage on Strength saving throws, and when determining your bonus to attack and damage rolls for weapon attacks using Strength, you can’t add more than +3.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"rapidReconstruction": {
|
||
name: "SW5E.FlagsRapidReconstruction",
|
||
hint: "You are built with internal repair mechanisms. As a bonus action, you can choose to spend one of your Hit Dice to recover hit points.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"rapidlyRegenerative": {
|
||
name: "SW5E.FlagsRapidlyRegenerative",
|
||
hint: "You heal quickly, both at will and in response to danger. As a bonus action, you can choose to spend one of your Hit Dice to recover hit points. Additionally, when you take damage, you can use your reaction and expend a Hit Die to regain hit points as long as the damage would not reduce your hit points to 0.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"regenerative": {
|
||
name: "SW5E.FlagsRegenerative",
|
||
hint: "When you take damage, you can use your reaction and expend a Hit Die to regain hit points as long as the damage would not reduce your hit points to 0.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"savageAttacks": {
|
||
name: "SW5E.FlagsSavageAttacks",
|
||
hint: "SW5E.FlagsSavageAttacksHint",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"shapechanger": {
|
||
name: "SW5E.FlagsShapechanger",
|
||
hint: "As an action, you can change your appearance and your voice. You determine the specifics of the changes, including your coloration, hair length, and sex. You can also adjust your height and weight, but not so much that your size changes. You can make yourself appear as a member of another species, though none of your game statistics change. You can't duplicate the appearance of a creature you've never seen, and you must adopt a form that has the same basic arrangement of limbs that you have. Your clothing and equipment aren't changed by this trait. You stay in the new form until you use an action to revert to your true form or until you die.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"strongLegged": {
|
||
name: "SW5E.FlagsStrongLegged",
|
||
hint: "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.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"sunlightSensitivity": {
|
||
name: "SW5E.FlagsSunlightSensitivity",
|
||
hint: "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"surpriseAttack": {
|
||
name: "SW5E.FlagsSurpriseAttack",
|
||
hint: "If you surprise a creature and hit it with an attack on your first turn in combat, the attack deals an extra 2d6 damage to it. You can use this trait only once per combat.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"techImpaired": {
|
||
name: "SW5E.FlagsTechImpaired",
|
||
hint: "While members of your species can figure out basic technology, they experience difficulty using more complex equipment like wristpads. You cannot use tech powers or take levels in techcasting classes.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"techResistance": {
|
||
name: "SW5E.FlagsTechResistance",
|
||
hint: "You have advantage on Dexterity and Intelligence saving throws against tech powers.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"tinker": {
|
||
name: "SW5E.FlagsTinker",
|
||
hint: "You have proficiency with tinker’s implements. You can use these and spend 1 hour and 100 cr worth of materials to construct a Tiny Device (AC 5, 1 hp). You can take the Use an Object action to have your device cause one of a variety of minor effects (see your species' traits list). You can maintain a number of these devices up to your proficiency bonus at once, and a device stops functioning after 24 hours away from you. You can dismantle the device to reclaim the materials used to create it.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"toughness": {
|
||
name: "SW5E.FlagsToughness",
|
||
hint: "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"trance": {
|
||
name: "SW5E.FlagsTrance",
|
||
hint: "Either through meditation or a reduced sleep schedule, you are able to receive the rest you require on a daily basis (see your species' traits for details). After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"unarmedCombatant": {
|
||
name: "SW5E.FlagsUnarmedCombatant",
|
||
hint: "Your unarmed strikes deal 1d4 kinetic damage. You can use your choice of your Strength or Dexterity modifier for the attack and damage rolls. You must use the same modifier for both rolls.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"undersized": {
|
||
name: "SW5E.FlagsUndersized",
|
||
hint: "Your small stature makes it hard for you to wield bigger weapons. You can’t use heavy shields, martial weapons with the two-handed property unless it also has the light property, and if a martial weapon has the versatile property, you can only wield it in two hands.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"unsettlingVisage": {
|
||
name: "SW5E.FlagsUnsettlingVisage",
|
||
hint: "When a creature you can see makes an attack roll against you, you can use your reaction to impose disadvantage on the roll. You must use this feature before knowing whether the attack hits or misses. Using this trait reveals your shapeshifting nature to any creature within 30 feet that can see you. Once you use this trait, you can't use it again until you finish a short or long rest.",
|
||
section: "Species Traits",
|
||
type: Boolean
|
||
},
|
||
"initiativeAdv": {
|
||
name: "SW5E.FlagsInitiativeAdv",
|
||
hint: "SW5E.FlagsInitiativeAdvHint",
|
||
section: "Feats",
|
||
type: Boolean
|
||
},
|
||
"initiativeAlert": {
|
||
name: "SW5E.FlagsAlert",
|
||
hint: "SW5E.FlagsAlertHint",
|
||
section: "Feats",
|
||
type: Boolean
|
||
},
|
||
"jackOfAllTrades": {
|
||
name: "SW5E.FlagsJOAT",
|
||
hint: "SW5E.FlagsJOATHint",
|
||
section: "Feats",
|
||
type: Boolean
|
||
},
|
||
"observantFeat": {
|
||
name: "SW5E.FlagsObservant",
|
||
hint: "SW5E.FlagsObservantHint",
|
||
skills: ['prc','inv'],
|
||
section: "Feats",
|
||
type: Boolean
|
||
},
|
||
"reliableTalent": {
|
||
name: "SW5E.FlagsReliableTalent",
|
||
hint: "SW5E.FlagsReliableTalentHint",
|
||
section: "Feats",
|
||
type: Boolean
|
||
},
|
||
"remarkableAthlete": {
|
||
name: "SW5E.FlagsRemarkableAthlete",
|
||
hint: "SW5E.FlagsRemarkableAthleteHint",
|
||
abilities: ['str','dex','con'],
|
||
section: "Feats",
|
||
type: Boolean
|
||
},
|
||
"weaponCriticalThreshold": {
|
||
name: "SW5E.FlagsWeaponCritThreshold",
|
||
hint: "SW5E.FlagsWeaponCritThresholdHint",
|
||
section: "Feats",
|
||
type: Number,
|
||
placeholder: 20
|
||
},
|
||
"powerCriticalThreshold": {
|
||
name: "SW5E.FlagsPowerCritThreshold",
|
||
hint: "SW5E.FlagsPowerCritThresholdHint",
|
||
section: "Feats",
|
||
type: Number,
|
||
placeholder: 20
|
||
},
|
||
"meleeCriticalDamageDice": {
|
||
name: "SW5E.FlagsMeleeCriticalDice",
|
||
hint: "SW5E.FlagsMeleeCriticalDiceHint",
|
||
section: "Feats",
|
||
type: Number,
|
||
placeholder: 0
|
||
}
|
||
};
|
||
|
||
// Configure allowed status flags
|
||
SW5E.allowedActorFlags = ["isPolymorphed", "originalActor"].concat(Object.keys(SW5E.characterFlags));
|