diff --git a/modules/pegasus-actor-sheet.js b/modules/pegasus-actor-sheet.js index 9d38dc8..6401605 100644 --- a/modules/pegasus-actor-sheet.js +++ b/modules/pegasus-actor-sheet.js @@ -52,6 +52,8 @@ export class PegasusActorSheet extends ActorSheet { activePerks: duplicate(this.actor.getActivePerks()), powers: duplicate(this.actor.getPowers()), subActors: duplicate(this.actor.getSubActors()), + race: duplicate(this.actor.getRace()), + role: duplicate(this.actor.getRole()), options: this.options, owner: this.document.isOwner, editScore: this.options.editScore, diff --git a/modules/pegasus-actor.js b/modules/pegasus-actor.js index a845895..4c4c1b0 100644 --- a/modules/pegasus-actor.js +++ b/modules/pegasus-actor.js @@ -113,6 +113,14 @@ export class PegasusActor extends Actor { getShields() { let comp = this.data.items.filter( item => item.type == 'shield'); return comp; + } + getRace() { + let race = this.data.items.filter( item => item.type == 'race'); + return race[0]?? []; + } + getRole() { + let role = this.data.items.filter( item => item.type == 'role'); + return role[0]?? []; } /* -------------------------------------------- */ @@ -548,6 +556,18 @@ export class PegasusActor extends Actor { stat.mod += parseInt(ability.data.statmodifier) updates[`data.statistics.${ability.data.affectedstat}`] = stat } + for (let power of race.data.powersgained) { + newItems.push(power); + } + for (let spec of race.data.specialisations) { + newItems.push(spec); + } + for (let weapon of race.data.attackgained) { + newItems.push(weapon); + } + for (let armor of race.data.armorgained) { + newItems.push(armor); + } } await this.update( updates ) await this.createEmbeddedDocuments('Item', newItems) diff --git a/modules/pegasus-create-char.js b/modules/pegasus-create-char.js index d0a4e19..0bcd14a 100644 --- a/modules/pegasus-create-char.js +++ b/modules/pegasus-create-char.js @@ -43,9 +43,10 @@ export class PegasusActorCreate { processChatEvent( event ) { const step = $(event.currentTarget).data("step-name"); const itemId = $(event.currentTarget).data("item-id"); - console.log("Create chat evet", event, itemId, step) + if ( step == "select-race") { let race = this.races.find( item => item._id == itemId); + this.currentRace = race; this.actor.applyRace( race); PegasusUtility.removeChatMessageId(PegasusUtility.findChatMessageId(event.currentTarget)); if ( race.data.nboptionnal > 0 && race.data.optionnalabilities.length > 0) { @@ -53,6 +54,8 @@ export class PegasusActorCreate { } else { if ( race.data.selectablestats ) { this.manageSelectableStats(race); + } else if ( race.data.perksgained) { + this.showRacePerks(race); } else { this.showRoles() } @@ -77,6 +80,24 @@ export class PegasusActorCreate { this.processSelectableStats(); } + if (step == 'select-race-perks-all') { + PegasusUtility.removeChatMessageId(PegasusUtility.findChatMessageId(event.currentTarget)); + let perk = this.racePerks.find( item => item._id == itemId); + this.actor.createEmbeddedDocuments( 'Item', [perk]); + this.racePerks = this.racePerks.filter( item => item._id != itemId); + this.nbperks -= 1; + if ( this.nbperks == 0 || this.racePerks.length == 0) { + this.showRoles() + }else { + this.showRacePerks(); + } + } + + if (step == 'select-race-perks') { + PegasusUtility.removeChatMessageId(PegasusUtility.findChatMessageId(event.currentTarget)); + this.showRoles() + } + if ( step == 'select-role') { let role = this.roles.find( item => item._id == itemId); PegasusUtility.removeChatMessageId(PegasusUtility.findChatMessageId(event.currentTarget)); @@ -153,7 +174,37 @@ export class PegasusActorCreate { this.processSelectableStats() } - /* --------------- ----------------------------- */ + /* -------------------------------------------- */ + async renderChatMessage( formData) { + let chatData = { + user: game.user.id, + alias : this.actor.name, + rollMode: game.settings.get("core", "rollMode"), + whisper: [game.user.id].concat( ChatMessage.getWhisperRecipients('GM') ), + content: await renderTemplate('systems/fvtt-pegasus-rpg/templates/chat-create-actor.html', formData) + }; + //console.log("Apply damage chat", chatData ); + await ChatMessage.create( chatData ); + } + + /* --------------- -------------------- --------- */ + manageRacePerks(race) { + if ( !this.racePerks) { // First init + this.racePerks = duplicate(race.data.perks) + this.nbRacePerks = race.data.perksnumber; + } + let formData + if (race.data.perksall) { + formData = this.createFormData("select-race-perks-all") + } else { + formData = this.createFormData("select-race-perks") + formData.raceperks = this.racePerks; + formData.nbraceperks = this.nbRacePerks; + } + this.renderChatMessage(formData) + } + + /* --------------- -------------------- --------- */ async processSelectableStats() { // End of race options choice if ( this.raceSelectableStats.numberstats == 0) { @@ -186,49 +237,28 @@ export class PegasusActorCreate { // End of race options choice if ( this.raceOptionnalAbilities.nboptionnal == 0) { if ( this.raceSelectableStats ) { - this.manageSelectableStats(this.raceSelectableStats.race); + this.manageSelectableStats(this.currentrace); + } else if ( this.currentRace.data.perksgained) { + this.manageRacePerks(this.currentRace); } else { this.showRoles() } + } else { + let formData = this.createFormData("select-race-optionnal") + this.renderChatMessage( formData) } - let formData = this.createFormData("select-race-optionnal") - let chatData = { - user: game.user.id, - alias : this.actor.name, - rollMode: game.settings.get("core", "rollMode"), - whisper: [game.user.id].concat( ChatMessage.getWhisperRecipients('GM') ), - content: await renderTemplate('systems/fvtt-pegasus-rpg/templates/chat-create-actor.html', formData) - }; - //console.log("Apply damage chat", chatData ); - await ChatMessage.create( chatData ); - } /* -------------------------------------------- */ async showRaces() { let formData = this.createFormData("select-race") - let chatData = { - user: game.user.id, - alias : this.actor.name, - rollMode: game.settings.get("core", "rollMode"), - whisper: [game.user.id].concat( ChatMessage.getWhisperRecipients('GM') ), - content: await renderTemplate('systems/fvtt-pegasus-rpg/templates/chat-create-actor.html', formData) - }; - //console.log("Apply damage chat", chatData ); - await ChatMessage.create( chatData ); + this.renderChatMessage( formData) } /* -------------------------------------------- */ async showRoles() { let formData = this.createFormData("select-role") - let chatData = { - user: game.user.id, - alias : this.actor.name, - rollMode: game.settings.get("core", "rollMode"), - whisper: [game.user.id].concat( ChatMessage.getWhisperRecipients('GM') ), - content: await renderTemplate('systems/fvtt-pegasus-rpg/templates/chat-create-actor.html', formData) - }; - await ChatMessage.create( chatData ); + this.renderChatMessage( formData) } /* -------------------------------------------- */ @@ -241,14 +271,7 @@ export class PegasusActorCreate { } } console.log("STAT", this.roleStats, formData) - let chatData = { - user: game.user.id, - alias : this.actor.name, - rollMode: game.settings.get("core", "rollMode"), - whisper: [game.user.id].concat( ChatMessage.getWhisperRecipients('GM') ), - content: await renderTemplate('systems/fvtt-pegasus-rpg/templates/chat-create-actor.html', formData) - }; - await ChatMessage.create( chatData ); + this.renderChatMessage( formData) } /* -------------------------------------------- */ @@ -259,14 +282,7 @@ export class PegasusActorCreate { if (this.nbDT2 > 0 ) { formData.dt = 2 } - let chatData = { - user: game.user.id, - alias : this.actor.name, - rollMode: game.settings.get("core", "rollMode"), - whisper: [game.user.id].concat( ChatMessage.getWhisperRecipients('GM') ), - content: await renderTemplate('systems/fvtt-pegasus-rpg/templates/chat-create-actor.html', formData) - }; - await ChatMessage.create( chatData ); + this.renderChatMessage( formData) } /* -------------------------------------------- */ @@ -274,28 +290,14 @@ export class PegasusActorCreate { let formData = this.createFormData("select-role-perk") formData.roleperks = duplicate(this.rolePerks) formData.nbperks = this.nbPerks - let chatData = { - user: game.user.id, - alias : this.actor.name, - rollMode: game.settings.get("core", "rollMode"), - whisper: [game.user.id].concat( ChatMessage.getWhisperRecipients('GM') ), - content: await renderTemplate('systems/fvtt-pegasus-rpg/templates/chat-create-actor.html', formData) - }; - await ChatMessage.create( chatData ); + this.renderChatMessage( formData) } /* -------------------------------------------- */ async showCharacterEnd() { this.actor.computeNRGHealth() let formData = this.createFormData("character-end") - let chatData = { - user: game.user.id, - alias : this.actor.name, - rollMode: game.settings.get("core", "rollMode"), - whisper: [game.user.id].concat( ChatMessage.getWhisperRecipients('GM') ), - content: await renderTemplate('systems/fvtt-pegasus-rpg/templates/chat-create-actor.html', formData) - }; - await ChatMessage.create( chatData ); + this.renderChatMessage( formData) } } diff --git a/modules/pegasus-item-sheet.js b/modules/pegasus-item-sheet.js index 00b15cd..0356272 100644 --- a/modules/pegasus-item-sheet.js +++ b/modules/pegasus-item-sheet.js @@ -223,6 +223,17 @@ export class PegasusItemSheet extends ItemSheet { } } + /* -------------------------------------------- */ + async addRacePerk(event, item, dataItem) { + let newItem = duplicate(item.data); + newItem._id = randomID( dataItem.id.length ); + if ( event.toElement.className == 'drop-race-perk') { + let perkArray = duplicate(this.object.data.data.perks); + perkArray.push( newItem); + await this.object.update( { 'data.perks': perkArray} ); + } + } + /* -------------------------------------------- */ async addSpecialisation(item, dataItem) { let newItem = duplicate(item.data); @@ -286,6 +297,7 @@ export class PegasusItemSheet extends ItemSheet { await this.object.update( { 'data.powersgained': powArray} ); } } + /* -------------------------------------------- */ async addAbilitySpec( event, item, dataItem) { let newItem = duplicate(item.data); @@ -296,6 +308,22 @@ export class PegasusItemSheet extends ItemSheet { await this.object.update( { 'data.specialisations': powArray} ); } } + /* -------------------------------------------- */ + async addAbilityWeaponArmor( event, item, dataItem) { + let newItem = duplicate(item.data); + newItem._id = randomID( dataItem.id.length ); + if ( event.toElement.className == 'drop-ability-weapon') { + let weaponArray = duplicate(this.object.data.data.attackgained); + weaponArray.push( newItem ); + await this.object.update( { 'data.attackgained': weaponArray} ); + } + if ( event.toElement.className == 'drop-ability-armor') { + let armorArray = duplicate(this.object.data.data.armorgained); + armorArray.push( newItem ); + await this.object.update( { 'data.armorgained': armorArray} ); + } + } + /* -------------------------------------------- */ async addPerkSpecialisation( event, item, dataItem) { @@ -322,6 +350,9 @@ export class PegasusItemSheet extends ItemSheet { if ( item.data.type == 'ability') { return this.addAbility( event, item, dataItem); } + if ( item.data.type == 'perk') { + return this.addRacePerk( event, item, dataItem); + } } } @@ -357,6 +388,9 @@ export class PegasusItemSheet extends ItemSheet { if ( item.data.type == 'specialisation') { return this.addAbilitySpec( event, item, dataItem); } + if ( item.data.type == 'weapon' || item.data.type == 'armor') { + return this.addAbilityWeaponArmor( event, item, dataItem); + } } } diff --git a/packs/race.db b/packs/race.db index 635ec91..f252a35 100644 --- a/packs/race.db +++ b/packs/race.db @@ -1,11 +1,11 @@ {"_id":"3WCJk6C00ik3hoI1","name":"Lizardmen","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"
See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","abilities":[{"_id":"avtejz4s68r818f6","name":"Tough Skin","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"oa7p72v2g3dsezzc","name":"Bite & Tail Combo","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"otti8kqs7qzg5py1","name":"Physique [PHY] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"phy","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"4olpc5biie6hagzx","name":"Strength [STR] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"str","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"BRITbTF8IeKTcbmj","name":"Robots","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","abilities":[{"_id":"q0nbzwq47ps63o1u","name":"Mechanical","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"en2015al33cyqvjw","name":"Metal Body","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"uueif8o8ynluuqju","name":"Does Not Breathe","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"e8cvk1io32rplpsy","name":"Master","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"5rllgta2i2lv4hno","name":"Mind [MND] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"mnd","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"d2d8s6hnsaciudqa","name":"Artificial","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":-2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.racial-abilities.HJoEmBzCz8vJhMnO"}}}],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"name":"Cyborg","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"","environment":"","society_culture":"","outlook":"","abilities":[{"_id":"p8vd5jdegkj19jdx","name":"Social [SOC] -1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":-1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"optionnalabilities":[{"_id":"2fut2onyy6uhxptr","name":"Ability1","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_ability.webp","data":{"affectedstat":"agi","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":""},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"hmgQYmqJMH3vUOoa":3},"flags":{}}],"nboptionnal":1,"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"hmgQYmqJMH3vUOoa":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.race.s7HiIu1dPtMwN1wV"}},"_id":"BeKcQz9QBJvK9Iha"} -{"_id":"EVblQVFh1bK0x3eO","name":"Mutant","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","abilities":[{"_id":"5lnp3dtdxzd2lm1t","name":"Skin of Scales","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"3h0ai4rgka6ypfr6","name":"Red Eyes","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"o9qmmeln45bd3hak","name":"Extra Arms","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"p9sobrt1tqk73l4r","name":"Claws","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"cjhyqkyqssdwpyr6","name":"Radioactive Spit","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ogj84ghhvl8a9bbu","name":"Horns or Spikes","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"88od19wt5jgq5cw6","name":"Tail","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"0uzbe1k1vuort1qr","name":"Wings","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ago13jpczjq7sege","name":"Social [SOC] -1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":-1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"zzus00jl76jf6g0z","name":"Stealth [STL] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"stl","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"BRITbTF8IeKTcbmj","name":"Robots","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","selectablestats":true,"statsonlyonce":false,"numberstats":3,"abilities":[{"_id":"q0nbzwq47ps63o1u","name":"Mechanical","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"en2015al33cyqvjw","name":"Metal Body","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"uueif8o8ynluuqju","name":"Does Not Breathe","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"e8cvk1io32rplpsy","name":"Master","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"5rllgta2i2lv4hno","name":"Mind [MND] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"mnd","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"d2d8s6hnsaciudqa","name":"Artificial","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":-2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.racial-abilities.HJoEmBzCz8vJhMnO"}}}],"optionnalabilities":[],"nboptionnal":0,"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"BeKcQz9QBJvK9Iha","name":"Cyborg","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","selectablestats":false,"statsonlyonce":false,"numberstats":0,"abilities":[{"_id":"p8vd5jdegkj19jdx","name":"Social [SOC] -1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":-1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"optionnalabilities":[{"_id":"gfce5lt454vgnjlw","name":"Brain CPU","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"7um6jskqnfj2fwwy","name":"Cybernetic Eye","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"x8ss5k0vaizku6fr","name":"Metal Carapace","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"j7tcrl6k5v8fe1sh","name":"Cybernetic Arm","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"kjizvrb2fkawi2pr","name":"Cybernetic Legs","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"nboptionnal":2,"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"hmgQYmqJMH3vUOoa":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.race.s7HiIu1dPtMwN1wV"}}} +{"_id":"EVblQVFh1bK0x3eO","name":"Mutant","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"For Mutants Stat choose the same stat twice. Do not choose seperate statistics.
\nSee Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","selectablestats":true,"statsonlyonce":false,"numberstats":2,"abilities":[{"_id":"ago13jpczjq7sege","name":"Social [SOC] -1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":-1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"zzus00jl76jf6g0z","name":"Stealth [STL] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"stl","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"optionnalabilities":[{"_id":"31ojabpv02hg0m1o","name":"Skin of Scales","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"cbx2bu68yw3x9hqj","name":"Red Eyes","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"lvaps81g2rxskfs1","name":"Extra Arms","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"n9qdwdskgz851tqh","name":"Claws","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"exohbrv7rxqdqmh8","name":"Radioactive Spit","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"t9g8138aqkfs0u2q","name":"Horns or Spikes","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"457npsicyo8kx09y","name":"Tail","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"t711z2qtgccpz33m","name":"Wings","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"nboptionnal":1,"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"KPMZk6NI5tEBuP3k","name":"Elf","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","abilities":[{"_id":"hjthbhjkwq7eol40","name":"Night Vision","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"p8upn9bhu6bsirgs","name":"Agility [AGI] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"agi","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"c0r0lj77msonsmcq","name":"Mind [MND] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"mnd","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"mc5l4vgngsjek763","name":"Stealth [STL] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"stl","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"XHxguHG8vKbRfIdi","name":"Winged Folk","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","abilities":[{"_id":"jco0tsfp1oehw67y","name":"Flight","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"esj43fw8qzwm3tmg","name":"Agility [AGI] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"agi","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"b65a6br0ksg6brxy","name":"Focus [FOC] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"foc","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"9i9yxvj08ku0rebo","name":"Perception [PER] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"per","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"g51DFxS2mVM5ZzrJ","name":"Lionmen","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","abilities":[{"_id":"ce3wld93g64i4jo3","name":"Claws","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yu63rmodhcoop27p","name":"Dark Vision","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Item.vZlHA2YhsYm1tPTB"}}},{"_id":"ry6b1ws8dxb1oa6x","name":"Agility [AGI] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"agi","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"h5ii85s4df5ylmqx","name":"Stealth [STL] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"stl","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"qRoIftbmHnfuOAM8","name":"Dwarf","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","abilities":[{"_id":"a3opduk04svvtov6","name":"Dark Vision","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Item.vZlHA2YhsYm1tPTB"}}},{"_id":"a7tj8lkpejrloqm9","name":"Reduced Move","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"8moxcgrtanc5niyr","name":"Physique [PHY] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"phy","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"kwwv97gfwy9321bd","name":"Combat [COM] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"com","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"0c32d8rpexmbwga7","name":"Strength [STR] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"str","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"wtWCNjGiusU9Vx7b","name":"Wolfen","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","abilities":[{"_id":"4vgnasmrezf6s1pq","name":"Bite","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qondqud35eeoiirf","name":"Fearsome Howl/Growl","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"489uhvhkbrmp8u9j","name":"Perception [PER] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"per","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"tuxhr1s1s1mxypn6","name":"Physique [PHY] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"phy","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"xtdTq1HHdiJxAF7U","name":"Halfling","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","abilities":[{"_id":"8y55etuxicta5xy0","name":"Reduced Move","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"d68f0of5s5esme2u","name":"Small","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_ability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":"cjoCVhK2GZK44vvG","sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"bl0jh0nvgw7o7i5k","name":"Concealment","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_ability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Concealmen
"},"effects":[],"folder":"cjoCVhK2GZK44vvG","sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"zj5nlkcj32glir0d","name":"Stealth [STL] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"stl","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"iz6c71ceb3i72u2k","name":"Social [SOC] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"rp2qen9v46ivsu3k","name":"Perception [PER] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"per","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"z0pUTxUyvn1RWOvO","name":"Human","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","selectablestats":true,"statsonlyonce":false,"numberstats":2,"abilities":[],"optionnalabilities":[],"nboptionnal":0,"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"z0pUTxUyvn1RWOvO","name":"Human","type":"race","img":"systems/fvtt-pegasus-rpg/images/icons/icon_race.webp","data":{"description":"See Pegasus Engine CORE RPG
","environment":"See Pegasus Engine CORE RPG
","society_culture":"See Pegasus Engine CORE RPG
","outlook":"See Pegasus Engine CORE RPG
","selectablestats":true,"statsonlyonce":true,"numberstats":3,"abilities":[],"optionnalabilities":[],"nboptionnal":0,"perksgained":true,"perksall":true,"perksnumber":1,"perks":[],"statistics":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} diff --git a/packs/racial-abilities.db b/packs/racial-abilities.db index a3c6c5a..50c9f29 100644 --- a/packs/racial-abilities.db +++ b/packs/racial-abilities.db @@ -1,4 +1,4 @@ -{"_id":"0bW374Onk2LEUKNO","name":"Metal Body","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"0bW374Onk2LEUKNO","name":"Metal Body","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":2,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"1y6qo5dvemTXe6JF","name":"Perception [PER] +2 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"per","statmodifier":2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"2XbpJr3oIIdXBQDX","name":"Red Eyes","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"3cq8bAvKZVewpPi0","name":"Strength [STR] +3 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"str","statmodifier":3,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} @@ -7,7 +7,7 @@ {"_id":"9pAPPSEEQTaKGIGn","name":"Bite & Tail Combo","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"CCQqre28bBEcxbvT","name":"Artificial","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":-2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.racial-abilities.HJoEmBzCz8vJhMnO"}}} {"_id":"Eme4Yf7vZjRBiXsK","name":"Tough Skin","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"IM1vzlBizepTjvYS","name":"Tail","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"IM1vzlBizepTjvYS","name":"Tail","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":1,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"ITQR244uUDd0oYSu","name":"Social [SOC] -1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":-1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"KOuUDW0BXlVaHo4W","name":"Night Vision","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"L0jGHI3Yx8Gp00G8","name":"Horns or Spikes","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} @@ -40,22 +40,22 @@ {"_id":"fffy2tzOU9B0eB56","name":"Strength [STR] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"str","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"gKvTfvDjrJs8UOx7","name":"Bite","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"h5zbFgislyu171s4","name":"Focus [FOC] +2 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"foc","statmodifier":2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"hprgdfSobvzQhWp9","name":"Cybernetic Arm","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"hprgdfSobvzQhWp9","name":"Cybernetic Arm","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"str","statmodifier":2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"hvhH88QJsfwEOWky","name":"Does Not Breathe","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"i8Se94jUfLCgbyYN","name":"Move Rate (Initiative) [MR] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"mr","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.racial-abilities.xfW887EGz940gkqm"}}} {"_id":"lMYftTO5BNDnsvFN","name":"Physique [PHY] +2 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"phy","statmodifier":2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"nMRz1YLmjFed97rA","name":"Brain CPU","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"nMRz1YLmjFed97rA","name":"Brain CPU","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"mnd","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"nVLbaMi41ArLbp3k","name":"Agility [AGI] +3 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"agi","statmodifier":3,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"neoDM1fyRWDFkS30","name":"Social [SOC] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"oES8AIR6MKXPRCR7","name":"Mechanical","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"pNDVA9jsSI3wdVHj","name":"Physique [PHY] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"phy","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"qLHrMCnPyi7KLz6q","name":"Social [SOC] -2 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"soc","statmodifier":-2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"rOMhQYdYLH4I2ga8","name":"Combat [COM] +3 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"com","statmodifier":3,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"sOkzSAGdJTGjpWtd","name":"Fearsome Howl/Growl","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"t80esMj8pfXDPZAt","name":"Claws","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"uX9B2hwNrFoBbSGJ","name":"Cybernetic Eye","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"sOkzSAGdJTGjpWtd","name":"Fearsome Howl/Growl","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[{"_id":"wqzbo05wuiqmb1dc","name":"Intimidate [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"t80esMj8pfXDPZAt","name":"Claws","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":2,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"uX9B2hwNrFoBbSGJ","name":"Cybernetic Eye","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"per","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"wEBaInNs74V7nab7","name":"Mind [MND] +1 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"mnd","statmodifier":1,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"wsKUMcPNKNfRSYXI","name":"Defence [DEF] +2 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"def","statmodifier":2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"ycMW7FZelfHvCquA","name":"Stealth [STL] +2 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"stl","statmodifier":2,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"yhi3UPzYd0OZcCkD","name":"Stealth [STL] +3 Modifier","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"stl","statmodifier":3,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"Change the Stat Modifier to reflect the Statistic Modifier (+/- 1 etc).
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"yjB1JKOKHK4uEnfZ","name":"Skin of Scales","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":0,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"yjB1JKOKHK4uEnfZ","name":"Skin of Scales","type":"ability","img":"systems/fvtt-pegasus-rpg/images/icons/icon_raceability.webp","data":{"affectedstat":"notapplicable","statmodifier":0,"statlevelincrease":2,"bonusdice":0,"otherdice":0,"statusaffected":"notapplicable","statusmodifier":0,"powersgained":[],"specialisations":[],"aoe":"","description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} diff --git a/packs/role.db b/packs/role.db index aa08b8e..644eff4 100644 --- a/packs/role.db +++ b/packs/role.db @@ -1,6 +1,6 @@ -{"_id":"NWK6f6cW5YPKMEAq","name":"Defender","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/defender.webp","data":{"statincrease1":"def","statincrease2":"phy","messagespecplus1":"","specialisationsplus1":[],"powers1":[],"MR":0,"specialperk":[{"_id":"p32pc622f5mhz263","name":"Defender","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":true,"type":"string","value":"DMG RES"},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"DEFENDERs Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":200000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":false},{"name":"MND","flag":false},{"name":"SOC","flag":false},{"name":"STR","flag":false},{"name":"PHY","flag":false},{"name":"COM","flag":false},{"name":"DEF","flag":false},{"name":"STL","flag":false},{"name":"PER","flag":false},{"name":"FOC","flag":false}],"specincrease":[],"perks":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"QzQgkZs8PrmuOvpq","name":"Scrapper","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/icon_scrapper.webp","data":{"statincrease1":"agi","statincrease2":"agi","messagespecplus1":"","specialisationsplus1":[],"powers1":[],"MR":0,"specialperk":[{"_id":"p51kmrejc1hs7sh9","name":"Scrapper","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":true,"type":"string","value":"COM"},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"SCRAPPERs Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":500000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":false},{"name":"MND","flag":false},{"name":"SOC","flag":false},{"name":"STR","flag":false},{"name":"PHY","flag":false},{"name":"COM","flag":false},{"name":"DEF","flag":false},{"name":"STL","flag":false},{"name":"PER","flag":false},{"name":"FOC","flag":false}],"specincrease":[],"perks":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"Z6b7JC9bZMjud3Zq","name":"Ranged","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/icon_ranged.webp","data":{"statincrease1":"agi","statincrease2":"per","messagespecplus1":"","specialisationsplus1":[],"powers1":[],"MR":0,"specialperk":[{"_id":"rmh53065zb66nk4f","name":"Ranged","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":true,"type":"string","value":"DMG"},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"RANGED Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":400000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":false},{"name":"MND","flag":false},{"name":"SOC","flag":false},{"name":"STR","flag":false},{"name":"PHY","flag":false},{"name":"COM","flag":false},{"name":"DEF","flag":false},{"name":"STL","flag":false},{"name":"PER","flag":false},{"name":"FOC","flag":false}],"specincrease":[],"perks":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"rjpoLFtj5mjkKJxb","name":"Enhancer","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/enhancer.webp","data":{"statincrease1":"mnd","statincrease2":"soc","messagespecplus1":"","specialisationsplus1":[],"powers1":[],"MR":0,"specialperk":[{"_id":"9gspzij0ng7ujjrg","name":"Enhancer","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":true,"type":"range","value":"close"},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"ENHANCERs Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":300000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":false},{"name":"MND","flag":false},{"name":"SOC","flag":false},{"name":"STR","flag":false},{"name":"PHY","flag":false},{"name":"COM","flag":false},{"name":"DEF","flag":false},{"name":"STL","flag":false},{"name":"PER","flag":false},{"name":"FOC","flag":false}],"specincrease":[],"perks":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"name":"Agitator","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/agitator.webp","data":{"statincrease1":"soc","statincrease2":"phy","messagespecplus1":"","specialisationsplus1":[{"_id":"z0i93xfzabdivg8i","name":"Fast Talk [SOC]","type":"specialisation","img":"icons/svg/item-bag.svg","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":900000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3,"hmgQYmqJMH3vUOoa":3},"flags":{"core":{"sourceId":"Item.r4UBikkWrryeN0DR"}}}],"powers1":[],"MR":0,"specialperk":[{"_id":"4ttvnrrvjll3dlv5","name":"Agitator","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":true,"type":"range","value":"close"},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":true,"type":"string","value":"1"},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"AGITATORs ONLY
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":100000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":false},{"name":"MND","flag":false},{"name":"SOC","flag":true},{"name":"STR","flag":false},{"name":"PHY","flag":true},{"name":"COM","flag":true},{"name":"DEF","flag":false},{"name":"STL","flag":false},{"name":"PER","flag":false},{"name":"FOC","flag":false}],"specincrease":[{"_id":"l3q6izjvvqhse4zu","name":"Fast Talk [SOC]","type":"specialisation","img":"icons/svg/item-bag.svg","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":900000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3,"hmgQYmqJMH3vUOoa":3},"flags":{"core":{"sourceId":"Item.r4UBikkWrryeN0DR"}}},{"_id":"ml5cegn74bgu0wgu","name":"Spec Fly","type":"specialisation","img":"icons/svg/item-bag.svg","data":{"statistic":"phy","level":5,"ispowergroup":true,"powersource":"","powers":[{"_id":"s1cs5seavxfwz6ov","name":"Power1","type":"power","img":"icons/svg/item-bag.svg","data":{"rollneeded":true,"statistic":"str","cost":2,"costtype":"once","range":null,"action":"soft","type":"permanent","effects":"","purchasedeffects":""},"effects":[],"folder":null,"sort":800000,"permission":{"default":0,"hmgQYmqJMH3vUOoa":3},"flags":{}}],"description":"","specialties":"","MR":0},"effects":[],"folder":null,"sort":1000000,"permission":{"default":0,"hmgQYmqJMH3vUOoa":3},"flags":{}}],"perks":[{"_id":"n20yy4d7h28454lx","name":"Perk02","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":true,"type":"dropspec","value":"Fast Talk [SOC]"},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"statdice","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":true,"type":"dropspec","value":"Spec Fly"},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"hmgQYmqJMH3vUOoa":3},"flags":{}}],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"hmgQYmqJMH3vUOoa":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.role.tlC8scOhR2qP8GiW"}},"_id":"xUyNSZJP8eOQLLoq"} -{"_id":"zczNQ3zUrGMVDgji","name":"Tactician","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/tactician.webp","data":{"statincrease1":"mnd","statincrease2":"com","messagespecplus1":"","specialisationsplus1":[],"powers1":[],"MR":0,"specialperk":[{"_id":"bvokhcp625o0pbog","name":"Tactician","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":"notapplicable"},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":true,"type":"string","value":"MR"},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"TACTICIANs Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":600000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":false},{"name":"MND","flag":false},{"name":"SOC","flag":false},{"name":"STR","flag":false},{"name":"PHY","flag":false},{"name":"COM","flag":false},{"name":"DEF","flag":false},{"name":"STL","flag":false},{"name":"PER","flag":false},{"name":"FOC","flag":false}],"specincrease":[],"perks":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"2hOSVvQOHQg9Uu5U","name":"Scrapper","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/icon_scrapper.webp","data":{"statincrease1":"str","statincrease2":"com","messagespecplus1":"","specialisationsplus1":[{"_id":"c6u0pjrtbrjjrwed","name":"Climb [STR]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"str","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"h5zy9rm1dzqawm5u","name":"Jumping [STR]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"str","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"o1trq54hxbnjesxy","name":"Melee (Weapon Type) [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nThis Specialisation is taken for each type of Weapon.
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"fbfzq0eu0fh3cx6x","name":"Rowing [STR]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"str","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ob84plox6nc1vogo","name":"Swim [STR]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"str","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"3bdc123tub6mzts7","name":"Wrestling [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"gbnswdwgzvdsytlo","name":"Martial Arts [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"powers1":[],"MR":0,"specialperk":[{"_id":"p51kmrejc1hs7sh9","name":"Scrapper","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":true,"type":"string","value":"COM"},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"SCRAPPERs Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":500000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":false},{"name":"MND","flag":true},{"name":"SOC","flag":false},{"name":"STR","flag":true},{"name":"PHY","flag":true},{"name":"COM","flag":true},{"name":"DEF","flag":false},{"name":"STL","flag":true},{"name":"PER","flag":false},{"name":"FOC","flag":false}],"specincrease":[{"_id":"4f1dsz85p0vh2f19","name":"Arcane Lore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"6evzcsdyax3ian9b","name":"Astrogation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"s3sduaivpmcb7msl","name":"Climb [STR]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"str","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"m09hhmpt87n31bkr","name":"Computer Operation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ogzvlx5rgnidtygo","name":"Disguise [STL]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"stl","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"quxfi1oitxq8ikbw","name":"Electronics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"hxeob1nahjx4lxb1","name":"Enchantment [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"2ddowmcf9io6wkfh","name":"Endurance [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"lbrt0mbj5n8s64jv","name":"Engineering [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"e2r1dngdhpzeofi2","name":"First Aid [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"vlivunjc1j84s9ss","name":"Hacking [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"k1rehju61vtx6v8k","name":"Hide [STL]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"stl","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yei1fvkoc622qbsl","name":"Intimidate [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"fix7b3gv2dgg5oqh","name":"Jumping [STR]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"str","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"d648a5cvzo06763i","name":"Lore (TYPE) [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nCreate a Different Lore for each Lore Specialisations
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"s0f2cst5l6px4ain","name":"Martial Arts [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"wugylsxln3114pog","name":"Mechanics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"rz99d8s7nsssql1g","name":"Melee (Weapon Type) [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nThis Specialisation is taken for each type of Weapon.
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ttpptwatj6fq82s6","name":"Mentalism [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"l0ggxj9r4s7frg7u","name":"Robotics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qud9e4tvdhbm9xst","name":"Rowing [STR]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"str","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"dlxkljr01kjuhcr2","name":"Sailing [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"10yw6sa6nbgoeniy","name":"Sneak [STL]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"stl","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"cw8pfq0qo5oqf916","name":"Stamina [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"rki4ecu2jbrcz241","name":"Survival [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"6ng68q7uqzx9a69l","name":"Swim [STR]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"str","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"76vb9rdam5ayopzz","name":"Technomancy [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"m525jynhn1e83wdh","name":"Wrestling [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"q1f1uhru8j64qn1m","name":"Illusionist [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
","MR":0},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"perks":[{"_id":"nwgxmyks3axcepwb","name":"Battering Ram","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"rzq5ix0g5jays6lx","name":"Counterattack","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ku88k4qywjb03r15","name":"Dual Weapon Fighting","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"zyxtvo1vskvah7ai","name":"Martial Artist","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"5xn6wctemum9a1cm","name":"Mighty Blow","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"woolhsg3jv1ijmno","name":"Onslaught","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"huhdgggdi7plsjjz","name":"Rapid Strike","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"27sl7z7r5jjcl1ss","name":"Sneak Attack","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"inxac2ozz9bm7jcr","name":"Stunning Blow","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qlpefmdx3lz2cjkw","name":"Sweeping Strike","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"f9wi8nzqa7t8z12i","name":"Weaver","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.role.QzQgkZs8PrmuOvpq"}}} +{"_id":"7AfOffQxOTlbnCx6","name":"Tactician","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/tactician.webp","data":{"statincrease1":"mnd","statincrease2":"com","messagespecplus1":"","specialisationsplus1":[{"_id":"urtwnl0l44l4yeyr","name":"Arcane Lore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"axvzwdcy9uff971d","name":"Astrogation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"iwqrzrr3t0jczrsp","name":"Battlelore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"7e20vzc27v97j7g2","name":"Computer Operation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1nte8pb7lapotk5u","name":"Electronics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"2m9fineygkn03rm8","name":"Enchantment [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"bwd206n81gkk713h","name":"Engineering [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"8r6rhxnm3vfzv6f0","name":"First Aid [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"pwju8bt7hyvp4aqi","name":"Hacking [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"8tlsc0gnufkk12j2","name":"Illusion [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"rcrbxu0rdfbaziyr","name":"Lore (TYPE) [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nCreate a Different Lore for each Lore Specialisations
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"tak4y9rhvc1av0f0","name":"Martial Arts [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"o7tfg9q5floxxvym","name":"Mechanics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"6wsvikcr67ha4ja7","name":"Melee (Weapon Type) [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nThis Specialisation is taken for each type of Weapon.
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ws9w5j7a46fmkooz","name":"Mentalism [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"4aq3xqbh9zmk1wfy","name":"Robotics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ceyjhmssttkxpgaz","name":"Sailing [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"455w64fa4uenntcz","name":"Survival [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"pnjidbnzt1jhxedo","name":"Technomancy [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"e1hhm6uibhjsjtqk","name":"Wrestling [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"powers1":[],"MR":0,"specialperk":[{"_id":"bvokhcp625o0pbog","name":"Tactician","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":"notapplicable"},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":true,"type":"string","value":"MR"},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"TACTICIANs Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":600000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":false},{"name":"MND","flag":true},{"name":"SOC","flag":false},{"name":"STR","flag":false},{"name":"PHY","flag":false},{"name":"COM","flag":true},{"name":"DEF","flag":true},{"name":"STL","flag":true},{"name":"PER","flag":true},{"name":"FOC","flag":false}],"specincrease":[{"_id":"q3985fv97qgwraui","name":"Arcane Lore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"w47l3fw96qst3b5j","name":"Astrogation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"hqhlka5zsklaa3we","name":"Battlelore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ruwj5sunhccmw2fs","name":"Block [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1egnujcedadzvqv8","name":"Computer Operation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"0xjxu1l2c6gku8u2","name":"Disguise [STL]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"stl","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qbm8ucygqlqrsus3","name":"Dodge [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"61nhsazt84e20t65","name":"Electronics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"6el5v3mmerhd9t9x","name":"Enchantment [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"djyqhjo34m92149i","name":"Engineering [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ykzyn67cljrnx7ly","name":"Espionage [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qr2xobo3e6gupd92","name":"First Aid [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"vhwsezetuplp7n8t","name":"Hacking [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"blkt05dmu4k0vvir","name":"Hide [STL]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"stl","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"0lqxao8msa7h562h","name":"Investigate [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"2idkjmg9btovcbu3","name":"Listen [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"c56dcqjoj48in6ti","name":"Lore (TYPE) [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nCreate a Different Lore for each Lore Specialisations
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"vz7veojpupluin8v","name":"Martial Arts [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"78car7k3nhinshpt","name":"Mechanics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"xz1785yusvl3i9v1","name":"Melee (Weapon Type) [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nThis Specialisation is taken for each type of Weapon.
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qr8bnf1b28fawc4h","name":"Mentalism [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"bc6ye8ggu7da4wyi","name":"Navigation [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"zeul9x17fu8budz1","name":"Parry [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"4v4k3j4dcs4pul90","name":"Robotics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"tvamn225ejrcp2kk","name":"Sailing [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"6v7aaid5rlusxamf","name":"Smell [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"i76gshw2r2jgo1jh","name":"Sneak [STL]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"stl","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"mbc4ks2d1vpw5o9s","name":"Spot [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ytfwi2lj8rdkyjfm","name":"Survival [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yyv91knfahdt4pzh","name":"Taste [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"10bxcef5o8xgcovn","name":"Technomancy [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"03cys97t4jy7n2i8","name":"Track [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"v41zpmcmrfd4objv","name":"Wrestling [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"perks":[{"_id":"53oymyz2pyq6kzxh","name":"Co-ordinate","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"sdfrtfslvt9thpmw","name":"Command","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"amyc4p3dabdn72vs","name":"Dead Calm","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"lj6xgltr0m9sn77d","name":"Focused","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"m807ju96xxsa55i6","name":"Insight","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"u8o7y0j7a68rhqq0","name":"Leadership","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"eqhmq8teno5emee8","name":"Press the Advantage","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"n2qn3l3pgvsi7ajv","name":"Ritual Magic","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"z3o6pu2lmo9xbajl","name":"Spy","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"iabtqtp8dkhmv0mp","name":"Quick Thinking","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"2toe9kzwg267jy87","name":"Weaver","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"05y0wynqbgnwatle","name":"Wild Attack","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.role.zczNQ3zUrGMVDgji"}}} +{"_id":"Ge5Peas1DL0aCmuI","name":"Defender","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/defender.webp","data":{"statincrease1":"def","statincrease2":"phy","messagespecplus1":"","specialisationsplus1":[{"_id":"sbdz406bx3loxhwx","name":"Block [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"c720tfb09qtfu24z","name":"Dodge [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"y1tosdqrt60mqkqq","name":"Endurance [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"w098wj262hbw1n2i","name":"Intimidate [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"dcs0fveigvlmquwy","name":"Parry [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qsqmfsg2k2imr9vw","name":"Stamina [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"powers1":[],"MR":0,"specialperk":[{"_id":"p32pc622f5mhz263","name":"Defender","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":true,"type":"string","value":"DMG RES"},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"DEFENDERs Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":200000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":false},{"name":"MND","flag":false},{"name":"SOC","flag":true},{"name":"STR","flag":false},{"name":"PHY","flag":true},{"name":"COM","flag":true},{"name":"DEF","flag":true},{"name":"STL","flag":false},{"name":"PER","flag":false},{"name":"FOC","flag":true}],"specincrease":[{"_id":"o73vnvbt56hr9nqv","name":"Abjuration [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"xa21te17n3jmywgq","name":"Aeromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"7wfcwzvkbl9scp5j","name":"Arcane Staff [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"kj43i3td8ztj70ch","name":"Block [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"cnfi5zk6t9ggpgpe","name":"Calm [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"djwt1xgglqy8dc65","name":"Chronomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"2hnwy0cfz11ny8m9","name":"Cryomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"03vvtqhkslxxkisg","name":"Diplomacy [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"91g3g0dt8qjc7551","name":"Distract [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"v17dt3tf2tv8d3kw","name":"Divination [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"hn6154cr1mj4njo0","name":"Dodge [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ewclax88spksbpdk","name":"Electromancer [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"0un4vt8q7aurmb9p","name":"Endurance [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"63mncgj11zk5s64w","name":"Fast Talk [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"czbsibwh9i5shnuo","name":"Geomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"wsvlg6ina2ppemhx","name":"Hydromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"e2gym8ndx7vfizp9","name":"Inspire [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"lpqh73yhb4joid08","name":"Intimidate [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"3ozcbf57wgt94ye9","name":"Martial Arts [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"hkp5x4qp36bdk7za","name":"Melee (Weapon Type) [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nThis Specialisation is taken for each type of Weapon.
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qgx7vz9ul5buzf2d","name":"Necromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yxmp8e3a2uarzpf4","name":"Parry [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"o9oh5d0tax8cvmyp","name":"Pyromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"x4jkf3826fij4k7i","name":"Stamina [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"mbvfubrfxzim96fc","name":"Summoning [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"orenhx5z9qaa0t1y","name":"Taunt [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"cfx9dthb6yf4ndki","name":"Theomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"nckwz4no3rla8krl","name":"Transmute [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"rs86b3ppyn4vy42i","name":"Wand Parry [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"p13imlnjailv245u","name":"Wrestling [COM]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"com","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"perks":[{"_id":"wdsfrz8387mcsqzd","name":"Adrenaline Surge","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ube2strc1qkv6b4z","name":"Battle Rage","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Item.WCD7hpK0TR0VDfqY"}}},{"_id":"4b3jxez85l3hojy7","name":"Call to Aid","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"bc6ca6vnigczwats","name":"Counterattack","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"a6zxwlozdrhtwxpx","name":"Energy Shield","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"sbev66josiq4obc8","name":"Flesh Wound","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"60quozmpxxxhfxxg","name":"Pre-Emptive Strike","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"iwd4gyruviyu72pe","name":"Shield Bash","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"jwm7hvcbzlp60xy6","name":"Shield Wall","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"05gtirumhtuhzoz9","name":"Take the Pain","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ihhb92q9udgbdge0","name":"Taunter","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"y4tr7qwmzj9zlxnx","name":"Weaver","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.role.NWK6f6cW5YPKMEAq"}}} +{"_id":"s6KtHMzz1rK3lSuP","name":"Ranged","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/icon_ranged.webp","data":{"statincrease1":"agi","statincrease2":"per","messagespecplus1":"","specialisationsplus1":[{"_id":"hdehdlxn3zmzmhho","name":"Acrobatics [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"sgvm5iwietac8jui","name":"Driving [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"y5tytdzy6vnke5q0","name":"Espionage [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"bxav4gnmgbtaffji","name":"Investigate [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"06weplj6whtdcqoh","name":"Listen [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yh4dbhh5mgoxe5x3","name":"Lockpick [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"rekjvayuo9h1akxx","name":"Navigation [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ebw1tskba9to4nfa","name":"Piloting [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"nzj7bvvot7yw7ou5","name":"Riding [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"f54ev61b2ho6h6we","name":"Smell [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"kgzb8c86rkof2yxf","name":"Spot [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qtuoo0h5asjtt6bw","name":"Taste [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"7t7n4kf14vfjrlrn","name":"Thrown [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"n3yg4asqc80pl81g","name":"Track [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"fb92xwlrwjj719jo","name":"Wand Blast [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"powers1":[],"MR":0,"specialperk":[{"_id":"rmh53065zb66nk4f","name":"Ranged","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":true,"type":"string","value":"DMG"},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"RANGED Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":400000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":true},{"name":"MND","flag":false},{"name":"SOC","flag":false},{"name":"STR","flag":false},{"name":"PHY","flag":false},{"name":"COM","flag":false},{"name":"DEF","flag":true},{"name":"STL","flag":true},{"name":"PER","flag":true},{"name":"FOC","flag":true}],"specincrease":[{"_id":"7gdkz8t4d45zft1o","name":"Abjuration [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ftrds37avr5pw8tj","name":"Acrobatics [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"zuc6kegfhxphp7vo","name":"Aeromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"0sxjbj86t5wlesmr","name":"Arcane Staff [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"kpczxq06bfldd6am","name":"Block [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ejc37sej5vkht822","name":"Chronomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qrbk01k8oea7rfyh","name":"Cryomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"mjcuboffr5xgbiti","name":"Disguise [STL]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"stl","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"x1hovgjxza8t4vs7","name":"Divination [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"piruidgbjra2tqe6","name":"Dodge [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yz00zjlkqmy13rri","name":"Driving [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ctez5pcdceq6otbi","name":"Electromancer [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"wq34mfiu5qim5ep1","name":"Espionage [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"m8v945rjvdlc90mw","name":"Geomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yol236qfg77h6hf5","name":"Hide [STL]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"stl","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"64s4i4l9iuemnxn8","name":"Hydromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"2p1n98xokwhnr6x6","name":"Investigate [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"a9tkg2h56d7p93d0","name":"Listen [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"cufla08lo2n3ttke","name":"Lockpick [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"vckwaxpedeghiby7","name":"Navigation [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"urfmnmj76e133z3l","name":"Necromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"itmy6vtd9fhfw02a","name":"Parry [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"z259bok3wfikk72l","name":"Piloting [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"6lpdwxjb2xx07l8u","name":"Pyromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"u37pre0zwclqc1l2","name":"Riding [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qhzunb66rmoeed3z","name":"Smell [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yrgax3mp0vcv8k8n","name":"Sneak [STL]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"stl","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"8vly774h3gvwdy17","name":"Spot [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"70o8iv9ltt2m0gdt","name":"Summoning [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"17o0cwvw6rymof7y","name":"Taste [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"r4nuhc9le3o16378","name":"Thrown [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"w7ogujnu4382lk5t","name":"Track [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"0agv3djn5vk6xxou","name":"Transmute [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yh9ilgwwdd3b7693","name":"Wand Blast [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"kkiewxt0dvz7g25t","name":"Wand Parry [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"perks":[{"_id":"270rl6q79ohm1ay2","name":"Aim Perk","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"dqvzdrcty9lojx8x","name":"Ambush Shot","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"4568tcmank5kt0a2","name":"Barrage","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"hxlao1hey2hdoppa","name":"Double Shot","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"icyeucr6gq9phskt","name":"Perfect Shot","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"7rz38wnwpwabm1un","name":"Pinpoint Accuracy","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"6ra7vr124co103g1","name":"Power Fury","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"667jfkbd8q5836qu","name":"Weaver","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.role.Z6b7JC9bZMjud3Zq"}}} +{"_id":"yYFGfwzPAlAp0Phx","name":"Agitator","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/agitator.webp","data":{"statincrease1":"soc","statincrease2":"phy","messagespecplus1":"","specialisationsplus1":[{"_id":"d1bos341pmd75gqj","name":"Calm [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"df79y5favbv7ohr1","name":"Diplomacy [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"3vhcdgh8iqhdz4qp","name":"Distract [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"tlwleawo7sncmk58","name":"Endurance [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"2f4i2notqmr8v128","name":"Fast Talk [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1zixkusxfnsc9wra","name":"Intimidate [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"9kxc0e512wnyqwn2","name":"Stamina [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"wuq1w3jghjp6hh5b","name":"Taunt [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"powers1":[],"MR":0,"specialperk":[{"_id":"4ttvnrrvjll3dlv5","name":"Agitator","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":true,"type":"range","value":"close"},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":true,"type":"string","value":"1"},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"AGITATORs ONLY
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":100000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":true},{"name":"MND","flag":true},{"name":"SOC","flag":true},{"name":"STR","flag":false},{"name":"PHY","flag":true},{"name":"COM","flag":false},{"name":"DEF","flag":false},{"name":"STL","flag":false},{"name":"PER","flag":false},{"name":"FOC","flag":true}],"specincrease":[{"_id":"e1a44999ukf0lljt","name":"Abjuration [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"fdiopb3un5h7xcq6","name":"Acrobatics [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"69eokvpooctrqsr6","name":"Aeromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"jx5jrv9g38spl5gg","name":"Arcane Lore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"h4b0bmtic3i2x9jm","name":"Arcane Staff [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"4d333th8sr1izzb6","name":"Astrogation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ts4evqdainsp44up","name":"Battlelore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"kv5ajlk7pvk4rwmj","name":"Calm [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"e1y0irr7pkas9sv9","name":"Chronomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"flszo8dpyhduj683","name":"Computer Operation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"m84a6tfdbxr07kbb","name":"Cryomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"vj6c7v9u7h9g134u","name":"Diplomacy [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"423r4leyntm1nm38","name":"Distract [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"gydg35cfbse2tdg9","name":"Divination [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"4mhop9hc7rw1zeip","name":"Driving [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"efvtdvfhqbs84ofh","name":"Electromancer [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"4mxvbl3x7mhxxns4","name":"Electronics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"3t6lvsxz29jbg4tr","name":"Enchantment [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"f1wb4shh14yhqr1w","name":"Endurance [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"lc0g174f2n906nt0","name":"Engineering [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1lri6ciwb3zsz5ft","name":"Fast Talk [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"t660o0ihx4d3xrif","name":"First Aid [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1pbt0p2ydl38tsr6","name":"Geomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"0qk82ifiq2pgbu7b","name":"Hacking [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"8haqr7llnig95ajn","name":"Hydromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"kfmt5j3ypj93h3bw","name":"Inspire [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"rabzka45pkvstlv3","name":"Intimidate [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"x3djtcdexcrxwyck","name":"Lockpick [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"9sb824k6nou727np","name":"Lore (TYPE) [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nCreate a Different Lore for each Lore Specialisations
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"lwlc5o2yrje44efy","name":"Mechanics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"zxdt10d7m3j1uxip","name":"Mentalism [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ny0gj1r6j3gztbm6","name":"Necromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1uq0m8u222psljf9","name":"Piloting [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"fiu2e9xpovpgja53","name":"Pyromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"e1cpkzbgjbdellhy","name":"Riding [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"e8opa7z8wiclv0li","name":"Robotics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"urciegzo1h4a3q5s","name":"Sailing [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"8mv0gndngbwfb4vy","name":"Stamina [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"422ve0o65oqjceoc","name":"Summoning [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"gdihonf0shmtl02z","name":"Survival [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"x9t2t7mw9qsw2hll","name":"Taunt [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"7q6fn16pxfnxxreh","name":"Technomancy [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"z2okcinqoditjnp6","name":"Theomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"wxzzq6uyiyr4tizd","name":"Thrown [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"xj8wa5xs2k6e31kd","name":"Transmute [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"i9ngk6a56p1yrzds","name":"Wand Blast [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ek5ay0uvv3qjuw8k","name":"Wand Parry [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"842pmiyyhf8ecozo","name":"Illusionist [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
","MR":0},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"perks":[{"_id":"7xkzxvckamhlkq6v","name":"Area Distraction","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"d3lfjhh4l6i5i2wb","name":"Counter Effect","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ld4dtzlrr1f9al72","name":"Irritating as Hell","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"a9k5pvs6fnu7mlif","name":"Negative Cantrip","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qkgpfxcg329m1y3c","name":"Painful Sounds","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"zn08zatow6dfp6vr","name":"Stunning Distraction","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"tssve99mgwe1nd3g","name":"Thrown Distraction","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"3rvzrkkqc1aqpknw","name":"Trip","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"p9z85o5m37f8xuow","name":"Weaver","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.role.tlC8scOhR2qP8GiW"}}} +{"_id":"zPWBUC5TmK8Aej6K","name":"Enhancer","type":"role","img":"systems/fvtt-pegasus-rpg/images/icons/enhancer.webp","data":{"statincrease1":"mnd","statincrease2":"soc","messagespecplus1":"","specialisationsplus1":[{"_id":"vwv543yebb1zl51z","name":"Arcane Lore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"jbpv8bbu61dbkqpb","name":"Astrogation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1nrcprqouhrftdu8","name":"Battlelore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"volyw7swvd8rou2o","name":"Calm [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"wylgx8qg7r8i294c","name":"Diplomacy [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"g17ixwfimgugow6u","name":"Distract [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"j0bvenleai6xinvm","name":"Electronics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1euyovd5a18md849","name":"Enchantment [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"5ye5yxrs0pcbi220","name":"Engineering [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"zlpl7p3x5ne5jsvr","name":"Fast Talk [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"e7wlezaa86d07d20","name":"First Aid [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"sed45kc6l7m5k8oa","name":"Hacking [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"364wfhynagvobve0","name":"Illusion [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1ixxne24s8jbl8a9","name":"Inspire [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"mwltcftafymem8wq","name":"Lore (TYPE) [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nCreate a Different Lore for each Lore Specialisations
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1w3u3ydqseig2orn","name":"Mechanics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"mr7w0xap23mqbv6v","name":"Mentalism [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"f1gm5i6kk8sesf1h","name":"Robotics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"xaggvn28rxrdx8j3","name":"Sailing [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"nu34sn6lhfqoeufg","name":"Survival [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"5phblrv9a9vx5ouc","name":"Taunt [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"jftxf571iuxevxlq","name":"Technomancy [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"powers1":[],"MR":0,"specialperk":[{"_id":"9gspzij0ng7ujjrg","name":"Enhancer","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":true,"type":"range","value":"close"},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":true,"type":"string","value":"1"},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"ENHANCERs Only
\nSee Pegasus Engine CORE RPG
"},"effects":[],"folder":"WlYWEUbL9pkp4A8B","sort":300000,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"statincreasechoice":[{"name":"AGI","flag":true},{"name":"MND","flag":true},{"name":"SOC","flag":true},{"name":"STR","flag":false},{"name":"PHY","flag":false},{"name":"COM","flag":false},{"name":"DEF","flag":true},{"name":"STL","flag":false},{"name":"PER","flag":false},{"name":"FOC","flag":true}],"specincrease":[{"_id":"ls8yygjwvtp8ek44","name":"Abjuration [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"b66l2go1caca8vef","name":"Acrobatics [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"3uejj501mkkivd27","name":"Aeromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"1b1joh0p497cq1z4","name":"Arcane Lore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"wzdxdrc6zfhgpyv9","name":"Arcane Staff [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qh7aqy8in3b05ckc","name":"Astrogation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"xly61fdw4ylxzlkt","name":"Battlelore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"5xsyd4ul4jgxm6ms","name":"Block [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"b5yya3b75zu6udp9","name":"Calm [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"natbhmgic5wcj0ww","name":"Chronomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"9dsqtnm5knwg0e2r","name":"Computer Operation [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"qw0v0c37glbmak2v","name":"Cryomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"4f9k1v9ilsbuatp5","name":"Diplomacy [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"st00fke8fzj3yyn7","name":"Distract [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"m21oqnja8rrirzcp","name":"Divination [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"hfj2crytlfqfalfz","name":"Dodge [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"8p779tt4ov2ezvhq","name":"Driving [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"uh4bej5v47wmgm7l","name":"Electromancer [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"p5zyfnmqt2qu8tz0","name":"Electronics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ot9g95nsqmbco47s","name":"Enchantment [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"vwza89o7dlpm83wa","name":"Engineering [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"pweab5vft1ctpm8a","name":"Fast Talk [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"ulaetxmguoq747mi","name":"First Aid [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"hzv4f9jh80tx2o49","name":"Geomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"j3pmnv6q9zpqyitl","name":"Hacking [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"o501kdfd5u9amdk5","name":"Hydromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"caysn5cbirmh1ymm","name":"Inspire [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"70lj02onkbrtvyps","name":"Lockpick [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"l1ytmp3ws2d5mt34","name":"Lore (TYPE) [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
\nCreate a Different Lore for each Lore Specialisations
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"d14znsiwmtecvqhm","name":"Mechanics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"3xdcizc7dlrhnxxb","name":"Mentalism [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"yfkjf3wdqinnze72","name":"Necromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"3v1pwjohbm4fk62d","name":"Parry [DEF]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"def","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"hq7ght61hhuij439","name":"Piloting [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"b235mwlpb5gzpilw","name":"Pyromancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"cdp7vkhembimorjq","name":"Riding [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"aa960w6ko7vtu5h5","name":"Robotics [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"aee6z9ztzae5or28","name":"Sailing [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"u04xixzff7n1zt1s","name":"Summoning [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"7yqwt35jl3d77oy4","name":"Survival [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"o4yqyue4tti9vyre","name":"Taunt [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"xuu3s0oo86cjglce","name":"Technomancy [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"gck1vt92b8kqemm2","name":"Theomancy [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"0tfb642xicq4mnpq","name":"Thrown [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"tnh5x0o9tcln0yt6","name":"Transmute [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"jeulvooeayfkclwd","name":"Wand Blast [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"5ohpr23sordznsde","name":"Wand Parry [FOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"foc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"862likn5fiigx8sd","name":"Illusionist [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
","MR":0},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"perks":[{"_id":"f30m7m9lh4vjqzu8","name":"A Tale of Heroes","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"jftku1bfg6bv5oxd","name":"Battle Healer","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"bhjv3sa4b1cdss04","name":"Bonds of Brotherhood","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"gt0rh3zby358q8of","name":"Courage","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"bjz3fy5q78sb2wiq","name":"Hold The Line","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"9257enna84fdvn2m","name":"Inspire by Example","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"2hb4l39kj557nrpj","name":"Look at me!","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"nuiimjaci2hawz42","name":"Predictable","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"m7kutvjdz0ss3cmj","name":"Therapist","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}},{"_id":"s9q4cq0pwqrquqz9","name":"Weaver","type":"perk","img":"systems/fvtt-pegasus-rpg/images/icons/icon_perk.webp","data":{"level":1,"active":false,"duration":"","features":{"nrgcost":{"label":"NRG cost to use","flag":false,"type":"number","value":0},"range":{"label":"Range","flag":false,"type":"range","value":""},"nbtargets":{"label":"# Targets","flag":false,"type":"string","value":""},"gainstatdice":{"label":"Gain Stat Dice Level to Pool","flag":false,"type":"string","value":""},"gainspecdice":{"label":"Gain Specialisation Dice Level","flag":false,"type":"dropspec","value":""},"gainbonusdice":{"label":"Gain Bonus Dice Level to Pool","flag":false,"type":"string","value":""},"gainotherdice":{"label":"Gain Other Dice Level","flag":false,"type":"string","value":""},"targethindrance":{"label":"Apply Hindrance Level to Target","flag":false,"type":"string","value":""},"sufferindrance":{"label":"Perk User suffers Hindrance","flag":false,"type":"string","value":""},"affectedstat":{"label":"Affected Stat","flag":false,"type":"string","value":""},"affectedspec":{"label":"Affected Specialisation","flag":false,"type":"dropspec","value":""},"affectspecial":{"label":"Affects Special","flag":false,"type":"string","value":""},"bonushealth":{"label":"Bonus to Health","flag":false,"type":"string","value":""},"bonusnrg":{"label":"Bonus to NRG","flag":false,"type":"string","value":""},"bonusdelirium":{"label":"Bonus to Delirium","flag":false,"type":"string","value":""},"gainmomentum":{"label":"Gain Momentum","flag":false,"type":"string","value":""},"applyeffect":{"label":"Apply Effect","flag":false,"type":"string","value":""},"removeeffect":{"label":"Remove Effect","flag":false,"type":"string","value":""},"specialrule":{"label":"Special Rule","flag":false,"type":"text","value":""},"upgrade1":{"label":"Upgrade 1","flag":false,"type":"string","value":""},"upgrade2":{"label":"Upgrade 2","flag":false,"type":"string","value":""}},"roundcount":0,"nbuse":null,"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}}],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{"core":{"sourceId":"Compendium.fvtt-pegasus-rpg.role.rjpoLFtj5mjkKJxb"}}} diff --git a/packs/specialisations.db b/packs/specialisations.db index 51049cb..31ae9db 100644 --- a/packs/specialisations.db +++ b/packs/specialisations.db @@ -44,7 +44,7 @@ {"_id":"dj3C9tFq5PKJ9t9x","name":"Endurance [PHY]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"phy","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"e13r56dJ1LYnUHve","name":"Initiative [MR] *requires MR*","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"enBLBr5wOfUF4Nb0","name":"Driving [AGI]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"agi","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} -{"_id":"fnvq4eGEhS2ziGUa","name":"Illusion [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} +{"_id":"fnvq4eGEhS2ziGUa","name":"Illusionist [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":true,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
","MR":0},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"h65ID9PFleXY2iXJ","name":"Track [PER]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"per","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"h8QppkFNsguuRupJ","name":"Taunt [SOC]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"soc","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} {"_id":"id44rFWhRLazyAwl","name":"Arcane Lore [MND]","type":"specialisation","img":"systems/fvtt-pegasus-rpg/images/icons/icon_spec.webp","data":{"statistic":"mnd","level":1,"ispowergroup":false,"powersource":"","powers":[],"description":"See Pegasus Engine CORE RPG
"},"effects":[],"folder":null,"sort":0,"permission":{"default":0,"iNL4aGohJ8v6YrUk":3},"flags":{}} diff --git a/styles/simple.css b/styles/simple.css index 595237e..0f14140 100644 --- a/styles/simple.css +++ b/styles/simple.css @@ -1160,6 +1160,9 @@ ul, li { .ul-level1 { padding-left: 2rem; } +.drop-ability-weapon, +.drop-ability-armor, +.drop-race-perk, .drop-spec-perk, .drop-ability-power, .drop-ability-spec, diff --git a/system.json b/system.json index 8ce2c65..5dbd9ad 100644 --- a/system.json +++ b/system.json @@ -100,9 +100,9 @@ "styles": [ "styles/simple.css" ], - "templateVersion": 34, + "templateVersion": 36, "title": "Pegasus RPG", "url": "https://www.uberwald.me/data/files/fvtt-pegasus-rpg", - "version": "0.0.34", + "version": "0.0.36", "background" : "./images/ui/pegasus_welcome_page.webp" } \ No newline at end of file diff --git a/template.json b/template.json index fa955c9..9d4a3a9 100644 --- a/template.json +++ b/template.json @@ -153,6 +153,10 @@ "abilities": [], "optionnalabilities": [], "nboptionnal": 0, + "perksgained": false, + "perksall": false, + "perksnumber": 0, + "perks": [], "statistics": "" }, "role": { @@ -163,9 +167,6 @@ "powers1": [], "MR": 0, "specialperk": [], - "statincreasechoice": [ { "name":"AGI", "flag":false }, {"name":"MND", "flag":false }, {"name":"SOC", "flag":false }, {"name":"STR", "flag":false }, - {"name":"PHY", "flag":false }, {"name":"COM", "flag":false }, {"name":"DEF", "flag":false }, {"name":"STL", "flag":false }, - {"name":"PER", "flag":false }, {"name":"FOC", "flag":false } ], "specincrease": [], "perks": [], "description": "" @@ -181,6 +182,12 @@ "powersgained": [], "specialisations": [], "aoe": "", + "affectedcircumstances": "", + "affectedspecialisations": "", + "nrgcost": 0, + "opponenthindrance": 0, + "attackgained": [], + "armorgained": [], "description": "" }, "specialisation": { diff --git a/templates/actor-sheet.html b/templates/actor-sheet.html index b82f6d5..1d5eb09 100644 --- a/templates/actor-sheet.html +++ b/templates/actor-sheet.html @@ -1,24 +1,24 @@