diff --git a/lang/en.json b/lang/en.json index 31625c2f..8444e82b 100644 --- a/lang/en.json +++ b/lang/en.json @@ -187,6 +187,7 @@ "SW5E.BonusSaveForm": "Update Bonuses", "SW5E.BonusTechPowerDC": "Global Tech Power DC Bonus", "SW5E.BonusTitle": "Configure Actor Bonuses", + "SW5E.BurnFuel": "Burn", "SW5E.CapacityMultiplier": "Capacity Multiplier", "SW5E.CentStorageCapacity": "Central Storage Capacity", "SW5E.ChallengeRating": "Challenge Rating", @@ -480,7 +481,9 @@ "SW5E.Flaws": "Flaws", "SW5E.ForcePowerbook": "Force Powers", "SW5E.Formula": "Formula", + "SW5E.FuelCapacity": "Fuel Capacity", "SW5E.FuelCostsMod": "Fuel Costs Modifier", + "SW5E.FuelCostPerUnit": "Fuel Cost per Unit", "SW5E.GrantedAbilities": "Granted Abilities", "SW5E.HalfProficient": "Half Proficient", "SW5E.HardpointSizeMod": "Hardpoint Size Modifier", @@ -868,6 +871,7 @@ "SW5E.RefittingRestResultHD": "{name} takes a refitting rest and recovers {dice} Hull Dice.", "SW5E.RefittingRestResultHP": "{name} takes a refitting rest and recovers {health} Hull Points.", "SW5E.RefittingRestResultHPHD": "{name} takes a refitting rest and recovers {health} Hull Points and {dice} Hull Dice.", + "SW5E.Refuel": "Refuel", "SW5E.RegenerationRateCoefficient": "Regeneration Rate Coefficient", "SW5E.RequiredMaterials": "Required Materials", "SW5E.Requirements": "Requirements", diff --git a/less/original/actors.less b/less/original/actors.less index 84553cae..a3e3c164 100644 --- a/less/original/actors.less +++ b/less/original/actors.less @@ -662,6 +662,77 @@ .editor { padding: 0 8px; } + .fuel { + flex: 0 0 12px; + background: #7a7971; + margin: 1px 15px 0 1px; + border: 1px solid #191813; + border-radius: 3px; + position: relative; + .fuel-bar { + position: absolute; + top: 1px; + left: 1px; + background: #6c8aa5; + height: 8px; + border: 1px solid #cde4ff; + border-radius: 2px; + } + .fuel-label { + height: 10px; + padding: 0 5px; + position: absolute; + top: 0; + right: 0; + font-size: 13px; + line-height: 12px; + text-align: right; + color: #EEE; + text-shadow: 0 0 5px #000; + } + .fuel-breakpoint { + display: block; + position: absolute; + } + .fuel-breakpoint.fuel-20 { + left: 20%; + } + .fuel-breakpoint.fuel-40 { + left: 40%; + } + .fuel-breakpoint.fuel-60 { + left: 60%; + } + .fuel-breakpoint.fuel-80 { + left: 80%; + } + .arrow-up { + bottom: 0; + width: 0; + height: 0; + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-bottom: 4px solid #000; + } + .arrow-down { + top: 0; + width: 0; + height: 0; + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 4px solid #000; + } + } + .fuel.fueled { + .arrow-up { + border-bottom: 4px solid #fff; + border-bottom: 4px solid #000; + } + .arrow-down { + border-top: 4px solid #fff; + border-top: 4px solid #000; + } + } } #actor-flags { diff --git a/less/update/components/actor-global.less b/less/update/components/actor-global.less index 907906f4..eef89363 100644 --- a/less/update/components/actor-global.less +++ b/less/update/components/actor-global.less @@ -249,7 +249,45 @@ } } } - + + .panel.resources { + .traits { + .fuel-wrapper { + display: grid; + grid-template-columns: 300px 100px; + width: 400px; + justify-self: end; + .fuel-label { + font-size: 12px; + line-height: 14px; + width: 100%; + text-shadow: none; + padding: 0; + margin: 0; + height: auto; + text-align: center; + margin-left: -2px; + border-radius: 0 4px 4px 0; + } + .fuel { + position: relative; + border-radius: 4px; + height: 16px; + margin: 0; + width: 100%; + .fuel-bar { + position: absolute; + top: 0; + left: 0; + height: 100%; + border-radius: 4px; + border: none; + } + } + } + } + } + nav.sheet-navigation { display: grid; grid-template-columns: repeat(7, 1fr); @@ -1097,4 +1135,44 @@ } } } + input[type=range][orient=vertical] { + -webkit-appearance: slider-vertical; + width: 10px; + height: 60px !important; + padding: 0 0 !important; + background-color: #c40f0f !important; + box-sizing: border-box; + &::-webkit-slider-runnable-track { + -webkit-appearance: slider-vertical !important; + height: 60px !important; + width: 10px !important; + line-height: 60px !important; + padding-top: 0 !important; + padding-bottom: 0 !important; + margin-top: 0 0 !important; + border-radius: 3px !important; + background: linear-gradient( to top, #c40f0f 50%, #0dce0d 50% ); + } + &::-webkit-slider-thumb { + -webkit-appearance: none !important; + background-color: #c40f0f !important; + margin-right: -4px !important; + margin-top: 0px !important; + cursor: grab !important; + border-radius: 0 0 0 0 !important; + width: 10px !important; + height: 5px !important; + font-size: 10px; + } + } + output { + display: block; + margin: 5px auto; + font-size: 1.75em; + } + input { + .vertslider { + height: 60px; + } + } } diff --git a/less/update/sw5e-dark.less b/less/update/sw5e-dark.less index 1dc380db..3d96ef34 100644 --- a/less/update/sw5e-dark.less +++ b/less/update/sw5e-dark.less @@ -34,6 +34,28 @@ body.dark-theme { border: 1px solid @blockquoteBorder; box-shadow: @blockquoteShadow; } + + .sw5e.sheet.actor { + .swalt-sheet { + .panel.resources { + .traits { + .fuel-wrapper { + .fuel-label { + background: #D6D6D6; + color: #1C1C1C; + border: 1px solid #1C1C1C; + } + .fuel { + background: #c40f0f; + .fuel-bar { + background: #0dce0d; + } + } + } + } + } + } + } hr { border-width: 0 0 1px 0; diff --git a/less/update/sw5e-light.less b/less/update/sw5e-light.less index 0f898c80..9a9b5f9e 100644 --- a/less/update/sw5e-light.less +++ b/less/update/sw5e-light.less @@ -34,6 +34,28 @@ body.light-theme { border: 1px solid @blockquoteBorder; box-shadow: @blockquoteShadow; } + + .sw5e.sheet.actor { + .swalt-sheet { + .panel.resources { + .traits { + .fuel-wrapper { + .fuel-label { + background: #D6D6D6; + color: #1C1C1C; + border: 1px solid #1C1C1C; + } + .fuel { + background: #c40f0f; + .fuel-bar { + background: #0dce0d; + } + } + } + } + } + } + } hr { border-width: 0 0 1px 0; diff --git a/module/actor/entity.js b/module/actor/entity.js index 7ce40561..203958b2 100644 --- a/module/actor/entity.js +++ b/module/actor/entity.js @@ -77,7 +77,11 @@ export default class Actor5e extends Actor { // Inventory encumbrance data.attributes.encumbrance = this._computeEncumbrance(actorData); - + + if (actorData.type === "starship") { + data.attributes.fuel = this._computeFuel(actorData); + } + // Prepare skills this._prepareSkills(actorData, bonuses, checkBonus, originalSkills); @@ -647,8 +651,17 @@ export default class Actor5e extends Actor { const pct = Math.clamped((weight * 100) / max, 0, 100); return { value: weight.toNearest(0.1), max, pct, encumbered: pct > (2/3) }; } - - /* -------------------------------------------- */ + + _computeFuel(actorData) { + let fuel = actorData.data.attributes.fuel.value; + // Compute Fuel percentage + fuel = fuel.toNearest(0.1); + const max = actorData.data.attributes.fuel.cap; + const pct = Math.clamped((fuel * 100) / max, 0, 100); + return { value: fuel.toNearest(0.1), max, pct, fueled: pct > 0 }; + } + + /* -------------------------------------------- */ /* Socket Listeners and Handlers /* -------------------------------------------- */ diff --git a/module/actor/sheets/newSheet/starship.js b/module/actor/sheets/newSheet/starship.js index 3e08cdcf..c5b5dc1d 100644 --- a/module/actor/sheets/newSheet/starship.js +++ b/module/actor/sheets/newSheet/starship.js @@ -17,6 +17,7 @@ export default class ActorSheet5eStarship extends ActorSheet5e { return mergeObject(super.defaultOptions, { classes: ["sw5e", "sheet", "actor", "starship"], width: 800, + height: 775, tabs: [{ navSelector: ".root-tabs", contentSelector: ".sheet-body", @@ -135,6 +136,7 @@ export default class ActorSheet5eStarship extends ActorSheet5e { activateListeners(html) { super.activateListeners(html); html.find(".health .rollable").click(this._onRollHPFormula.bind(this)); + html.find('.refuel').click(this._onIncrementFuelLevel.bind(this)); } /* -------------------------------------------- */ @@ -153,4 +155,81 @@ export default class ActorSheet5eStarship extends ActorSheet5e { this.actor.update({"data.attributes.hp.value": hp, "data.attributes.hp.max": hp}); } + /* -------------------------------------------- */ + + /** + * Handle refueling a starship + * @param {Event} event The original click event + * @private + */ + _onIncrementFuelLevel(event) { + event.preventDefault(); + const fuelcaparray = this.actor.data.effects.changes; + var fuelcappos = fuelcaparray.indexOf('fuel.cap'); + const refuel = this.actor.data.effect.changes[fuelcappos].value; + this.actor.update({"data.attributes.fuel.value": refuel}); + } + + function engineSliderUpdate(num) { + var symbol; + var coefficient; + switch(num) { + case "0": + symbol = "↓"; + coefficient = 0.5; + break; + case "1": + symbol = "="; + coefficient = 1; + break; + case "2": + symbol = "↑"; + coefficient = 2; + }; + let slideroutput = symbol; + document.querySelector('#engineslideroutput').value = slideroutput; + this.actor.update({"data.attributes.engpow": coefficient}); + } + + function shieldSliderUpdate(num) { + var symbol; + var coefficient; + switch(num) { + case "0": + symbol = "↓"; + coefficient = 0.5; + break; + case "1": + symbol = "="; + coefficient = 1; + break; + case "2": + symbol = "↑"; + coefficient = 2; + }; + let slideroutput = symbol; + document.querySelector('#shieldslideroutput').value = slideroutput; + this.actor.update({"data.attributes.shieldpow": coefficient}); + } + + function weaponSliderUpdate(num) { + var symbol; + var coefficient; + switch(num) { + case "0": + symbol = "↓"; + coefficient = 0.5; + break; + case "1": + symbol = "="; + coefficient = 1; + break; + case "2": + symbol = "↑"; + coefficient = 2; + }; + let slideroutput = symbol; + document.querySelector('#weaponslideroutput').value = slideroutput; + this.actor.update({"data.attributes.weaponpow": coefficient}); + } } \ No newline at end of file diff --git a/module/config.js b/module/config.js index a3bc8157..d4179de9 100644 --- a/module/config.js +++ b/module/config.js @@ -367,6 +367,7 @@ SW5E.movementTypes = { "crawl": "SW5E.MovementCrawl", "fly": "SW5E.MovementFly", "roll": "SW5E.MovementRoll", + "space": "SW5E.MovementSpace", "swim": "SW5E.MovementSwim", "turn": "SW5E.MovementTurn", "walk": "SW5E.MovementWalk", diff --git a/packs/packs/adventuringgear.db b/packs/packs/adventuringgear.db index 18aedea4..822511dc 100644 --- a/packs/packs/adventuringgear.db +++ b/packs/packs/adventuringgear.db @@ -52,7 +52,7 @@ {"name":"Traz","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":6,"price":300,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Musical%20Instrument/Traz.webp","_id":"UQu4duMtxYEXKAbo"} {"name":"Tent, two-person","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"","chat":"","unidentified":""},"source":"","quantity":1,"weight":5,"price":20,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Tent.webp","_id":"UxL0trd3omeqzBk4"} {"name":"Homing Beacon","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"

A homing beacon is a device used to track starships or any other entity being transported. Homing beacons transmit using non-mass HoloNet transceivers able to be tracked through hyperspace. Homing beacons are small enough that they can easily be hidden inside a ship, or tucked into some crevice on its exterior.

","chat":"","unidentified":""},"source":"","quantity":1,"weight":1,"price":450,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Utility/Homing%20Beacon.webp","_id":"V2hSxkLfq461mvNz"} -{"name":"Power Cell","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"

Power cells fuel blaster weapons that deal energy or ion damage. Additionally, power cells are used to energize certain tools.

","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation": {"type": "none","cost": null,"condition": ""},"duration": {"value": null,"units": ""},"target": {"value": null,"width": null,"units": "","type": ""},range":{"value": null,"long": null,"units": ""},"uses": {"value": 100,"max": "100","per": "charges","autoDestroy": false},"consume": {"type": "","target": "","amount": null},"ability": null,"actionType": "","attackBonus": 0,"chatFlavor": "","critical": null,"damage": {"parts": [],"versatile": ""},"formula": "","save": {"ability": "","dc": null,"scaling": "spell"},"consumableType": "ammo","attributes": {"spelldc": 10},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Power%20Cell.webp","_id":"VUkO1T2aYMuUcBZM"} +{"name":"Power Cell","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"

Power cells fuel blaster weapons that deal energy or ion damage. Additionally, power cells are used to energize certain tools.

","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":240,"max":240,"per":"charges","autoDestroy":false},"consume":{"type":"","target":"","amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Power%20Cell.webp","_id":"VUkO1T2aYMuUcBZM"} {"name":"Propulsion pack","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"

Propulsion packs enhance underwater movement. Activating or deactivating the propulsion pack requires a bonus action and, while active, you have a swimming speed of 30 feet. The propulsion pack lasts for 1 minute per power cell (to a maximum of 10 minutes) and can be recharged by a power source or replacing the power cells.

","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":20,"price":400,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Weapon%20or%20Armor%20Accessory/Propulsion%20Pack.webp","_id":"XR1obpDj1PqDLfA8"} {"name":"Emergency Battery","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"

All non-expendable droids need recharging as they are used. The battery has ten uses. As an action, you can expend one use of the kit to stabilize a droid that has 0 hit points, without needing to make an Intelligence (Technology) check.

","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":5,"price":70,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":1,"units":"","type":"creature"},"range":{"value":null,"long":null,"units":""},"uses":{"value":10,"max":10,"per":"charges","autoDestroy":true},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"other","attackBonus":0,"chatFlavor":"Stabilize Droid","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"potion","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Medical/Emergency%20Battery.webp","_id":"Z0YM3aYCyCRhL6cx"} {"name":"Smugglepack","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"backpack","data":{"description":{"value":"

This backpack comes with a main compartment that can store up to 15 lb., not exceeding a volume of 1/2 cubic foot. Additionally, it has a hidden storage compartment that can hold up to 5 lb, not exceeding a volume of 1/4 cubic foot. Finding the hidden compartment requires a DC 15 Investigation check.

","chat":"","unidentified":""},"source":"WH","quantity":1,"weight":6,"price":400,"attuned":false,"equipped":false,"rarity":"","identified":true,"capacity":{"type":"weight","value":20,"weightless":false},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Storage/Smugglerpack.webp","_id":"Zlj5z56A4oVQ5iEC"} @@ -111,4 +111,3 @@ {"name":"Headcomm","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"loot","data":{"description":{"value":"

A headcomm can be installed in a helmet or worn independently. It functions as a hands-free commlink.

","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":200,"attuned":false,"equipped":false,"rarity":"","identified":true,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{},"img":"systems/sw5e/packs/Icons/Communications/Headcomm.webp","_id":"zHERdLuCUPpxzaSJ"} {"name":"Poisoner's Kit","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"tool","data":{"description":{"value":"

A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.

","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":500,"attuned":false,"equipped":false,"rarity":"","identified":true,"ability":"int","chatFlavor":"","proficient":0,"attributes":{"spelldc":10},"damage":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Kit/Poisoner_s%20Kit.webp","_id":"zaLzNlsfzRf71Xpl"} {"name":"Mine, Plasma","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"weapon","data":{"description":{"value":"

When you use your action to set it, this mine sets an imperceptible laser line extending up to 15 feet. When the laser is tripped, the mine explodes, coating the area in a 15-foot radius around it in fire that burns for 1 minute. When a creature enters the fire or starts its turn there it must make a DC 13 Dexterity saving throw. On a failed save, the creature takes 2d6 fire damage, or half as much on a successful one. A construct makes this save with disadvantage.

","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":2,"price":550,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"action","cost":1,"condition":""},"duration":{"value":null,"units":""},"target":{"value":15,"units":"ft","type":"radius"},"range":{"value":null,"long":null,"units":""},"uses":{"value":1,"max":1,"per":"charges"},"consume":{"type":"","target":"","amount":null},"ability":"","actionType":"save","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"dex","dc":13,"scaling":"flat"},"weaponType":"improv","properties":{"amm":false,"fin":false,"fir":false,"foc":false,"hvy":false,"lgt":false,"lod":false,"rch":false,"rel":false,"ret":false,"spc":false,"thr":false,"two":false,"ver":false},"proficient":false,"attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Explosive/Mine%2C%20Plasma.webp","_id":"zrSOUA8dUg9lHVdS"} -{"name":"Power Cell","permission":{"default":0,"vXYkFWX6qzvOu2jc":3},"type":"consumable","data":{"description":{"value":"

Power cells fuel blaster weapons that deal energy or ion damage. Additionally, power cells are used to energize certain tools.

","chat":"","unidentified":""},"source":"PHB","quantity":1,"weight":1,"price":10,"attuned":false,"equipped":false,"rarity":"","identified":true,"activation":{"type":"","cost":null,"condition":""},"duration":{"value":null,"units":""},"target":{"value":null,"units":"","type":""},"range":{"value":null,"long":null,"units":""},"uses":{"value":240,"max":240,"per":"charges","autoDestroy":false},"consume":{"type":"","target":"","amount":null},"ability":null,"actionType":"","attackBonus":0,"chatFlavor":"","critical":null,"damage":{"parts":[],"versatile":""},"formula":"","save":{"ability":"","dc":null,"scaling":"spell"},"consumableType":"ammo","attributes":{"spelldc":10}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false,"effects":[]}},"img":"systems/sw5e/packs/Icons/Ammunition/Power%20Cell.webp","_id":"VUkO1T2aYMuUcBZM"} diff --git a/packs/packs/species.db b/packs/packs/species.db index 0d23b8ee..c2dbeeed 100644 --- a/packs/packs/species.db +++ b/packs/packs/species.db @@ -16,6 +16,7 @@ {"_id":"ArdRIBU7d9vvkbGA","name":"Togruta","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

Togruta have rusty skin tones ranging in hue from blue to red to green, with white pigmentation on their faces, greyish lips, and white stripes adorn various parts of their bodies. The pattern of stripes varies from individual to individual. This red and white pattern was a phenotype left over from their ancestor's camouflage that helped them to blend in with Shili's natural surroundings.

Their heads bear two montrals, with three to four head-tails, whose stripes were darker than those of the montrals. Togruta have the ability to sense the proximity and movement of physical objects around them by means of their hollow montrals, which detect space ultrasonically. Young togrutas' montrals and posterior head-tail do not fully grow until adolescence, when their montrals curve and their final head-tail grows to the length of their other head-tails.

Society and Culture

Togruta have a strong sense of unity and togetherness. On their native homeworld of Shili, they rely on each other and band together to take a stand against the massive monsters that hunt them. The creatures of Shili most often attack in groups, which was even more reason for the native togruta to work together. While most of Shili is covered in the scrublands where the togruta hunt their herbivorous prey, the togruta live in small communities in the forest valleys.

Names

Togruta names are typically long. Surnames are familial.

  Male Names. Acanaar, Mukraas, Obolak, Tokrym

  Female Names. Akoma, Maasha, Okohlo, Shola

  Surnames. Hyl, Na, Nim, Ris, Resh, Vaal, Zin

","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Wisdom score increases by 2, and your Strength or Dexterity score increases by 1.

Age. Togruta reach adulthood in their late teens and live less than a century.

Alignment. Togruta culture focuses on unity which causes them to tend toward the light side, though there are exceptions.

Size. Togruta typically stand between 5 and 6 feet tall and weigh 150 lbs. Regardless of your position in that range, your size is Medium.

Speed. Your base walking speed is 30 feet.

Darkvision. Your vision can easily cut through darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.

Montral Reception. You have tremorsense out to 30 feet. 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

Wild Hunters. You have proficiency with the Survival skill.

Languages. You can speak, read, and write Galactic Basic and Togruti. Togruti is an ornate language characterized by trills and long vowel sounds which are modified by subtle tremors in the togruta's head-tails. This language is heavily influenced by Basic, but also incorporates some native idioms, which caused Basic-speaking togruta to use seemingly strange expressions.

"},"skinColorOptions":{"value":"Blue, green, orange, purple, red, white, or yellow"},"hairColorOptions":{"value":"None"},"eyeColorOptions":{"value":"Black, blue, green, orange, purple, yellow, or red"},"distinctions":{"value":"Sharp canine teeth, two montrals, three or four head-tails"},"heightAverage":{"value":"4'9\""},"heightRollMod":{"value":"+2d8\""},"weightAverage":{"value":"115 lb."},"weightRollMod":{"value":"x(2d4) lb."},"homeworld":{"value":"Shili"},"slanguage":{"value":"Togruti"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"PHB"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Togruta","mode":"=","targetSpecific":false,"id":1,"itemId":"a6nvR93PW0IDP5Al","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.wis.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"a6nvR93PW0IDP5Al","active":false,"_targets":[],"label":"Abilities Wisdom"},{"modSpecKey":"data.traits.size","value":"med","mode":"=","targetSpecific":false,"id":3,"itemId":"a6nvR93PW0IDP5Al","active":false,"_targets":[]},{"modSpecKey":"data.attributes.movement.walk","value":"30","mode":"=","targetSpecific":false,"id":4,"itemId":"a6nvR93PW0IDP5Al","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.traits.senses","value":"Darkvision (60 ft.)","mode":"+","targetSpecific":false,"id":5,"itemId":"a6nvR93PW0IDP5Al","active":false,"_targets":[],"label":"Traits Senses"},{"modSpecKey":"data.traits.senses","value":"Tremorsense (30 ft.)","mode":"+","targetSpecific":false,"id":6,"itemId":"a6nvR93PW0IDP5Al","active":false,"_targets":[],"label":"Traits Senses"},{"modSpecKey":"data.skills.sur.value","value":"1","mode":"+","targetSpecific":false,"id":7,"itemId":"a6nvR93PW0IDP5Al","active":false,"_targets":[],"label":"Skills Survival"},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":8,"itemId":"a6nvR93PW0IDP5Al","active":false,"_targets":[],"label":"Traits Language"},{"modSpecKey":"data.traits.languages.value","value":"togruti","mode":"+","targetSpecific":false,"id":9,"itemId":"a6nvR93PW0IDP5Al","active":false,"_targets":[],"label":"Traits Language"}]},"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Togruta.webp","effects":[{"_id":"57U88UyYUeWc8lGm","flags":{"dae":{"transfer":true,"stackable":false,"specialDuration":[]}},"changes":[{"key":"data.details.species","value":"Togruta","mode":5,"priority":5},{"key":"data.abilities.wis.value","value":2,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":5,"priority":5},{"key":"data.attributes.movement.walk","value":30,"mode":5,"priority":5},{"key":"data.attributes.senses.darkvision","value":60,"mode":2,"priority":20},{"key":"data.attributes.senses.tremorsense","value":30,"mode":2,"priority":20},{"key":"data.skills.sur.value","value":1,"mode":4,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"togruti","mode":0,"priority":0}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Togruta.webp","label":"Togruta","tint":"","transfer":true}]} {"_id":"AvVr0CocnSsEUu6h","name":"Devaronian","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

A bipedal mammalian species, Devaronians evolved in the dense jungles of Devaron as a hunter-gather species. Their bodies are denser than most humanoids' and as a result they were heavier than their appearance would tend to indicate. Devaronians have silver-based blood, which appears thick and black when exposed. They possess a unique blood filtration and cleansing system which processes through two livers. Because their bodies are constantly cleansed of toxins and carcinogens, the species is highly resistant to poison. To this end, sulfur is used as a stimulant on Devaron to enhance speed and strength, because inhaling it causes the substance to enter the bloodstream rapidly. Their livers struggle to eliminate sulfur from their system, meaning that long-term use can be dangerous.

Society and Culture

Devaronian males are driven by an urge to wander, usually taking the first opportunity to move on from one place to another; they are often found traveling the galaxy as tramp freighter captains and scouts. Female Devaronians, on the other hand, are content to remain in a single location, raising the young and running the government of Devaron. The males send money back to their homeworld to support their families, but otherwise hardly ever return. The females are content with this arrangement, as they tend to view the restless males as disruptive to home life.

Names

Devaronian names are dark, complex and often guttural, with some harsher tones mixed in here and there.

  Male Names. Cir, Gremegris, Keirtihk, Kucx, Niruhk

  Female Names. Crilnuy, Ghal, Milma, Nola, Taoluel

  Surnames. Breiz, Droddost, G'vaulnel, Raokt","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Constitution score increases by 2, and your Charisma score increases by 1.

Age. Devaronians reach adulthood in their late teens and live less than a century.

Alignment. Devaronians' greediness causes them to tend toward chaotic balanced, though there are exceptions.

Size. Devaronians typically stand between 5 and 6 feet tall and weigh about 160 lbs. Regardless of your position in that range, your size is Medium.

Speed. Your base walking speed is 30 feet.

Jungle Dweller. Growing up in the jungles of Devaron has left an impact. You are proficient in Survival. Additionally, you don't treat jungle terrain as difficult terrain.

Tech Resistance. Growing up around technology leaves an impact on devaronians. You have advantage on Dexterity and Intelligence saving throws against tech powers.

Two Livered. Devaronians have two livers, which makes them adept at filtering toxins. You have advantage on saving throws against poison, and you have resistance against poison damage (explained in chapter 9).

Languages. You can speak, read, and write Galactic Basic and Devaronese. Devaronese is characterized by grunts and grumbles. It is rare to hear a Devaronian speak it any where other than their homeworld of Devaron.

"},"skinColorOptions":{"value":"Red, pink, brown, or white"},"hairColorOptions":{"value":"Brown, black, or white"},"eyeColorOptions":{"value":"Black"},"distinctions":{"value":"Horns or horn spots, long pointed ears"},"heightAverage":{"value":"4'10\""},"heightRollMod":{"value":"+2d8\""},"weightAverage":{"value":"120 lb."},"weightRollMod":{"value":"x(2d4) lb."},"homeworld":{"value":"Devaron"},"slanguage":{"value":"Devaronese"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"PHB"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Devaronian","mode":"=","targetSpecific":false,"id":1,"itemId":"zdVXV0I4cWy1hez4","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.con.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"zdVXV0I4cWy1hez4","active":false,"_targets":[],"label":"Abilities Constitution"},{"modSpecKey":"data.abilities.cha.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"zdVXV0I4cWy1hez4","active":false,"_targets":[],"label":"Abilities Charisma"},{"modSpecKey":"data.traits.size","value":"med","mode":"=","targetSpecific":false,"id":4,"itemId":"zdVXV0I4cWy1hez4","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.attributes.movement.walk","value":"30","mode":"=","targetSpecific":false,"id":5,"itemId":"zdVXV0I4cWy1hez4","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.skills.sur.value","value":"1","mode":"=","targetSpecific":false,"id":6,"itemId":"zdVXV0I4cWy1hez4","active":false,"_targets":[],"label":"Skills Survival"},{"modSpecKey":"data.traits.dr.value","value":"poison","mode":"+","targetSpecific":false,"id":7,"itemId":"zdVXV0I4cWy1hez4","active":false,"_targets":[],"label":"Traits Damage Resistance"},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":8,"itemId":"zdVXV0I4cWy1hez4","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"devaronese","mode":"+","targetSpecific":false,"id":9,"itemId":"zdVXV0I4cWy1hez4","active":false,"_targets":[]}]},"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Devaronian.webp","effects":[{"_id":"NXVgSk9AHJm492iG","flags":{"dae":{"transfer":true,"stackable":false}},"changes":[{"key":"data.details.species","value":"Devaronian","mode":5,"priority":5},{"key":"data.abilities.con.value","value":2,"mode":2,"priority":20},{"key":"data.abilities.cha.value","value":1,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":0,"priority":5},{"key":"data.attributes.movement.walk","value":"30","mode":5,"priority":5},{"key":"data.skills.sur.value","value":1,"mode":4,"priority":5},{"key":"data.traits.dr.value","value":"poison","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"devaronese","mode":0,"priority":0},{"key":"flags.sw5e.techResistance","value":"1","mode":5,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Devaronian.webp","label":"Devaronian","tint":"","transfer":true}]} {"_id":"BoiDTcRSl6pBtYYl","name":"Voss","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

Voss are humanoid sentients with a high rate of Force-sensitivity who display prominent sexual dimorphism. The male Voss have blue skin and bright orange eyes, while the females have red skin and azure eyes. The Voss do not have hair or distinct pupils, and posess unique patterns of markings on their face, neck, and body, a trace of their shared ancestry with Gormak. Their voices have a slight mechanical tinge to them, making them sound somewhat like a droid or machine. Voss undogo a physical, developmental change during their marriage ceremonies (known as the Rite of Ardor) and do not develop sexually prior to the performance of these rituals.

Society and Culture

The Voss species resides in the isolated mountain-top city of Voss-Ka and is vastly outnumbered on their homeworld by its other native sentient species, the Gormak, who are extremely hostile toward them and from whom they arose. Most Voss live peacefully in Voss-Ka, caring for their families, cultivating the wild plants and maintaining equipment for the Voss commandos in the war against the Gormak, although some Voss do live outside the capital city, such as the Voss Mystics who reside in the Shrine of Healing. The Voss are great lovers of art, and their architecture features a distinctive artistic style. The entire Voss society is guided by the Force visions of Voss Mystics, which are considered infallible without exception.

Names

All Voss have two short names, connected by a hyphen, with the family name being the second one.

  Male Names. Char, Edan, Fadith, Nodin, Orin

  Female Names. Amin, Magra, Tala, Weylin, Yana

  Surnames. -Ko, -La, -Po, -Rae, -Va","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Wisdom score increases by 2, and your Constitution score increases by 1.

\n

Age. Voss reach adulthood in their late teens and live less than a century. They do not reach sexual maturity until they undergo the Rite of Ardor.

\n

Alignment. As Voss culture encourages duty and emotional composure, individuals tend toward a lawful alignment, though there are exceptions.

\n

Size. Voss typically stand 5 to 6 feet tall and generally weigh about 150 lbs. Regardless of your position in that range, your size is Medium.

\n

Speed. Your base walking speed is 30 feet.

\n

Darkvision. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of grey.

\n

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

\n

Mystic Healing. You have proficiency in Medicine.

\n

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

\n

Voss Weapon Training. You have proficiency with the blaster rifle and techblade.

\n

Languages. You can speak, read, and write Galactic Basic and Voss. The Voss language is characterized by it's mystic-sounding word pairings.

"},"skinColorOptions":{"value":"Blue (male) or red (female)"},"hairColorOptions":{"value":"None"},"eyeColorOptions":{"value":"Orange (male) or blue (female)"},"distinctions":{"value":"Mechanical apperance, unique patterns and markings along face, neck, and body"},"heightAverage":{"value":"4'9\""},"heightRollMod":{"value":"+2d8\""},"weightAverage":{"value":"105 lb"},"weightRollMod":{"value":"x(2d4) lb."},"homeworld":{"value":"Voss"},"slanguage":{"value":"Voss"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"EC"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Voss","mode":"=","targetSpecific":false,"id":1,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.wis.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[],"label":"Abilities Wisdom"},{"modSpecKey":"data.abilities.con.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[],"label":"Abilities Constitution"},{"modSpecKey":"data.traits.size","value":"med","mode":"=","targetSpecific":false,"id":4,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.attributes.movement.walk","value":"30","mode":"=","targetSpecific":false,"id":5,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.traits.senses","value":"Darkvision (60 ft.)","mode":"+","targetSpecific":false,"id":6,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[],"label":"Traits Senses"},{"modSpecKey":"data.skills.med.value","value":"1","mode":"+","targetSpecific":false,"id":7,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[],"label":"Skills Medicine"},{"modSpecKey":"data.traits.weaponProf.custom","value":"blaster rifle","mode":"+","targetSpecific":false,"id":8,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.weaponProf.custom","value":"techblade","mode":"+","targetSpecific":false,"id":9,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[],"label":"Traits Weapon Prof. Custom"},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":10,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"voss","mode":"+","targetSpecific":false,"id":11,"itemId":"YWrbeoakCuPhpoze","active":false,"_targets":[]}]},"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Voss.webp","effects":[{"_id":"g7qkdxQGBYGcMDU9","flags":{"dae":{"transfer":true,"stackable":false,"specialDuration":[]}},"changes":[{"key":"data.details.species","value":"Voss","mode":5,"priority":5},{"key":"data.abilities.wis.value","value":2,"mode":2,"priority":20},{"key":"data.abilities.con.value","value":1,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":5,"priority":5},{"key":"data.attributes.movement.walk","value":30,"mode":5,"priority":5},{"key":"data.attributes.senses.darkvision","value":60,"mode":2,"priority":20},{"key":"data.skills.med.value","value":1,"mode":4,"priority":20},{"key":"data.traits.weaponProf.custom","value":"blaster rifle","mode":0,"priority":0},{"key":"data.traits.weaponProf.custom","value":"techblade","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"voss","mode":0,"priority":0},{"key":"flags.sw5e.inscrutable","value":"1","mode":0,"priority":20},{"key":"flags.sw5e.precognition","value":"1","mode":0,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Voss.webp","label":"Voss","tint":"","transfer":true}]} +{"_id":"CBKFpIWqMjl3Ai6m","name":"Mikkian","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

\n

Mikkians are a species of brightly colored humanoids. The Mikkians' most distinctive feature are their motile head-tendrils, with the number, form, and pattern varying between individuals. These head-tendrils primarily serve as sensory organs, particularly detecting sound as a replacement for an ear common in other species. Mikkian head-tendrils also could detect other information, such as humidity, temperature, magnetic direction and radiation. This radiation can be detected to the extent that Mikkians can \"see\" light and dark, although their eyes are still their primary visual organs.

\n

Society and Culture

\n

Mikkians place kinship and integrity above all. In fact, their honesty can come across as blunt or even rude to other sentients. Conversely, Mikkians often have trouble adjusting to the more flexible views of other races. Their complex code of honor encompass all things in life, with a particular insistance on matters of warfare. Although they respect warrior traditions, the Mikkians nevertheless value discipline and honor over victory or physical might.

\n

Different religious traditions exist among the Mikkians, but belief in the Force plays a central role in all of them. In Mikkian society, their head-tendrils have important cultural significance, and, as such, tendril-reading is used by Mikkian mystics to predict their future. Every facet of the head-tendril contributes to that meaning.

\n

Names

\n

Mikkian names are often short and disyllabic with a melodic quality to them. Mikkians typically don't use surnames, though some may adopt them.

\n

  Male Names. Cage, Fedlas, Mekko, Sakas

\n

  Female Names. Beyra, Fenvar, Tiplee, Zelna

","chat":"","unidentified":""},"source":"EC","traits":{"value":"

Ability Score Increase. Your Wisdom score increases by 2, and one other ability score of your choice increases by 1.

\n

Age. Mikkians reach adulthood in their late teens and live a little over a century.

\n

Alignment. Mikkians' honor and integrity based culture causes them to tend toward lawful alignments, though there are exceptions.

\n

Size. Mikkians typically stand 5 to 6 feet tall and generally weigh about 120 lbs. Regardless of your position in that range, your size is Medium.

\n

Speed. Your base walking speed is 30 feet.

\n

Blindsight. Mikkians can perceive the world around them through heat and radiation. You have blindsight out to 30 feet. If another trait would grant you blindsight, the range is increased by half as many feet.

\n

Keen Hearing. Your head-tendrils provide a keen awareness of your surroundings. You have advantage on Wisdom (Perception) checks that involve hearing.

\n

Bureaucratic. You have proficiency with Persuasion or Intimidation (your choice)

\n

Languages. You can speak, read, and write Galactic Basic and Mikkian. Mikkian is a melodic, flowing tongue made up of several ancient dialects.

"},"skinColorOptions":{"value":"Green, pink, red, blue, or yellow"},"hairColorOptions":{"value":"None"},"eyeColorOptions":{"value":"Blue or black"},"colorScheme":{"value":""},"distinctions":{"value":"Numerous head-tendrils, acute senses of sight and hearing"},"heightAverage":{"value":"4'9\""},"heightRollMod":{"value":"+2d6\""},"weightAverage":{"value":"100 lb."},"weightRollMod":{"value":"x(2d4) lb."},"homeworld":{"value":"Mikkia"},"slanguage":{"value":"Mikkian"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]}},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Abyssin","mode":"=","targetSpecific":false,"id":1,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.con.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Abilities Constitution"},{"modSpecKey":"data.abilities.str.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Abilities Strength"},{"modSpecKey":"data.traits.size","value":"med","mode":"=","targetSpecific":false,"id":4,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.attributes.movement.walk","value":"30","mode":"+","targetSpecific":false,"id":5,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":6,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Traits Language"},{"modSpecKey":"data.traits.languages.custom","value":"Abyssin","mode":"+","targetSpecific":false,"id":7,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Traits Language Custom"}]},"dae":{"activeEquipped":false,"alwaysActive":true},"core":{"sourceId":"Item.NTJwsm4aSeAH9dVZ"}},"img":"systems/sw5e/packs/Icons/Species/Mikkian.webp","effects":[{"_id":"2FSlkSzlsfoQSsQs","flags":{"dae":{"stackable":false,"transfer":true}},"changes":[{"key":"data.details.species","value":"Mikkian","mode":5,"priority":20},{"key":"data.abilities.wis.value","value":2,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":5,"priority":20},{"key":"data.attributes.movement.walk","value":30,"mode":2,"priority":20},{"key":"data.attributes.senses.blindsight","value":30,"mode":2,"priority":20},{"key":"flags.sw5e.keenSenses","value":"1","mode":0,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":2,"priority":20},{"key":"data.traits.languages.custom","value":"Mikkian","mode":0,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Mikkian.webp","label":"Mikkian","tint":"","transfer":true}]} {"_id":"CHsAcIeCOOtMpf3X","name":"Droid, Class IV","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"
\n

Players as Droids

\n

Work with your GM to determine if playing as a droid is appropriate for your campaign. Droids are impervious to many effects and vulnerable to others. If your GM approves this choice of species, work with them to determine your droids designation, name, and appearance. If you want to play a different type of droid, work with your GM to find traits to realize your character.

\n
\n

Appearance

\n

Class IV droids are typically human-like in both shape and size, though there are many advanced models (such as droidekas) that forgo this standardization. They are usually colored to match their affiliation, though personally owned class IV droids might not be. Certain models of class IV droids, such as the HK-series, are made to look like class III droids to disguise their martial nature.

\n

Utility

\n

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.

\n

Names

\n

Droids are typically called by their designation, given to them when they are created, or some affectation given to them by their owner. Often this affectation is a play on their designation.

\n

Occasionally, noteworthy droids will earn monikers based on their accomplishments.

","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Constitution score increases by 2, and your Strength or Dexterity score increases by 1.

\n

Age. Droids don’t age, though they require maintenance to retain functionality.

\n

Alignment. Droids tend toward no particular alignment. The best and worst are found among them.

\n

Size. Class IV droids typically stand between 5 and 7 feet and weigh about 150 lbs. Regardless of your position in that range, your size is Medium.

\n

Speed. Your base walking speed is 30 feet.

\n

Type. Your creature type is droid.

\n

Armor Integration. 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.

\n

Droid Resistances. You are resistant to necrotic, poison, and psychic damage, and are immune to poison and disease.

\n

Droid Systems. You do not need to eat or drink. Additionally, you no longer require a tech focus to cast tech powers.

\n

Droid Vulnerabilities. You are vulnerable to ion damage. Additionally, you have disadvantage on saving throws against effects that would deal ion or lightning damage.

\n

Force Insensitive. While droids can be manipulated by many force powers, they can not sense the Force. You can not use force powers or take levels in forcecasting classes.

\n

Maintenance Mode. 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.

\n

Martial Protocol. You have proficiency with light and medium armor as well as two simple or martial blasters or vibroweapons of your choice.

\n

Rapid Reconstruction. 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.

\n

Languages. You can speak, read, and write Galactic Basic and one language of your choice. You can understand spoken and written Binary, but you cannot speak it.

"},"skinColorOptions":{"value":""},"hairColorOptions":{"value":""},"eyeColorOptions":{"value":""},"distinctions":{"value":""},"colorScheme":{"value":"Varies"},"droidDistinctions":{"value":"Variable size, combat-designed nature, often humanoid"},"heightAverage":{"value":"5'2\""},"heightRollMod":{"value":"+2d8\""},"weightAverage":{"value":"110 lb."},"weightRollMod":{"value":"x(2d4) lb."},"homeworld":{"value":""},"slanguage":{"value":""},"manufacturer":{"value":"Holowan Mechanicals, Uxiol Droid Manufacturing"},"droidLanguage":{"value":"Galactic Basic"},"source":"PHB"},"flags":{"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Droid%20Class%20IV.webp","effects":[{"_id":"yyg9z15jh6tMBTrg","flags":{"dae":{"stackable":false,"transfer":true}},"changes":[{"key":"data.abilities.con.value","value":2,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":0,"priority":20},{"key":"data.attributes.movement.walk","value":"30","mode":5,"priority":20},{"key":"data.traits.dr.value","value":"necrotic","mode":0,"priority":20},{"key":"data.traits.dr.value","value":"poison","mode":0,"priority":20},{"key":"data.traits.dr.value","value":"psychic","mode":0,"priority":20},{"key":"data.traits.ci.value","value":"diseased","mode":0,"priority":20},{"key":"data.traits.ci.value","value":"poisoned","mode":0,"priority":20},{"key":"data.traits.dv.value","value":"ion","mode":0,"priority":20},{"key":"data.traits.armorProf.value","value":"lgt","mode":0,"priority":20},{"key":"data.traits.armorProf.value","value":"med","mode":0,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":20},{"key":"data.traits.languages.value","value":"binary","mode":0,"priority":20},{"key":"data.details.species","value":"Droid, Class IV","mode":5,"priority":20},{"key":"flags.sw5e.forceInsensitive","value":"1","mode":5,"priority":20},{"key":"flags.sw5e.maintenanceMode","value":"1","mode":5,"priority":20},{"key":"flags.sw5e.rapidReconstruction","value":"1","mode":5,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Droid%20Class%20IV.webp","label":"Droid, Class IV","tint":"","transfer":true}]} {"_id":"CZUVxgj9fFo6Gx2j","name":"Squib","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

\n

Squibs are small, sentient, humanoid mammals with both rodent and canine characteristics. Their pink skin is covered in fur that offers some protection from cold weather, but, more importantly, it serves as an olfactory organ, able to pick up scents at a distance and ascertain intrinsic details—such as penetrating through a disguise or identifying a forgery—when rubbed against. The species has both male and female sexes, although non-Squibs often have difficulty determining the sex of a Squib based on appearance alone. Their mouths are full of forbidding, sharp, white teeth, and their flexible cheeks were capable of storing items.

\n

Society and Culture

\n

Squibs are friendly and cheerful to such an extent that, over time, they are considered quite annoying. Squibs are inherently curious, handling items with literal regard to care. They are unabashed pack rats, and they wear clothing for the excess storage rather than necessity. The Squibs' overconfidence is a defining trait. The typical Squib response to a threat is not to fight or flee, but to bluff and bluster, especially when not face-to-face. In person, their sharp teeth are their favored means of intimidation. Squibs believe that bargaining is the highest form of communication, and they believe haggling is more important than the goods themselves. A deal is a binding oath to Squibs, and they are incredibly loyal to their business partners.

\n

Names

\n

Squibs combine their first and last names, which are familial, into one long, hyphenated name. They often go by nicknames derived from their full names. Male and female names do not significantly deviate.

\n

  Full Names. Galaneever-marmalios, Meelawin-demort, Sleerinwilpher-remalior

\n

  Nicknames. Galan, Meela, Wilpher

","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Charisma score increases by 2, and your Dexterity score increases by 1.

Age. Squibs reach adulthood at nine years of age and live an average of sixty-five years.

Alignment. Squibs' cheerful nature causes them to tend toward the light side, though there are exceptions.

Size. Squibs typically stand 3 to 3 and a half feet tall and weigh around 50 lbs. Regardless of your position in that range, your size is Small.

Speed. Your base walking speed is 25 feet.

Bite. Your sharp teeth are a natural weapon, which you can use to make unarmed strikes. If you hit with it, you deal kinetic damage equal to 1d4 + your Strength modifier.

Business Savvy. A common trait of all Squibs is their desire and love of haggling. Squibs believe a deal is done when both sides believe they got the better of the other. Whenever you make a Charisma (Persuasion) check involving haggling you are considered to have expertise in the Persuasion skill.

Flexible Cheeks. Squibs have flexible cheeks in which they can store small goods. You can store up to two items that weigh a combined total of no more than 2 lb. in your cheeks, and you have advantage on Dexterity (Sleight of Hand) checks made to conceal them.

Hide. Your thick hide is naturally adapted to cold climates, as described in chapter 5 of the Dungeon Master's Guide.

Keen Smell. You have advantage on Wisdom (Perception) checks that rely on smell.

Sensitive Fur. Squibs' fur is exceptionally sensitive to physical details. You have advantage on Intelligence (Investigation) checks that rely on touch.

Undersized. Your small stature makes it hard for you to wield bigger weapons. You can't use heavy shields. Additionally, you 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, you can only wield it in two hands.

Languages. You can speak, read, and write Galactic Basic and Squibbian. The Squibbian language originated as a secret form of communication for Squibs to convey information without being understood.

"},"skinColorOptions":{"value":"Pink"},"hairColorOptions":{"value":"White, gray, black, brown, blue, violet, or red"},"eyeColorOptions":{"value":"Blue, yellow, red, or brown"},"distinctions":{"value":"Curious, overconfident, hagglers"},"heightAverage":{"value":"2'11\""},"heightRollMod":{"value":"+2d4\""},"weightAverage":{"value":"45 lb."},"weightRollMod":{"value":"x1 lb."},"homeworld":{"value":"Skor II"},"slanguage":{"value":"Squibbian"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"EC"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Squib","mode":"=","targetSpecific":false,"id":1,"itemId":"rEdpmBrVX96rCH12","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.cha.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"rEdpmBrVX96rCH12","active":false,"_targets":[],"label":"Abilities Charisma"},{"modSpecKey":"data.abilities.dex.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"rEdpmBrVX96rCH12","active":false,"_targets":[],"label":"Abilities Dexterity"},{"modSpecKey":"data.traits.size","value":"sm","mode":"=","targetSpecific":false,"id":4,"itemId":"rEdpmBrVX96rCH12","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.attributes.movement.walk","value":"25","mode":"=","targetSpecific":false,"id":5,"itemId":"rEdpmBrVX96rCH12","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":6,"itemId":"rEdpmBrVX96rCH12","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"squibbian","mode":"+","targetSpecific":false,"id":7,"itemId":"rEdpmBrVX96rCH12","active":false,"_targets":[]}]},"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Squib.webp","effects":[{"_id":"JyXU6gNsxf6u3HUH","flags":{"dae":{"transfer":true,"stackable":false}},"changes":[{"key":"data.details.species","value":"Squib","mode":5,"priority":5},{"key":"data.abilities.cha.value","value":2,"mode":2,"priority":20},{"key":"data.abilities.dex.value","value":1,"mode":2,"priority":20},{"key":"data.traits.size","value":"sm","mode":0,"priority":5},{"key":"data.attributes.movement.walk","value":"25","mode":5,"priority":5},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"squibbian","mode":0,"priority":0},{"key":"flags.sw5e.undersized","value":"1","mode":5,"priority":20},{"key":"flags.sw5e.businessSavvy","value":"1","mode":5,"priority":20},{"key":"flags.sw5e.keenSenses","value":"1","mode":5,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Squib.webp","label":"Squib","tint":"","transfer":true}]} {"_id":"Cz5JMLKTAIcmZIfu","name":"Miraluka","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

\n

The Miraluka are a near-human species that differs from Humans in that they lack eyes, only retaining vestigial eye sockets, and perceive the environment around them through Force sight instead of regular vision. This vision is so strong that if a Miraluka looks upon a Jedi or Sith, they can \"see\" Force radiating off them. The strength of a Miraluka's connection to the Force varies by individual.

\n

Society and Culture

\n

Miraluka are a thoughtful, cautious, and deliberative species. They have little interest in personal gain or glory. For social reasons, Miraluka hide their appearance by wearing a headband, a mask, or similar concealing headwear. In addition all Miraluka are very united by species. They call themselves \"brothers\" and are considered as members of a great family. As a Force-using species, Miraluka are often quite shocked if 'shown' life not connected to the Force. Many Miraluka worship two gods, Ashla and Bogan, through the philosophy of the Greater Force. They do not believe in good or evil, but were taught to accept both life and death. Miraluka Force-sensitives are an order of their own called the Luka Sene. Academic in atmosphere and culture, the Luka Sene focus primarily on developing the sense-related powers of their members. However, unlike the Jedi, Sith and other traditions, the Luka Sene does not dictate a member's personal life.

\n

Names

\n

Miraluka names are generally two syllables. Miraluka don't use surnames, as they believe they are one family.

\n

  Male Names. Aakih, Pafil, Rikhor, Vociif, Xuwuth

\n

  Female Names. Auchaod, Favom, Mucem, Wilierth

","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Wisdom score increases by 2, and your Charisma score increases by 1.

\n

Age. Miraluka reach adulthood in their late teens and live less than a century.

\n

Alignment. Miraluka believe in balance and thus tend toward no particular alignment. The best and worst are found among them.

\n

Size. Miraluka typically stand 5 to 6 feet tall and generally weigh about 150 lbs. Regardless of your position in that range, your size is Medium.

\n

Speed. Your base walking speed is 30 feet.

\n

Force Sensitive. You know the mind trick at-will Force power. When you reach 3rd level, you can cast the sanctuary Force power once per day. When you reach 5th level, you can also cast the Force confusion power once per day. Wisdom or Charisma (your choice) is your forcecasting ability for these powers.

\n

Force Sight. Miraluka perceive the environment around them through use of the Force. You are constantly under the effects of the force power Force sight, though the power does not require concentration for you.

\n

Languages. You can speak, read, and write Galactic Basic and Miralukese.

"},"skinColorOptions":{"value":"Pale to brown"},"hairColorOptions":{"value":"Black, brown, grey, or white"},"eyeColorOptions":{"value":"None"},"distinctions":{"value":"Lack of physical eyes, inherent Force sight"},"heightAverage":{"value":"4'8\""},"heightRollMod":{"value":"+2d10\""},"weightAverage":{"value":"110 lb."},"weightRollMod":{"value":"x(2d4) lb."},"homeworld":{"value":"Alpheridies"},"slanguage":{"value":"Miralukese"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"EC"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Miraluka","mode":"=","targetSpecific":false,"id":1,"itemId":"O3WefM3k3ZgfhQoe","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.wis.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"O3WefM3k3ZgfhQoe","active":false,"_targets":[],"label":"Abilities Wisdom"},{"modSpecKey":"data.abilities.cha.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"O3WefM3k3ZgfhQoe","active":false,"_targets":[],"label":"Abilities Charisma"},{"modSpecKey":"data.traits.size","value":"med","mode":"=","targetSpecific":false,"id":4,"itemId":"O3WefM3k3ZgfhQoe","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.attributes.movement.walk","value":"30","mode":"=","targetSpecific":false,"id":5,"itemId":"O3WefM3k3ZgfhQoe","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":6,"itemId":"O3WefM3k3ZgfhQoe","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"miralukese","mode":"+","targetSpecific":false,"id":7,"itemId":"O3WefM3k3ZgfhQoe","active":false,"_targets":[]}]},"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Miraluka.webp","effects":[{"_id":"8u9KvszXamdVwo8Y","flags":{"dae":{"transfer":true}},"changes":[{"key":"data.details.species","value":"Miraluka","mode":5,"priority":5},{"key":"data.abilities.wis.value","value":2,"mode":2,"priority":20},{"key":"data.abilities.cha.value","value":1,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":5,"priority":5},{"key":"data.attributes.movement.walk","value":30,"mode":5,"priority":5},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"miralukese","mode":0,"priority":0}],"disabled":false,"duration":{"startTime":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Miraluka.webp","label":"Miraluka","tint":"","transfer":true}]} @@ -59,6 +60,7 @@ {"name":"Patrolian","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

\n

Patrolians are fish-like in appearance, being covered in pale, pastel-colored scales and possession numerous fins on their long limbs and face, as well as a notable dorsal fin which often required modified clothing to accommodate.

\n

Thanks to their gills, patrolians are perfectly comfortable breathing underwater as well as on land, and their physiology is also notoriously resistant to electric shocks—both likely throwbacks to evolution on their native homeworld of Patrolia.

\n

Society and Culture

\n

Patrolians are a notably innovative and resourceful species, and many of their number have found their way into roles of the construction, maintenance and sale of technology.

\n

Unfortunately, patrolians tend to pursue these businesses in a shady manner, and most tend to operate such ventures in the criminal underworld, working as bounty hunters, thieves, fences, slicers and other such technically-demanding criminal roles.

\n

This inclination towards crime stems from their homeworld, which is perpetually stalled in a state of economic decay due to wartime. With the advent of multiple wars fought in the system, different armies continuing to see the aquatic world as a strategic bulwark in the region. Because of this, patrolians have to find work not only off-world, but typically in fields not falling under governmental purview. Unfortunately, criminal activities being a common path.

\n

Names

\n

Patrolian names are usually multisyllabic and sing-songy with lots of open vowels and few fricatives. Patrolians are not known to use family names or other surnames.

\n

  Male Names. Dalladu, Feddi, Nogagai, Teconica

\n

  Female Names. Kakeda, Machibido, Rinimma, Talla

","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Intelligence score increases by 2, and your Dexterity or Charisma score increases by 1.

\n

Age. Patrolians reach adulthood in their late teens and live less than a century.

\n

Alignment. Patrolians' greedy, scheming nature causes them to tend toward the dark side, though there are exceptions.

\n

Size. Patrolians typically stand just over 3 feet tall and generally weigh about 40 lbs. Regardless of your position in that range, your size is Small.

\n

Speed. Your base walking speed is 25 feet.

\n

Amphibious. You can breathe air and water.

\n

Conniving. You have proficiency in Deception or Stealth (your choice).

\n

Darkvision. Accustomed to life underwater, you have superior vision in low light conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.

\n

Electrical Resistance. Patrolians are notably capable of shrugging off electrocutions. You have resistance to lightning damage.

\n

Specialist. You have proficiency in one specialist's kit of your choice.

\n

Swim. You have a swimming speed of 25 feet.

\n

Technician. You are proficient in the Technology skill.

\n

Undersized. Your small stature makes it hard for you to wield bigger weapons. You can’t use heavy shields. Additionally, you 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, you can only wield it in two hands.

\n

Languages. You can speak, read, and write Galactic Basic and Patrolian. Patrolian is a high-energy language, consisting mostly of gurgles and skittish vocalizations. Patrolian, even when spoken on land, sounds like it's being spoken underwater.

"},"skinColorOptions":{"value":"Blue-purple to green"},"hairColorOptions":{"value":"None"},"eyeColorOptions":{"value":"Light to dark red"},"distinctions":{"value":"Fin-like limbs, pastel-colored scales"},"heightAverage":{"value":"2'8\""},"heightRollMod":{"value":"+2d4\""},"weightAverage":{"value":"35 lb."},"weightRollMod":{"value":"x1 lb."},"homeworld":{"value":"Patrolia"},"slanguage":{"value":"Patrolian"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"colorScheme":{"value":""},"planguage":{"value":""},"droidDistinctions":{"value":""},"droidLanguage":{"value":""}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false},"dae":{"activeEquipped":false,"alwaysActive":true},"core":{"sourceId":"Item.KH43IZr4IqeUM3lL"}},"img":"systems/sw5e/packs/Icons/Species/Patrolian.webp","effects":[{"_id":"6ONrHdnvLzAAXP1o","flags":{"dae":{"stackable":false,"specialDuration":["None"],"transfer":true}},"changes":[{"key":"data.details.species","value":"Patrolian","mode":5,"priority":20},{"key":"data.traits.size","value":"sm","mode":5,"priority":20},{"key":"data.attributes.movement.walk","value":25,"mode":5,"priority":20},{"key":"data.attributes.movement.swim","value":25,"mode":5,"priority":20},{"key":"flags.sw5e.amphibious","value":"1","mode":0,"priority":20},{"key":"data.attributes.senses.darkvision","value":60,"mode":2,"priority":20},{"key":"data.traits.dr.value","value":"lightning","mode":2,"priority":20},{"key":"data.skills.tec.value","value":1,"mode":4,"priority":20},{"key":"flags.sw5e.undersized","value":"1","mode":0,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":2,"priority":20},{"key":"data.traits.languages.custom","value":"Patrolian","mode":0,"priority":20},{"key":"data.abilities.int.value","value":2,"mode":2,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Patrolian.webp","label":"Patrolian","tint":"","transfer":true}],"_id":"WnAnY4autRdFaf29"} {"_id":"WqN3AGl9GleyIUUj","name":"Vintian","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

\n

Vintians have flinty, flaky surfaces. To some species, vintians resemble rocks or boulders. Despite tending to stand still for long periods of time, Vintians are capable of independent movement. Vintians rest by recrystalyzing.

\n

Vintians have an incredibly strong grip, which limits their manual dexterity. Additionally, due to their home planet's proximity to its sun, causing perpetual daylight, vintians have a preternatural fear of the dark.

\n

While vintians have no need for armor, they like to decorate themselves, be it with clothing, paint, or even moss.

\n

Society and Culture

\n

Vintians participate in commercial spaceflight operations and some are capable navigators. At least one vintian was known to frequent bars and clubs and was considered to have a \"wild-man\" personality. However vintians can also be quite stoic.

\n

Despite their appearance, vintians are actually quite malleable, personality-wise. They differ greatly from each other, though most vintians share a great appreciation for humor.

\n

Vintian society has a rotational governing body. Each vintian is obligated to spend a century serving in public office, beginning no sooner than their hundredth birthday, and they can't leave their home planet until they’ve completed their service.

\n

Names

\n

Vintian names vary drastically, though they do not differentiate by gender. Vintians don't use surnames, as they believe they are one family.

\n

  Names. Anerohl, Bahlbhoa, Geode, Gorge, Dwaagn, Eerohde, Hahrde, Peht, Peeturh, Stixn, Stoahne

","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Constitution score increases by 2, and one other ability score of your choice increases by 1.

\n

Age. Vintians reach adulthood at age 10 and can live for millennia.

\n

Alignment. Vintians' stoic and solid nature causes them to tend toward lawful alignments, though there are exceptions.

\n

Size. Vintians typically stand 5 to 6 feet tall and generally weigh about 1,400 lbs. Regardless of your position in that range, your size is Medium.

\n

Speed. Your base walking speed is 30 feet.

\n

Type. Your creature type is both object and humanoid.

\n

Camouflage. Due to your rock-like appearance, while not moving, you have advantage on Dexterity (Stealth) checks.

\n

Heavy. You have resistance to damage caused by falling. Additionally, if you land on a creature after falling from greater than 10 feet, you are instead immune to the damage caused by falling.

\n

Geologist. You have proficiency in your choice of archaeologist kit or scavenging kit. Additionally, while outdoors, you can accurately tell the current weather.

\n

Naturally Charismatic. You are proficient in the Persuasion and Deception skills.

\n

Solid. You have disadvantage on ability checks and saving throws that would grapple or restrain you, and you have advantage on ability checks and saving throws that would forcefully move you.

\n

Languages. You can speak, read, and write Galactic Basic and Vintesh. Vintesh is a complex language that can only by spoken by those without a mouth.

"},"skinColorOptions":{"value":"Black, blue, gray"},"hairColorOptions":{"value":"None"},"eyeColorOptions":{"value":"None"},"colorScheme":{"value":""},"distinctions":{"value":"Indistinguishable appendages and facial features, rock-like appearance"},"heightAverage":{"value":"4'9\""},"heightRollMod":{"value":"+2d8\""},"weightAverage":{"value":"1000 lb."},"weightRollMod":{"value":"x(2d50) lb."},"homeworld":{"value":"Vint"},"slanguage":{"value":"Vintesh"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"AFD"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Abyssin","mode":"=","targetSpecific":false,"id":1,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.con.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Abilities Constitution"},{"modSpecKey":"data.abilities.str.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Abilities Strength"},{"modSpecKey":"data.traits.size","value":"med","mode":"=","targetSpecific":false,"id":4,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.attributes.movement.walk","value":"30","mode":"+","targetSpecific":false,"id":5,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":6,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Traits Language"},{"modSpecKey":"data.traits.languages.custom","value":"Abyssin","mode":"+","targetSpecific":false,"id":7,"itemId":"tuTnGLudeHCJpQUq","active":false,"_targets":[],"label":"Traits Language Custom"}]},"dae":{"activeEquipped":false,"alwaysActive":true},"core":{"sourceId":"Item.bLLcshN8uclCQ9dC"}},"img":"systems/sw5e/packs/Icons/Species/Vintian.webp","effects":[{"_id":"8q5Jxe9HgYLaFKMI","flags":{"dae":{"stackable":false,"specialDuration":[],"transfer":true}},"changes":[{"key":"data.details.species","value":"Vintian","mode":5,"priority":20},{"key":"data.abilities.con.value","value":2,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":5,"priority":20},{"key":"data.attributes.movement.walk","value":30,"mode":5,"priority":20},{"key":"data.skills.per.value","value":1,"mode":4,"priority":20},{"key":"data.skills.dec.value","value":1,"mode":4,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":2,"priority":20},{"key":"data.traits.languages.custom","value":"Vintesh","mode":0,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Vintian.webp","label":"Vintian","tint":"","transfer":true}]} {"_id":"ZQLTY2fbr8hXdWOM","name":"Togorian","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

The Togorian people are a feline warrior species native to the planet Togoria. They are large, heavy-framed bipeds, with retractable claws on their hands and feet. Female Togorians grow up to 7 feet tall, while adult males can reach up to 9 feet. They're covered in gray-white, black, brown, or orange fur, often with colorful spots or stripes.

Society and Culture

Togorians have a unique cultural division between their sexes. They evolved as nomadic hunters of creatures like the bist and etelo, surviving on the wilderness as apex predators. As time went on, a rift in their society developed between the two sexes. Males were drawn to continue their lifestyle as nomads and hunters for their people, while females tended to prefer remaining in permanent camps and contributed the vast majority of their species technological developments. This division has continued into modern times, with males continuing their nomadic traditions and females frequently preferring to stay in villages and cities. Males visit their mates for about a month each year, but otherwise the sexes live completely separate lives. Whether in spite of this separation of the sexes, or because of it, Togorians are typically monogamous and devoted to their chosen mates.

Names

Togorian names tend to be short and primal-sounding. Female names tend to include softer consonants and more vowels, while male names are typically harsher. Togorians do not use surnames.

  Male Names. Mezgraf, Mlatar, Morto, Mrrov, Torr

  Female Names. Coelle, Elotis, H'sishi, Kra'ake, Rrowv","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Strength score increases by 2, and your Dexterity or Constitution score increases by 1.

Age. Togorian reach adulthood in their late teens and live less than a century.

Alignment. Togorians' rigid sense of honor causes them to tend toward lawful light side, though there are exceptions.

Size. Togorians tower over almost all other species, with smaller females standing upwards of 7 feet tall and weighing 250 lbs., while males can easily reach 8 feet tall and weigh around 350 lbs. Regardless of your position in that range, your size is Medium.

Speed. Your base walking speed is 30 feet.

Claws. Togorians have retractable claws. You are proficient with your claws, which deal 1d6 kinetic damage on a hit.

Savage Attacks. When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.

Stealthy Hunter. You have proficiency in the Survival and Stealth skills.

Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.

Languages. You can speak, read, and write Galactic Basic and Togorese. Togorese is characterized by its deep, resonating growls.

"},"skinColorOptions":{"value":"Black, brown, or white"},"hairColorOptions":{"value":"Black, brown, orange, or white"},"eyeColorOptions":{"value":"Brown, green, orange, or yellow"},"distinctions":{"value":"Large frame, retractable claws, striped fur, rigid honor code"},"heightAverage":{"value":"6'2\""},"heightRollMod":{"value":"+2d12\""},"weightAverage":{"value":"175 lb."},"weightRollMod":{"value":"x(2d6) lb."},"homeworld":{"value":"Togoria"},"slanguage":{"value":"Togorese"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"EC"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Togorian","mode":"=","targetSpecific":false,"id":1,"itemId":"odiMLlN9Ik1dA1Pq","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.str.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"odiMLlN9Ik1dA1Pq","active":false,"_targets":[],"label":"Abilities Strength"},{"modSpecKey":"data.abilities.dex.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"odiMLlN9Ik1dA1Pq","active":false,"_targets":[],"label":"Abilities Dexterity"},{"modSpecKey":"data.traits.size","value":" med","mode":"=","targetSpecific":false,"id":4,"itemId":"odiMLlN9Ik1dA1Pq","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.attributes.movement.walk","value":"30","mode":"=","targetSpecific":false,"id":5,"itemId":"odiMLlN9Ik1dA1Pq","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.skills.sur.value","value":"1","mode":"+","targetSpecific":false,"id":6,"itemId":"odiMLlN9Ik1dA1Pq","active":false,"_targets":[]},{"modSpecKey":"data.skills.ste.value","value":"1","mode":"+","targetSpecific":false,"id":7,"itemId":"odiMLlN9Ik1dA1Pq","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":8,"itemId":"odiMLlN9Ik1dA1Pq","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"togorese","mode":"+","targetSpecific":false,"id":9,"itemId":"odiMLlN9Ik1dA1Pq","active":false,"_targets":[]}]},"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Togorian.webp","effects":[{"_id":"AwKbuyAocEAz5vyD","flags":{"dae":{"transfer":true,"stackable":false}},"changes":[{"key":"data.details.species","value":"Togorian","mode":5,"priority":5},{"key":"data.abilities.str.value","value":2,"mode":2,"priority":20},{"key":"data.abilities.dex.value","value":1,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":0,"priority":5},{"key":"data.attributes.movement.walk","value":"30","mode":5,"priority":5},{"key":"data.skills.sur.value","value":1,"mode":4,"priority":20},{"key":"data.skills.ste.value","value":1,"mode":4,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"togorese","mode":0,"priority":0},{"key":"flags.sw5e.savageAttacks","value":"1","mode":5,"priority":20},{"key":"flags.sw5e.toughness","value":"1","mode":5,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Togorian.webp","label":"Togorian","tint":"","transfer":true}]} +{"_id":"ZiVBeB90FBaqFFoV","name":"Advozse","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

\n

Advozsec evolved from herbivorous reptile-analogs which fed on the vegetation known to form around Riflor's hot springs. Evolving into a class of reptomammal, advozsec have a single horn at the crown of their heads, four digits on each hand and foot, pointed ears, and large eyes. Advozsec are strictly vegetarian, unable to properly digest meat. The geothermal hot springs that appear on their homeworld forced the species to evolve thick skin in order to survive. The large eyes of the advozsec are adaptations to the clouds of volcanic ash which darken Riflor's skies.

\n

Society and Culture

\n

Since so much of the sunlight on Riflor is blocked by volcanic eruptions, advozsec tend to settle near geothermal springs for heat. Unfortunately, these springs also tend to be in geologically unstable regions, and anything built near them is often destroyed or abandoned due to eruptions or groundquakes. As a result, the advozse people ended up having little attachment to material goods or long-term plans, and developed a pessimistic, selfish, and even paranoid outlook on life. This facet of their culture remained long after contact with the Galactic Republic gave them access to modern construction techniques allowing for more permanent buildings. Seeing financial stability as the only truly achievable stability one could find in life, the advozsec constantly strive to accumulate as much monetary wealth as they can in a lifetime in order to have the ability to rebuild when the worst happens.

\n

Names

\n

Advozsec have simple names that do not distinguish between genders, using familial surnames.

\n

  First Names. Dleck, Fjemm, Gorde, Rollar, Xon

\n

  Surnames. Ghantere, Leventraim, Timack, Vy, Zimda

","chat":"","unidentified":""},"source":"EC","traits":{"value":"

Ability Score Increase. Your Constitution score increases by 2, and your Wisdom score increases by 1.

\n

Age. Advozsec reach adulthood in their late teens and typically live for over half a century.

\n

Alignment. Advozsec's paranoid and pessimistic nature causes them to tend towards balanced alignments, particularly lawful balanced, though there are exceptions.

\n

Size. Advozsec typically stand 5 to 6 feet tall and generally weigh about 130 lbs. Regardless of your position in that range, your size is Medium.

\n

Speed. Your base walking speed is 30 feet.

\n

Darkvision. Your vision can easily cut through darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can’t discern color in darkness, only shades of gray.

\n

Hide. You have a thick hide. While you are unarmored or wearing light armor, your AC is 12 + your Dexterity modifier.

\n

Horn. Your sharp horn is a natural weapon, which you can use to make unarmed strikes. Additionally, your unarmed strikes deal 1d4 kinetic damage.

\n

Lava Dweller. Your body is well accustomed to extreme heat, giving you resistance to fire damage.

\n

Vigilant. When you would roll initiative, you can choose to have advantage on the roll. Once you've done so, you must complete a short or long rest before you can do so again.

\n

Languages. You can speak, read, and write Galactic Basic and Advb. Advb sounds quick and aggressive. It's incredibly rare to find a non-advozsec speaking Advb, and some linguists even consider it to be an all but dead language.

"},"skinColorOptions":{"value":"Green, brown, muddy yellow, or tan"},"hairColorOptions":{"value":"None"},"eyeColorOptions":{"value":"Black or red"},"distinctions":{"value":"Large eyes, single horn on head, pointed ears"},"heightAverage":{"value":"4'9\""},"heightRollMod":{"value":"+2d6\""},"weightAverage":{"value":"100 lb."},"weightRollMod":{"value":"x(2d4) lb."},"homeworld":{"value":"Riflor"},"slanguage":{"value":"Advb"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false}}},"flags":{"dynamiceffects":{"equipActive":false,"alwaysActive":false},"dae":{"activeEquipped":false,"alwaysActive":true},"core":{"sourceId":"Item.E9fS8ySKUs00ASas"}},"img":"systems/sw5e/packs/Icons/Species/Advozse.webp","effects":[{"_id":"G49BHyIIfQBdFmUt","flags":{"dae":{"stackable":false,"specialDuration":[],"transfer":true}},"changes":[{"key":"data.details.species","value":"Advozse","mode":5,"priority":20},{"key":"data.abilities.con.value","value":2,"mode":2,"priority":20},{"key":"data.abilities.wis.value","value":1,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":5,"priority":20},{"key":"data.attributes.movement.walk","value":30,"mode":5,"priority":20},{"key":"data.attributes.senses.darkvision","value":60,"mode":2,"priority":20},{"key":"data.attributes.ac.value","value":"12+@abilities.dex.mod","mode":5,"priority":20},{"key":"data.traits.dr.value","value":"fire","mode":0,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":2,"priority":20},{"key":"data.traits.languages.custom","value":"Advb","mode":0,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"modules/hgttg/packs/Icons/Advozse.webp","label":"Advozse","tint":"","transfer":true}]} {"_id":"a1f8nLgf8Le37uQ1","name":"Toydarian","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

A mammalian species of winged, stout bodied humanoids, the Toydarians have stubby facial tusks which protruded from their lower jaw and framed a short pudgy trunk. While their stubby legs can support their body weight, Toydarians' primary mode of locomotion was their use of the wings on their upper back. Though their wings can beat as fast as ten times a second, the effort burned up large amounts of energy, causing the species to need to replenish itself often through regularly eating mass quantities of food. In order to fuel this hyperactive metabolism, Toydarians eat concentrated foods and egg-seeds. Most of the bloodiest wars in their history were fought over food supplies.

Society and Culture

Despite being ruled by the Hutts, the Toydarian people are able to govern themselves free of major outside intervention through the establishment of a feudal monarchy. A ruling king sits on the planet's throne, allowing vassals to form allegiances and have minor disputes to solve their own problems. The king makes sure to keep his vassals happy and to have their allegiance, but will occasionally encourage infighting to reveal the true character of the vassals and weed out treachery. \r\n\r\nToydarians are known as shrewd businessmen.

Names

Toydarian names are fairly simple and guttural, but a few harsher elements can be found here and there. Male names are generally shorter than female names. Female names always end in a vowel.

  Male Names. Dod, Nesteddo, Tul, Zloomroo

  Female Names. Fefiffe, Lenlibo, Nugni, Zoldibu

  Surnames. Daab, Faabb, Kepo, Mitra, Vulba","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Charisma score increases by 2, and your Intelligence score increases by 1.

Age. Toydarians reach adulthood at 10 and live less than a century.

Alignment. Toydarians' greedy nature causes them to tend toward chaotic balanced, though there are exceptions.

Size. Toydarians average 4 feet tall and weigh less than 50 lbs. Regardless of your position in that range, your size is Small.

Speed. Your base walking speed is 25 feet.

Business Savvy. A common trait of all Toydarians is their shrewd business sense and their ability to haggle any deal. A loyal and proud people, these traits could be off-putting to outsiders, as many Toydarians in the galaxy were seen as crooks or slimy businessmen, but this was not always the case. Whenever you make a Charisma (Persuasion) check involving haggling you are considered to have expertise in the Persuasion skill.

Closed Mind. Toydarian brains have an unusual composition which made them resistant to influence from the Force. You have advantage on Wisdom and Charisma saving throws against force powers.

Flight. You have a flying speed of 25 feet. To use this speed, you can't be wearing medium or heavy armor.

Shrewd Demeanor. You have proficiency in two Intelligence, Wisdom, or Charisma skills of your choice.

Undersized. Your small stature makes it hard for you to wield bigger weapons. You can't use heavy shields. Additionally, you 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, you can only wield it in two hands.

Languages. You can speak, read, and write Galactic Basic, Huttese, and Toydarian.

"},"skinColorOptions":{"value":"Blue, green, grey, or pink"},"hairColorOptions":{"value":"None"},"eyeColorOptions":{"value":"Black, brown, or green"},"distinctions":{"value":"Two wings, facial tusks, snout, three fingers and toes on appendages"},"heightAverage":{"value":"3'3\""},"heightRollMod":{"value":"+2d8\""},"weightAverage":{"value":"40 lb."},"weightRollMod":{"value":"x1 lb."},"homeworld":{"value":"Toydaria"},"slanguage":{"value":"Toydarian"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"EC"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Toydarian","mode":"=","targetSpecific":false,"id":1,"itemId":"EiVUpSvIoZoSRt5z","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.cha.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"EiVUpSvIoZoSRt5z","active":false,"_targets":[],"label":"Abilities Charisma"},{"modSpecKey":"data.abilities.int.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"EiVUpSvIoZoSRt5z","active":false,"_targets":[],"label":"Abilities Intelligence"},{"modSpecKey":"data.traits.size","value":"sm","mode":"=","targetSpecific":false,"id":4,"itemId":"EiVUpSvIoZoSRt5z","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.attributes.movement.walk","value":"25","mode":"=","targetSpecific":false,"id":5,"itemId":"EiVUpSvIoZoSRt5z","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.attributes.movement.fly","value":"25","mode":"+","targetSpecific":false,"id":6,"itemId":"EiVUpSvIoZoSRt5z","active":false,"_targets":[],"label":"Attributes Speed Special"},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":7,"itemId":"EiVUpSvIoZoSRt5z","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"huttese","mode":"+","targetSpecific":false,"id":8,"itemId":"EiVUpSvIoZoSRt5z","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"toydarian","mode":"+","targetSpecific":false,"id":9,"itemId":"EiVUpSvIoZoSRt5z","active":false,"_targets":[]}]},"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Toydarian.webp","effects":[{"_id":"uswPAoIbJ2GUTyBM","flags":{"dae":{"transfer":true,"stackable":false}},"changes":[{"key":"data.details.species","value":"Toydarian","mode":5,"priority":5},{"key":"data.abilities.cha.value","value":2,"mode":2,"priority":20},{"key":"data.abilities.int.value","value":1,"mode":2,"priority":20},{"key":"data.traits.size","value":"sm","mode":5,"priority":5},{"key":"data.attributes.movement.walk","value":25,"mode":5,"priority":5},{"key":"data.attributes.movement.fly","value":25,"mode":2,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"huttese","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"toydarian","mode":0,"priority":0},{"key":"flags.sw5e.businessSavvy","value":"1","mode":5,"priority":20},{"key":"flags.sw5e.closedMind","value":"1","mode":5,"priority":20},{"key":"flags.sw5e.undersized","value":"1","mode":5,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Toydarian.webp","label":"Toydarian","tint":"","transfer":true}]} {"_id":"aKKprEtOyd2GOSnY","name":"Thisspiasian","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

Thisspiasians are easily recognized by their abundant beards and their long tails, which often reach over six feet. These tails are very strong and are commonly used to carry large objects. When meditating or at rest, a thisspiasian will coil their tail beneath their torso, reducing their height by several feet. They also possess four arms, with the upper set being stronger and larger. Each of their four hands have five fingers, and each finger is tipped with a long, sturdy claw. It is thought unsophisticated or unseemly by upper-class thisspiasians to have the bottom two visible in public, so they are generally hidden from sight via larger garments, with the smaller limbs sometimes even bound to their bodies. Thisspiasians need very little sleep to function normally, resting for only two hours a day, with brief meditative moments scattered throughout the day to refocus.

Society and Culture

Thisspiasian culture is one of proud warriors who keep their emotions well-concealed and their rages checked. Many outsiders see only a thisspiasian's outward facade of tranquility, and to most being it seems as if thisspiasians existed in a sea of calm. This is far from the truth, however, as they are in truth a very passionate species below the surface. A thisspiasian who doesn't meditate as often as they should will often be prone to otherwise atypical emotional outbursts.\r\n\r\nThisspias is ruled by a hereditary leader called the Blood Monarch. Due to their seemingly archaic ruling structure, thisspiasians are often considered out-of-touch.

Names

Thisspiasian names typically are composed of two similar sounding syllables. Surnames are familial.

  First Names. Annak, Effed, Emmet, Gorro, Koto

  Surnames. Albarn, Braibel, Kirsingr, Raledurn","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Wisdom score increases by 2, and your Strength score increases by 1.

Age. Thisspiasians reach adulthood in their 20s and often live more than a century.

Alignment. Thisspiasians' emotional composure causes them to tend toward lawful alignments, though there are exceptions.

Size. Thisspiasians typically stand 5 to 6 and a half feet tall and generally weigh about 300 lbs. Regardless of your position in that range, your size is Medium.

Speed. Your base walking speed is 30 feet.

Claws. Thisspiasians have long claws. You are proficient with your claws, which deal 1d4 kinetic damage on a hit.

Cultured. You have proficiency in the Lore skill.

Four-Armed. Thisspiasians have four arms which they 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).

Inscrutable. Your calm demeanor 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.

Prehensile Tail. You have supreme control over your tail and can use it to manipulate objects as well as your hands.

Trance. Thisspiasians only require 2 hours of sleep a day. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.

Languages. You can speak, read, and write Galactic Basic and Thisspiasian. Thisspiasian is a complex language characterized by its interlocking sentences and heavy use of sibilants.

"},"skinColorOptions":{"value":"Pale to green"},"hairColorOptions":{"value":"Black, blond, brown, grey, or white (with age)"},"eyeColorOptions":{"value":"Yellow"},"distinctions":{"value":"Four arms, serpentine, large beards"},"heightAverage":{"value":"4'8\""},"heightRollMod":{"value":"+2d8\""},"weightAverage":{"value":"250 lb."},"weightRollMod":{"value":"x(2d4) lb."},"homeworld":{"value":"Thisspias"},"slanguage":{"value":"Thisspiasian"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"EC"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Thisspiasian","mode":"=","targetSpecific":false,"id":1,"itemId":"yYOjgkoTgApRxRXj","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.wis.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"yYOjgkoTgApRxRXj","active":false,"_targets":[],"label":"Abilities Wisdom"},{"modSpecKey":"data.abilities.str.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"yYOjgkoTgApRxRXj","active":false,"_targets":[],"label":"Abilities Strength"},{"modSpecKey":"data.traits.size","value":"med","mode":"=","targetSpecific":false,"id":4,"itemId":"yYOjgkoTgApRxRXj","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.attributes.movement.walk","value":"30","mode":"=","targetSpecific":false,"id":5,"itemId":"yYOjgkoTgApRxRXj","active":false,"_targets":[],"label":"Attributes Speed"},{"modSpecKey":"data.skills.lor.value","value":"1","mode":"+","targetSpecific":false,"id":6,"itemId":"yYOjgkoTgApRxRXj","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":7,"itemId":"yYOjgkoTgApRxRXj","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"thisspiasian","mode":"+","targetSpecific":false,"id":8,"itemId":"yYOjgkoTgApRxRXj","active":false,"_targets":[]}]},"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Thisspiasian.webp","effects":[{"_id":"4WoMle31KAvAHxvk","flags":{"dae":{"transfer":true,"stackable":false}},"changes":[{"key":"data.details.species","value":"Thisspiasian","mode":5,"priority":5},{"key":"data.abilities.wis.value","value":2,"mode":2,"priority":20},{"key":"data.abilities.str.value","value":1,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":0,"priority":5},{"key":"data.attributes.movement.walk","value":"30","mode":5,"priority":5},{"key":"data.skills.lor.value","value":1,"mode":4,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"thisspiasian","mode":0,"priority":0},{"key":"flags.sw5e.inscrutable","value":"1","mode":5,"priority":20},{"key":"flags.sw5e.trance","value":"1","mode":5,"priority":20},{"key":"flags.sw5e.extraArms","value":"1","mode":5,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Thisspiasian.webp","label":"Thisspiasian","tint":"","transfer":true}]} {"_id":"aNfVgeDkuDkuGzAE","name":"Trandoshan","permission":{"default":0,"IpSq6HI4edO6e0Yw":3},"type":"species","data":{"data":"$characteristics-table","description":{"value":"

Biology and Appearance

Trandoshans are a large, bipedal sentient species, with scaly skin which was shed roughly once every standard year and was thought to be very durable. Cold-blooded reptiles, trandoshans had two super-sensitive varied color eyes with horizontal black pupils, which could see far into the infrared range. Each of their four limbs ends in three razor sharp claws. These are perfect for combat, but did not grant them manual dexterity, making a trandoshan's finger movements somewhat clumsy and awkward.

Society and Culture

Trandoshans worship their goddess, the Scorekeeper, whom they would appease through acts which increased their Jagannath points. This is done by living a lifestyle which was, by non-trandoshan standards, overtly aggressive, leading many trandoshans to become bounty hunters, mercenaries, or slavers. Trandoshans especially prize wookiee pelts, which consequently play a large part in earning Jagannath points-capturing the pelts of particularly infamous wookiees would give the hunter a large increase in Jagganath points. To be shamed or captured during a hunt would zero one's Jagganath points-effectively making their life forfeit in the eyes of the Scorekeeper. They could, however, win all those points back by killing the one who zeroed their score.

Names

Trandoshan names are quite harsh and contain a lot of elongated sounds, as well as a lot of s's. Differences between male and female names are often very subtle, but there is a higher chance for female names to contain softer sounds.

  Male Names. Bossk, Tshyrrng, Varrsk, Wuikkekss

  Female Names. Aksa, Idwiks, Kluks, Mezuus, Shokss

  Surnames. Dallosss, Druc, Groqisch, Hsac, Nausdot","chat":"","unidentified":""},"traits":{"value":"

Ability Score Increase. Your Strength score increases by 2, and your Wisdom score increases by 1.

Age. Trandoshans reach adulthood in their early teens and rarely live to be older than 70.

Alignment. Trandoshans tend toward the dark side, though there are exceptions.

Size. Trandoshans stand as tall as 7 and a half feet and can weigh over 300 lbs. Regardless of your position in that range, your size is Medium.

Speed. Your base walking speed is 30 feet.

Darkvision. Your vision can easily cut through darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.

Hold Breath. You can hold your breath for up to 15 minutes at a time.

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

Saving Face. Trandoshans are careful not to show weakness in front of their allies, for fear of losing status. If you miss with an attack roll or fail an ability check or a saving throw, you can gain a bonus to the roll equal to the number of allies you can see within 30 feet of you (maximum bonus of +5). Once you use this trait, you can't use it again until you finish a short or long rest.

Languages. You can speak, read, and write Galactic Basic and Dosh. Dosh is characterized by its harsh grunts, hisses and growls, and its written form that used alphabetic glyphs.

"},"skinColorOptions":{"value":"Green, yellow, brown, orange, red"},"hairColorOptions":{"value":"None"},"eyeColorOptions":{"value":"Yellow, orange"},"distinctions":{"value":"Reptilian, scaly skin, regenerative properties"},"heightAverage":{"value":"5'5\""},"heightRollMod":{"value":"+2d12\""},"weightAverage":{"value":"130 lb."},"weightRollMod":{"value":"x(2d6) lb."},"homeworld":{"value":"Trandosha"},"slanguage":{"value":"Dosh"},"damage":{"parts":[]},"armorproperties":{"parts":[]},"weaponproperties":{"parts":[]},"source":"PHB"},"flags":{"dynamiceffects":{"equipActive":true,"alwaysActive":false,"effects":[{"modSpecKey":"data.details.species","value":"Trandoshan","mode":"=","targetSpecific":false,"id":1,"itemId":"jH3OrTNFYwwm7aqf","active":false,"_targets":[],"label":"Details Species"},{"modSpecKey":"data.abilities.str.value","value":"2","mode":"+","targetSpecific":false,"id":2,"itemId":"jH3OrTNFYwwm7aqf","active":false,"_targets":[],"label":"Abilities Strength"},{"modSpecKey":"data.abilities.wis.value","value":"1","mode":"+","targetSpecific":false,"id":3,"itemId":"jH3OrTNFYwwm7aqf","active":false,"_targets":[],"label":"Abilities Wisdom"},{"modSpecKey":"data.traits.size","value":"med","mode":"=","targetSpecific":false,"id":4,"itemId":"jH3OrTNFYwwm7aqf","active":false,"_targets":[],"label":"Traits Size"},{"modSpecKey":"data.traits.senses","value":"Darkvision (60 ft.)","mode":"+","targetSpecific":false,"id":5,"itemId":"jH3OrTNFYwwm7aqf","active":false,"_targets":[],"label":"Traits Senses"},{"modSpecKey":"data.traits.languages.value","value":"basic","mode":"+","targetSpecific":false,"id":6,"itemId":"jH3OrTNFYwwm7aqf","active":false,"_targets":[]},{"modSpecKey":"data.traits.languages.value","value":"dosh","mode":"+","targetSpecific":false,"id":7,"itemId":"jH3OrTNFYwwm7aqf","active":false,"_targets":[]}]},"dae":{"activeEquipped":false,"alwaysActive":true}},"img":"systems/sw5e/packs/Icons/Species/Trandoshan.webp","effects":[{"_id":"cGgWnQNhESjlOFmW","flags":{"dae":{"transfer":true,"stackable":false,"specialDuration":[]}},"changes":[{"key":"data.details.species","value":"Trandoshan","mode":5,"priority":5},{"key":"data.abilities.str.value","value":2,"mode":2,"priority":20},{"key":"data.abilities.wis.value","value":1,"mode":2,"priority":20},{"key":"data.traits.size","value":"med","mode":5,"priority":5},{"key":"data.attributes.senses.darkvision","value":60,"mode":2,"priority":20},{"key":"data.traits.languages.value","value":"basic","mode":0,"priority":0},{"key":"data.traits.languages.value","value":"dosh","mode":0,"priority":0},{"key":"data.attributes.movement.walk","value":30,"mode":5,"priority":20},{"key":"flags.sw5e.regenerative","value":"1","mode":0,"priority":20}],"disabled":false,"duration":{"startTime":null,"seconds":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"icon":"systems/sw5e/packs/Icons/Species/Trandoshan.webp","label":"Trandoshan","tint":"","transfer":true}]} diff --git a/sw5e-dark.css b/sw5e-dark.css index 9a0e1178..d381f520 100644 --- a/sw5e-dark.css +++ b/sw5e-dark.css @@ -794,3 +794,14 @@ body.dark-theme .sw5e.sheet.actor .swalt-sheet .tab.notes section > input { body.dark-theme .sw5e.sheet.actor.npc .swalt-sheet header .experience { color: #4f4f4f; } +body.dark-theme .sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper .fuel-label { + background: #D6D6D6; + color: #1C1C1C; + border: 1px solid #1C1C1C; +} +body.dark-theme .sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper .fuel { + background: #c40f0f; +} +body.dark-theme .sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper .fuel .fuel-bar { + background: #0dce0d; +} \ No newline at end of file diff --git a/sw5e-global.css b/sw5e-global.css index 35501ad2..4d271123 100644 --- a/sw5e-global.css +++ b/sw5e-global.css @@ -1727,3 +1727,78 @@ input[type="reset"]:disabled { transform: rotate(360deg); } } +.sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper { + display: grid; + grid-template-columns: 300px 100px; + width: 400px; + justify-self: end; +} +.sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper .fuel-label { + font-size: 12px; + line-height: 14px; + width: 100%; + text-shadow: none; + padding: 0; + margin: 0; + height: auto; + text-align: center; + margin-left: -2px; + border-radius: 0 4px 4px 0; +} +.sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper .fuel { + position: relative; + border-radius: 4px; + height: 16px; + margin: 0; + width: 100%; +} +.sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper .fuel .fuel-bar { + position: absolute; + top: 0; + left: 0; + height: 100%; + border-radius: 4px; + border: none; +} +input[type=range][orient=vertical] { + -webkit-appearance: slider-vertical; + width: 10px; + height: 60px !important; + padding: 0 0 !important; + background-color: #c40f0f !important; + box-sizing: border-box; +} +input[type=range][orient=vertical]::-webkit-slider-runnable-track { + -webkit-appearance: slider-vertical !important; + height: 60px !important; + width: 10px !important; + line-height: 60px !important; + padding-top: 0 !important; + padding-bottom: 0 !important; + margin-top: 0 0 !important; + border-radius: 3px !important; + background: linear-gradient( + to top, + #c40f0f 50%, + #0dce0d 50% + ); +} +input[type=range][orient=vertical]::-webkit-slider-thumb { + -webkit-appearance: none !important; + background-color: #c40f0f !important; + margin-right: -4px !important; + margin-top: 0px !important; + cursor: grab !important; + border-radius: 0 0 0 0 !important; + width: 10px !important; + height: 5px !important; + font-size: 10px; +} +output { + display: block; + margin: 5px auto; + font-size:1.75em; +} +input .vertslider { + height: 60px; +} \ No newline at end of file diff --git a/sw5e-light.css b/sw5e-light.css index 3b240d7a..cbe5b909 100644 --- a/sw5e-light.css +++ b/sw5e-light.css @@ -781,3 +781,14 @@ body.light-theme .sw5e.sheet.actor .swalt-sheet .tab.notes section > input { body.light-theme .sw5e.sheet.actor.npc .swalt-sheet header .experience { color: #4f4f4f; } +body.light-theme .sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper .fuel-label { + background: #D6D6D6; + color: #1C1C1C; + border: 1px solid #1C1C1C; +} +body.light-theme .sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper .fuel { + background: #c40f0f; +} +body.light-theme .sw5e.sheet.actor .swalt-sheet .panel.resources .traits .fuel-wrapper .fuel .fuel-bar { + background: #0dce0d; +} \ No newline at end of file diff --git a/sw5e.css b/sw5e.css index 556d0642..f548bfdc 100644 --- a/sw5e.css +++ b/sw5e.css @@ -426,6 +426,7 @@ list-style: none; margin: 0; padding: 0; + display: block; } .sw5e.sheet .items-list .item-name { flex: 2; diff --git a/sw5e.js b/sw5e.js index e412f4f3..026e4b42 100644 --- a/sw5e.js +++ b/sw5e.js @@ -277,6 +277,10 @@ Handlebars.registerHelper('getProperty', function (data, property) { return getProperty(data, property); }); +Handlebars.registerHelper('round', function(value) { + return Math.floor(value); +}); + function setFolderBackground(html) { html.find("header.folder-header").each(function() { diff --git a/template.json b/template.json index af1c9bff..140be7e6 100644 --- a/template.json +++ b/template.json @@ -440,6 +440,11 @@ "dr": 0, "engpow": 1, "exhaustion": 0, + "fuel": { + "cap": 0, + "cost": 0, + "value": 0 + }, "hsm": 1, "hull": { "die": "", @@ -502,7 +507,7 @@ }, "details": { "tier": 0, - "role": "", + "role": [], "source": "" }, "skills": { diff --git a/templates/actors/newActor/starship.html b/templates/actors/newActor/starship.html index 150aad59..2de88fc1 100644 --- a/templates/actors/newActor/starship.html +++ b/templates/actors/newActor/starship.html @@ -53,10 +53,10 @@

{{ localize "SW5E.ShieldPoints" }}

- / -