Compare commits

..

5 Commits

Author SHA1 Message Date
dc27fa8ff2 First actor sheet 2023-02-01 12:16:04 +01:00
d0f8023234 Actor sheet 2023-01-29 18:29:21 +01:00
3ec4ab0476 Actor sheet 2023-01-29 18:29:07 +01:00
521d14c263 Item review and commit 2023-01-04 22:43:01 +01:00
a91eb3d7bd Fix powers 2022-12-29 20:30:28 +01:00
28 changed files with 435 additions and 1057 deletions

View File

@ -13,10 +13,10 @@ export class Hero6ActorSheet extends ActorSheet {
return mergeObject(super.defaultOptions, {
classes: ["fvtt-hero-system-6", "sheet", "actor"],
template: "systems/fvtt-hero-system-6/templates/actor-sheet.hbs",
template: "systems/fvtt-hero-system-6/templates/actors/actor-sheet.hbs",
width: 960,
height: 720,
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "skills" }],
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "main" }],
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }],
editScore: true
});
@ -24,8 +24,7 @@ export class Hero6ActorSheet extends ActorSheet {
/* -------------------------------------------- */
async getData() {
const objectData = this.object.system
let actorData = duplicate(objectData)
const objectData = duplicate(this.object.system)
let formData = {
title: this.title,
@ -35,24 +34,21 @@ export class Hero6ActorSheet extends ActorSheet {
name: this.actor.name,
editable: this.isEditable,
cssClass: this.isEditable ? "editable" : "locked",
data: actorData,
system: objectData,
characteristics: this.actor.prepareCharac(),
limited: this.object.limited,
skills: this.actor.getSkills( ),
weapons: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getWeapons()) ),
armors: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getArmors())),
shields: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getShields())),
spells: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getLore())),
equipments: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getEquipmentsOnly()) ),
equippedWeapons: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getEquippedWeapons()) ),
equippedArmor: this.actor.getEquippedArmor(),
equippedShield: this.actor.getEquippedShield(),
feats: duplicate(this.actor.getFeats()),
subActors: duplicate(this.actor.getSubActors()),
race: duplicate(this.actor.getRace()),
moneys: duplicate(this.actor.getMoneys()),
encCapacity: this.actor.getEncumbranceCapacity(),
saveRolls: this.actor.getSaveRoll(),
conditions: this.actor.getConditions(),
description: await TextEditor.enrichHTML(this.object.system.biodata.description, {async: true}),
notes: await TextEditor.enrichHTML(this.object.system.biodata.notes, {async: true}),
containersTree: this.actor.containersTree,
@ -139,37 +135,17 @@ export class Hero6ActorSheet extends ActorSheet {
this.actor.incDecAmmo( li.data("item-id"), +1 )
} );
html.find('.roll-ability').click((event) => {
const abilityKey = $(event.currentTarget).data("ability-key");
this.actor.rollAbility(abilityKey);
html.find('.roll-charac').click((event) => {
const characKey = $(event.currentTarget).data("charac-key");
this.actor.rollCharac(characKey);
});
html.find('.roll-skill').click((event) => {
const li = $(event.currentTarget).parents(".item")
const skillId = li.data("item-id")
this.actor.rollSkill(skillId)
});
html.find('.roll-weapon').click((event) => {
const li = $(event.currentTarget).parents(".item");
const skillId = li.data("item-id")
this.actor.rollWeapon(skillId)
});
html.find('.roll-armor-die').click((event) => {
this.actor.rollArmorDie()
});
html.find('.roll-shield-die').click((event) => {
this.actor.rollShieldDie()
});
html.find('.roll-target-die').click((event) => {
this.actor.rollDefenseRanged()
});
html.find('.roll-save').click((event) => {
const saveKey = $(event.currentTarget).data("save-key")
this.actor.rollSave(saveKey)
});
html.find('.lock-unlock-sheet').click((event) => {
this.options.editScore = !this.options.editScore;
this.render(true);

View File

@ -64,28 +64,8 @@ export class Hero6Actor extends Actor {
/* -------------------------------------------- */
computeHitPoints() {
if (this.type == "character") {
let hp = duplicate(this.system.secondary.hp)
let max = (this.system.abilities.str.value + this.system.abilities.con.value) * 6
if (max != hp.max || hp.value > max) {
hp.max = max
hp.value = max // Init case
this.update({ 'system.secondary.hp': hp })
}
}
}
/* -------------------------------------------- */
computeEffortPoints() {
if (this.type == "character") {
let effort = duplicate(this.system.secondary.effort)
let max = (this.system.abilities.con.value + this.system.abilities.int.value) * 6
if (max != effort.max || effort.value > max) {
effort.max = max
effort.value = max // Init case
this.update({ 'system.secondary.effort': effort })
}
}
}
/* -------------------------------------------- */
prepareDerivedData() {
@ -93,7 +73,6 @@ export class Hero6Actor extends Actor {
this.system.encCapacity = this.getEncumbranceCapacity()
this.buildContainerTree()
this.computeHitPoints()
this.computeEffortPoints()
}
super.prepareDerivedData();
@ -116,29 +95,6 @@ export class Hero6Actor extends Actor {
Hero6Utility.sortArrayObjectsByName(comp)
return comp;
}
/* -------------------------------------------- */
getFeats() {
let comp = duplicate(this.items.filter(item => item.type == 'feat') || []);
Hero6Utility.sortArrayObjectsByName(comp)
return comp;
}
/* -------------------------------------------- */
getFeatsWithDie() {
let comp = duplicate(this.items.filter(item => item.type == 'feat' && item.system.isfeatdie) || []);
Hero6Utility.sortArrayObjectsByName(comp)
return comp;
}
getFeatsWithSL() {
let comp = duplicate(this.items.filter(item => item.type == 'feat' && item.system.issl) || []);
Hero6Utility.sortArrayObjectsByName(comp)
return comp;
}
/* -------------------------------------------- */
getLore() {
let comp = duplicate(this.items.filter(item => item.type == 'spell') || []);
Hero6Utility.sortArrayObjectsByName(comp)
return comp;
}
getEquippedWeapons() {
let comp = duplicate(this.items.filter(item => item.type == 'weapon' && item.system.equipped) || []);
Hero6Utility.sortArrayObjectsByName(comp)
@ -211,20 +167,10 @@ export class Hero6Actor extends Actor {
/* -------------------------------------------- */
getSkills() {
let comp = duplicate(this.items.filter(item => item.type == 'skill') || [])
for (let skill of comp) {
Hero6Utility.updateSkill(skill)
}
Hero6Utility.sortArrayObjectsByName(comp)
return comp
}
/* -------------------------------------------- */
getRelevantAbility(statKey) {
let comp = duplicate(this.items.filter(item => item.type == 'skill' && item.system.ability == ability) || []);
return comp;
}
/* -------------------------------------------- */
async equipItem(itemId) {
let item = this.items.find(item => item.id == itemId)
@ -268,27 +214,6 @@ export class Hero6Actor extends Actor {
return duplicate(this.items.filter(item => item.type == "equipment") || [])
}
/* ------------------------------------------- */
getSaveRoll() {
return {
reflex: {
"label": "Reflex Save",
"img": "systems/fvtt-hero-system-6/images/icons/saves/reflex_save.webp",
"value": this.system.abilities.agi.value + this.system.abilities.wit.value
},
fortitude: {
"label": "Fortitude Save",
"img": "systems/fvtt-hero-system-6/images/icons/saves/fortitude_save.webp",
"value": this.system.abilities.str.value + this.system.abilities.con.value
},
willpower: {
"label": "Willpower Save",
"img": "systems/fvtt-hero-system-6/images/icons/saves/will_save.webp",
"value": this.system.abilities.int.value + this.system.abilities.cha.value
}
}
}
/* ------------------------------------------- */
async buildContainerTree() {
let equipments = duplicate(this.items.filter(item => item.type == "equipment") || [])
@ -332,15 +257,6 @@ export class Hero6Actor extends Actor {
}
/* -------------------------------------------- */
async rollArmor(rollData) {
let armor = this.getEquippedArmor()
if (armor) {
}
return { armor: "none" }
}
/* -------------------------------------------- */
async incDecHP(formula) {
let dmgRoll = new Roll(formula+"[dark-starsorange]").roll({ async: false })
@ -351,11 +267,6 @@ export class Hero6Actor extends Actor {
return Number(dmgRoll.total)
}
/* -------------------------------------------- */
getAbility(abilKey) {
return this.system.abilities[abilKey];
}
/* -------------------------------------------- */
async addObjectToContainer(itemId, containerId) {
let container = this.items.find(item => item.id == containerId && item.system.iscontainer)
@ -429,9 +340,16 @@ export class Hero6Actor extends Actor {
}
/* -------------------------------------------- */
syncRoll(rollData) {
this.lastRollId = rollData.rollId;
Hero6Utility.saveRollData(rollData);
prepareCharacValues( charac) {
charac.total = charac.base+charac.value
charac.roll = 9 + Math.floor((charac.base+charac.value)/5)
}
prepareCharac() {
let characs = duplicate(this.system.characteristics)
for(let key in characs) {
this.prepareCharacValues( characs[key])
}
return characs
}
/* -------------------------------------------- */
@ -457,31 +375,6 @@ export class Hero6Actor extends Actor {
}
}
/* -------------------------------------------- */
async incrementSkillExp(skillId, inc) {
let skill = this.items.get(skillId)
if (skill) {
await this.updateEmbeddedDocuments('Item', [{ _id: skill.id, 'system.exp': skill.system.exp + inc }])
let chatData = {
user: game.user.id,
rollMode: game.settings.get("core", "rollMode"),
whisper: [game.user.id].concat(ChatMessage.getWhisperRecipients('GM')),
content: `<div>${this.name} has gained 1 exp in the skill ${skill.name} (exp = ${skill.system.exp})</div`
}
ChatMessage.create(chatData)
if (skill.system.exp >= 25) {
await this.updateEmbeddedDocuments('Item', [{ _id: skill.id, 'system.exp': 0, 'system.explevel': skill.system.explevel + 1 }])
let chatData = {
user: game.user.id,
rollMode: game.settings.get("core", "rollMode"),
whisper: [game.user.id].concat(ChatMessage.getWhisperRecipients('GM')),
content: `<div>${this.name} has gained 1 exp SL in the skill ${skill.name} (new exp SL : ${skill.system.explevel}) !</div`
}
ChatMessage.create(chatData)
}
}
}
/* -------------------------------------------- */
async incDecQuantity(objetId, incDec = 0) {
let objetQ = this.items.get(objetId)
@ -504,61 +397,16 @@ export class Hero6Actor extends Actor {
}
/* -------------------------------------------- */
isForcedAdvantage() {
return this.items.find(cond => cond.type == "condition" && cond.system.advantage)
}
isForcedDisadvantage() {
return this.items.find(cond => cond.type == "condition" && cond.system.disadvantage)
}
isForcedRollAdvantage() {
return this.items.find(cond => cond.type == "condition" && cond.system.rolladvantage)
}
isForcedRollDisadvantage() {
return this.items.find(cond => cond.type == "condition" && cond.system.rolldisadvantage)
}
isNoAdvantage() {
return this.items.find(cond => cond.type == "condition" && cond.system.noadvantage)
}
isNoAction() {
return this.items.find(cond => cond.type == "condition" && cond.system.noaction)
}
isAttackDisadvantage() {
return this.items.find(cond => cond.type == "condition" && cond.system.attackdisadvantage)
}
isDefenseDisadvantage() {
return this.items.find(cond => cond.type == "condition" && cond.system.defensedisadvantage)
}
isAttackerAdvantage() {
return this.items.find(cond => cond.type == "condition" && cond.system.targetadvantage)
}
/* -------------------------------------------- */
getCommonRollData(abilityKey = undefined) {
let noAction = this.isNoAction()
if (noAction) {
ui.notifications.warn("You can't do any actions du to the condition : " + noAction.name)
return
}
getCommonRollData(chKey = undefined) {
let rollData = Hero6Utility.getBasicRollData()
rollData.alias = this.name
rollData.actorImg = this.img
rollData.actorId = this.id
rollData.img = this.img
rollData.featsDie = this.getFeatsWithDie()
rollData.featsSL = this.getFeatsWithSL()
rollData.armors = this.getArmors()
rollData.conditions = this.getConditions()
rollData.featDieName = "none"
rollData.featSLName = "none"
rollData.rollAdvantage = "none"
rollData.advantage = "none"
rollData.disadvantage = "none"
rollData.forceAdvantage = this.isForcedAdvantage()
rollData.forceDisadvantage = this.isForcedDisadvantage()
rollData.forceRollAdvantage = this.isForcedRollAdvantage()
rollData.forceRollDisadvantage = this.isForcedRollDisadvantage()
rollData.noAdvantage = this.isNoAdvantage()
if (chKey) {
rollData.charac = duplicate(this.system.characteristics[chKey])
this.prepareCharacValues(rollData.charac)
}
if (rollData.defenderTokenId) {
let defenderToken = game.canvas.tokens.get(rollData.defenderTokenId)
let defender = defenderToken.actor
@ -581,26 +429,20 @@ export class Hero6Actor extends Actor {
rollData.advantageFromTarget = true
}
}
if (abilityKey) {
rollData.ability = this.getAbility(abilityKey)
rollData.selectedKill = undefined
}
console.log("ROLLDATA", rollData)
return rollData
}
/* -------------------------------------------- */
rollAbility(abilityKey) {
let rollData = this.getCommonRollData(abilityKey)
rollData.mode = "ability"
rollCharac(chKey) {
let rollData = this.getCommonRollData(chKey)
rollData.mode = "charac"
if (rollData.target) {
ui.notifications.warn("You are targetting a token with a skill : please use a Weapon instead.")
return
}
Hero6Utility.rollHero6(rollData)
this.startRoll(rollData)
}
/* -------------------------------------------- */
@ -655,152 +497,8 @@ export class Hero6Actor extends Actor {
}
}
/* -------------------------------------------- */
rollDefenseMelee(attackRollData) {
let weapon = this.items.get(attackRollData.defenseWeaponId)
if (weapon) {
weapon = duplicate(weapon)
let skill = this.items.find(item => item.name.toLowerCase() == weapon.system.skill.toLowerCase())
if (skill) {
skill = duplicate(skill)
Hero6Utility.updateSkill(skill)
let abilityKey = skill.system.ability
let rollData = this.getCommonRollData(abilityKey)
rollData.defenderTokenId = undefined // Cleanup
rollData.mode = "weapondefense"
rollData.shield = this.getEquippedShield()
rollData.attackRollData = duplicate(attackRollData)
rollData.skill = skill
rollData.weapon = weapon
rollData.img = weapon.img
if (!rollData.forceDisadvantage) { // This is an attack, check if disadvantaged
rollData.forceDisadvantage = this.isDefenseDisadvantage()
}
this.startRoll(rollData)
} else {
ui.notifications.warn("Unable to find the relevant skill for weapon " + weapon.name)
}
} else {
ui.notifications.warn("Weapon not found ! ")
}
}
/* -------------------------------------------- */
rollDefenseRanged(attackRollData) {
let rollData = this.getCommonRollData()
rollData.defenderTokenId = undefined // Cleanup
rollData.mode = "rangeddefense"
if ( attackRollData) {
rollData.attackRollData = duplicate(attackRollData)
rollData.effectiveRange = Hero6Utility.getWeaponRange(attackRollData.weapon)
rollData.tokensDistance = attackRollData.tokensDistance // QoL copy
}
rollData.sizeDice = Hero6Utility.getSizeDice(this.system.biodata.size)
rollData.distanceBonusDice = 0 //Math.max(0, Math.floor((rollData.tokensDistance - rollData.effectiveRange) + 0.5))
rollData.hasCover = "none"
rollData.situational = "none"
rollData.useshield = false
rollData.shield = this.getEquippedShield()
this.startRoll(rollData)
}
/* -------------------------------------------- */
rollShieldDie() {
let shield = this.getEquippedShield()
if (shield) {
shield = duplicate(shield)
let rollData = this.getCommonRollData()
rollData.mode = "shield"
rollData.shield = shield
rollData.useshield = true
rollData.img = shield.img
this.startRoll(rollData)
}
}
/* -------------------------------------------- */
async rollArmorDie(rollData = undefined) {
let armor = this.getEquippedArmor()
if (armor) {
armor = duplicate(armor)
let reduce = 0
let multiply = 1
let disadvantage = false
let advantage = false
let messages = ["Armor applied"]
if (rollData) {
if (Hero6Utility.isArmorLight(armor) && Hero6Utility.isWeaponPenetrating(rollData.attackRollData.weapon)) {
return { armorIgnored: true, nbSuccess: 0, messages: ["Armor ignored : Penetrating weapons ignore Light Armors."] }
}
if (Hero6Utility.isWeaponPenetrating(rollData.attackRollData.weapon)) {
messages.push("Armor reduced by 1 (Penetrating weapon)")
reduce = 1
}
if (Hero6Utility.isWeaponLight(rollData.attackRollData.weapon)) {
messages.push("Armor with advantage (Light weapon)")
advantage = true
}
if (Hero6Utility.isWeaponHeavy(rollData.attackRollData.weapon)) {
messages.push("Armor with disadvantage (Heavy weapon)")
disadvantage = true
}
if (Hero6Utility.isWeaponHack(rollData.attackRollData.weapon)) {
messages.push("Armor reduced by 1 (Hack weapon)")
reduce = 1
}
if (Hero6Utility.isWeaponUndamaging(rollData.attackRollData.weapon)) {
messages.push("Armor multiplied by 2 (Undamaging weapon)")
multiply = 2
}
}
let diceColor = armor.system.absorprionroll
let armorResult = await Hero6Utility.getRollTableFromDiceColor(diceColor, false)
console.log("Armor log", armorResult)
let armorValue = Math.max(0, (Number(armorResult.text) + reduce) * multiply)
if (advantage || disadvantage) {
let armorResult2 = await Hero6Utility.getRollTableFromDiceColor(diceColor, false)
let armorValue2 = Math.max(0, (Number(armorResult2.text) + reduce) * multiply)
if (advantage) {
armorValue = (armorValue2 > armorValue) ? armorValue2 : armorValue
messages.push(`Armor advantage - Roll 1 = ${armorValue} - Roll 2 = ${armorValue2}`)
}
if (disadvantage) {
armorValue = (armorValue2 < armorValue) ? armorValue2 : armorValue
messages.push(`Armor disadvantage - Roll 1 = ${armorValue} - Roll 2 = ${armorValue2}`)
}
}
armorResult.armorValue = armorValue
if (!rollData) {
ChatMessage.create({ content: "Armor result : " + armorValue })
}
messages.push("Armor result : " + armorValue)
return { armorIgnored: false, nbSuccess: armorValue, rawArmor: armorResult.text, messages: messages }
}
return { armorIgnored: true, nbSuccess: 0, messages: ["No armor equipped."] }
}
/* -------------------------------------------- */
rollSave(saveKey) {
let saves = this.getSaveRoll()
let save = saves[saveKey]
if (save) {
save = duplicate(save)
let rollData = this.getCommonRollData()
rollData.mode = "save"
rollData.save = save
if (rollData.target) {
ui.notifications.warn("You are targetting a token with a save roll - Not authorized.")
return
}
this.startRoll(rollData)
}
}
/* -------------------------------------------- */
async startRoll(rollData) {
this.syncRoll(rollData)
let rollDialog = await Hero6RollDialog.create(this, rollData)
rollDialog.render(true)
}

View File

@ -19,14 +19,23 @@ export const Hero6_CONFIG = {
"custom": "Custom"
},
powerEquipmentType: {
"adjustement": "Adjustement",
"attack": "Attack",
"bodyaffecting": "Bodyaffecting",
"defense": "Defense",
"adjustment": "Adjustment",
"mental": "Mental",
"movement": "Movement",
"senseaffecting": "Senseaffecting",
"sensory": "Sensory",
"special": "Special"
"size": "Size",
"special": "Special",
"standard": "Standard"
},
powerTypeModifiers : {
"none": "None",
"attack": "Attack",
"automaton": "Automaton",
"bodyaffecting": "Body-Affecting",
"defense": "Defense",
"sensory": "Sensory"
},
powerSenseAffecting: {
"none": "None",
"senseaffecting": "Sense-Affecting",
}
}

View File

@ -5,8 +5,8 @@ export class Hero6RollDialog extends Dialog {
/* -------------------------------------------- */
static async create(actor, rollData) {
let options = { classes: ["Hero6Dialog"], width: 540, height: 340, 'z-index': 99999 };
let html = await renderTemplate('systems/fvtt-hero-system-6/templates/roll-dialog-generic.hbs', rollData);
let options = { classes: ["Hero6Dialog"], width: 460, height: 'fit-content', 'z-index': 99999 };
let html = await renderTemplate('systems/fvtt-hero-system-6/templates/apps/roll-dialog-generic.hbs', rollData);
return new Hero6RollDialog(actor, rollData, html, options);
}
@ -44,7 +44,7 @@ export class Hero6RollDialog extends Dialog {
/* -------------------------------------------- */
async refreshDialog() {
const content = await renderTemplate("systems/fvtt-hero-system-6/templates/roll-dialog-generic.hbs", this.rollData)
const content = await renderTemplate("systems/fvtt-hero-system-6/templates/apps/roll-dialog-generic.hbs", this.rollData)
this.data.content = content
this.render(true)
}
@ -76,8 +76,8 @@ export class Hero6RollDialog extends Dialog {
html.find('#situational').change((event) => {
this.rollData.situational = event.currentTarget.value
})
html.find('#distanceBonusDice').change((event) => {
this.rollData.distanceBonusDice = Number(event.currentTarget.value)
html.find('#bonusMalus').change((event) => {
this.rollData.bonusMalus = Number(event.currentTarget.value)
})
}

View File

@ -24,7 +24,10 @@ export class Hero6Utility {
return array.includes(val);
})
Handlebars.registerHelper('upper', function (text) {
return text.toUpperCase();
if (text) {
return text.toUpperCase();
}
return text
})
Handlebars.registerHelper('lower', function (text) {
return text.toLowerCase()
@ -43,7 +46,7 @@ export class Hero6Utility {
return __locationNames[key]
})
Handlebars.registerHelper('isSkillCustom', function (key) {
if (key == "custom" || key == "background" || key == "combat" ) {
if (key == "custom" || key == "background" ) {
return true;
}
return false
@ -150,7 +153,7 @@ export class Hero6Utility {
const templatePaths = [
'systems/fvtt-hero-system-6/templates/partials/editor-notes-gm.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-roll-select.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-actor-ability-block.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-actor-characteristic-block.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-actor-status.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-options-abilities.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-item-nav.hbs',
@ -158,6 +161,7 @@ export class Hero6Utility {
'systems/fvtt-hero-system-6/templates/partials/partial-actor-equipment.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-power-equipment-cost.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-item-hasroll.hbs',
]
return loadTemplates(templatePaths);
}
@ -292,93 +296,10 @@ export class Hero6Utility {
let actor = game.actors.get(rollData.actorId)
// ability/save/size => 0
let diceFormula
let startFormula = "0d6cs>=5[blue]"
if (rollData.ability) {
startFormula = String(rollData.ability.value) + "d6cs>=5[blue]"
}
if (rollData.save) {
startFormula = String(rollData.save.value) + "d6cs>=5[blue]"
}
if (rollData.sizeDice) {
let nb = rollData.sizeDice.nb + rollData.distanceBonusDice + this.getDiceFromCover(rollData.hasCover) + this.getDiceFromSituational(rollData.situational)
startFormula = String(nb) + String(rollData.sizeDice.dice) + "cs>=5[blue]"
}
diceFormula = startFormula
// skill => 2
// feat => 4
// bonus => 6
if (rollData.skill) {
let level = rollData.skill.system.level
if (rollData.skill.system.issl2) {
rollData.hasSLBonus = true
level += 2
if (level > 7) { level = 7 }
}
rollData.skill.system.skilldice = __skillLevel2Dice[level]
diceFormula += "+" + String(rollData.skill.system.skilldice) + "cs>=5[black]"
if (rollData.skill.system.skilltype == "complex" && rollData.skill.system.level == 0) {
rollData.complexSkillDisadvantage = true
rollData.rollAdvantage = "roll-disadvantage"
}
if (rollData.skill.system.isfeatdie) {
rollData.hasFeatDie = true
diceFormula += "+ 1d10cs>=5[hero6-purple]"
} else {
diceFormula += `+ 0d10cs>=5[hero6-purple]`
}
if (rollData.skill.system.bonusdice != "none") {
rollData.hasBonusDice = rollData.skill.system.bonusdice
diceFormula += `+ ${rollData.hasBonusDice}cs>=5[black]`
} else {
diceFormula += `+ 0d6cs>=5[black]`
}
} else {
diceFormula += `+ 0d8cs=>5 + 0d10cs>=5 + 0d6cs>=5`
}
// advantage => 8
let advFormula = "+ 0d8cs>=5"
if (rollData.advantage == "advantage1" || rollData.forceAdvantage) {
advFormula = "+ 1d8cs>=5[hero6-darkgreen]"
}
if (rollData.advantage == "advantage2") {
advFormula = "+ 2d8cs>=5[hero6-darkgreen]"
}
diceFormula += advFormula
// disadvantage => 10
let disFormula = "- 0d8cs>=5"
if (rollData.disadvantage == "disadvantage1" || rollData.forceDisadvantage) {
disFormula = "- 1d8cs>=5[red]"
}
if (rollData.disadvantage == "disadvantage2") {
disFormula = "- 2d8cs>=5[red]"
}
diceFormula += disFormula
// armor => 12
let skillArmorPenalty = 0
for (let armor of rollData.armors) {
if (armor.system.equipped) {
skillArmorPenalty += armor.system.skillpenalty
}
}
if (rollData.skill && rollData.skill.system.armorpenalty && skillArmorPenalty > 0) {
rollData.skillArmorPenalty = skillArmorPenalty
diceFormula += `- ${skillArmorPenalty}d8cs>=5`
} else {
diceFormula += `- 0d8cs>=5`
}
// shield => 14
if (rollData.useshield && rollData.shield) {
diceFormula += "+ 1" + String(rollData.shield.system.shielddie) + "cs>=5[yellow]"
} else {
diceFormula += " + 0d6cs>=5"
let diceFormula = "3d6+" + rollData.bonusMalus
let target = 10
if (rollData.charac) {
target = rollData.charac.roll
}
// Performs roll
@ -388,74 +309,27 @@ export class Hero6Utility {
myRoll = new Roll(diceFormula).roll({ async: false })
await this.showDiceSoNice(myRoll, game.settings.get("core", "rollMode"))
}
rollData.rollOrder = 0
rollData.roll = myRoll
rollData.nbSuccess = myRoll.total
if (rollData.rollAdvantage == "none" && rollData.forceRollAdvantage) {
rollData.rollAdvantage = "roll-advantage"
rollData.target = target
rollData.diceFormula = diceFormula
rollData.result = myRoll.total
rollData.isSuccess = false
if (rollData.result <= target) {
rollData.isSuccess = true
}
if (rollData.rollAdvantage == "none" && rollData.forceRollDisadvantage) {
rollData.rollAdvantage = "roll-disadvantage"
if ( myRoll.terms[0].total == 3) { // Always a success
rollData.isSuccess = true
}
if (rollData.rollAdvantage != "none") {
rollData.rollOrder = 1
rollData.rollType = (rollData.rollAdvantage == "roll-advantage") ? "Advantage" : "Disadvantage"
this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-hero-system-6/templates/chat-generic-result.hbs`, rollData)
})
rollData.rollOrder = 2
let myRoll2 = new Roll(diceFormula).roll({ async: false })
await this.showDiceSoNice(myRoll2, game.settings.get("core", "rollMode"))
rollData.roll = myRoll2 // Tmp switch to display the proper results
rollData.nbSuccess = myRoll2.total
this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-hero-system-6/templates/chat-generic-result.hbs`, rollData)
})
rollData.roll = myRoll // Revert the tmp switch
rollData.nbSuccess = myRoll.total
if (rollData.rollAdvantage == "roll-advantage") {
if (myRoll2.total > rollData.nbSuccess) {
hasChanged = true
rollData.roll = myRoll2
rollData.nbSuccess = myRoll2.total
}
} else {
if (myRoll2.total < rollData.nbSuccess) {
rollData.roll = myRoll2
rollData.nbSuccess = myRoll2.total
}
}
rollData.rollOrder = 3
}
rollData.nbSuccess = Math.max(0, rollData.nbSuccess)
rollData.isFirstRollAdvantage = false
// Manage exp
if (rollData.skill && rollData.skill.system.level > 0) {
let nbSkillSuccess = rollData.roll.terms[2].total
if (nbSkillSuccess == 0 || nbSkillSuccess == rollData.skill.system.level) {
actor.incrementSkillExp(rollData.skill.id, 1)
}
if ( myRoll.terms[0].total == 18) { // Always a failure
rollData.isSuccess = false
}
this.saveRollData(rollData)
actor.lastRoll = rollData
this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-hero-system-6/templates/chat-generic-result.hbs`, rollData)
let msg = await this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-hero-system-6/templates/chat/chat-generic-result.hbs`, rollData)
})
msg.setFlag("world", "rolldata", rollData)
console.log("Rolldata result", rollData)
// Message response
this.displayDefenseMessage(rollData)
// Manage defense result
this.processAttackDefense(rollData)
}
/* -------------------------------------------- */
@ -531,7 +405,7 @@ export class Hero6Utility {
}
/* -------------------------------------------- */
static createChatMessage(name, rollMode, chatOptions) {
static async createChatMessage(name, rollMode, chatOptions) {
switch (rollMode) {
case "blindroll": // GM only
if (!game.user.isGM) {
@ -549,7 +423,7 @@ export class Hero6Utility {
break;
}
chatOptions.alias = chatOptions.alias || name;
ChatMessage.create(chatOptions);
return await ChatMessage.create(chatOptions);
}
/* -------------------------------------------- */
@ -557,7 +431,7 @@ export class Hero6Utility {
let rollData = {
rollId: randomID(16),
rollMode: game.settings.get("core", "rollMode"),
advantage: "none"
bonusMalus: 0
}
Hero6Utility.updateWithTarget(rollData)
return rollData
@ -572,8 +446,8 @@ export class Hero6Utility {
}
/* -------------------------------------------- */
static createChatWithRollMode(name, chatOptions) {
this.createChatMessage(name, game.settings.get("core", "rollMode"), chatOptions)
static async createChatWithRollMode(name, chatOptions) {
return await this.createChatMessage(name, game.settings.get("core", "rollMode"), chatOptions)
}
/* -------------------------------------------- */

0
packs/complications.db Normal file
View File

4
packs/perks.db Normal file
View File

@ -0,0 +1,4 @@
{"name":"Follower","type":"perk","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Perks.webp","system":{"displayname":"Follower","description":"This Perk means the character has a Follower of some kind — a person loyal to him and willing to do what he asks. Examples of Followers include human agents, familiars, golems, robots, and kid sidekicks.\nYou build Followers with the same Base Points as any other character in the campaign, with an amount of Total Points and an amount of Matching Complications. However, the Follower must be built on fewer Total Points than the character who buys him.\nThe cost to buy a Follower is his Total Points divided by 5. (Dont reduce the Total Points by his Matching Complications amount.) For example, suppose Beetleman wants a kid sidekick, Buggy. Beetleman is built on 400 Total Points. Buggy is built on 300 Total Points (including 50 Matching Complications points). Buggy costs Beetleman (300/5 =) 60 Character Points.","notes":"","effects":"","cost":"","activecost":"","basecost":"1","value":"","modifiers":"","hasroll":"","roll":"","levelscost":"1","characteristic":"","levels":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674949916155,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"folder":null,"sort":0,"_id":"L3vwlIh3oloE6A8W"}
{"name":"Money","type":"perk","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Perks.webp","system":{"displayname":"Money","description":"<p>Money may not make the world go round, but it can help motivate PCs. This Perk is most applicable in Heroic games, where characters spend money in the game to buy things.</p>\n<p>In Superheroic campaigns, where characters buy equipment with Character Points, Money isn&rsquo;t as important.</p>\n<p>The accompanying table gives the point cost for various levels of annual income. It lists dollar figures; substitute other types and amounts of money (gold pieces, Space Confederation credits, or the like) as appropriate for the campaign.</p>\n<table style=\"width: 42.0242%; height: 185px;\" border=\"1\"><colgroup><col style=\"width: 15.6388%;\"><col style=\"width: 84.3612%;\"></colgroup>\n<tbody>\n<tr style=\"height: 17px;\">\n<td style=\"height: 17px;\"><strong>Value</strong></td>\n<td style=\"height: 17px;\"><strong>Annual Income</strong></td>\n</tr>\n<tr style=\"height: 17px;\">\n<td style=\"height: 17px;\">(10)</td>\n<td style=\"height: 17px;\">Complication: Destitute ($3,000)</td>\n</tr>\n<tr style=\"height: 17px;\">\n<td style=\"height: 17px;\">(5)</td>\n<td style=\"height: 17px;\">Complication: Poor ($10,000)</td>\n</tr>\n<tr style=\"height: 17px;\">\n<td style=\"height: 17px;\">0</td>\n<td style=\"height: 17px;\">Middle Class: $75,000</td>\n</tr>\n<tr style=\"height: 17px;\">\n<td style=\"height: 17px;\">5</td>\n<td style=\"height: 17px;\">Well Off: $500,000</td>\n</tr>\n<tr style=\"height: 17px;\">\n<td style=\"height: 17px;\">10</td>\n<td style=\"height: 17px;\">Wealthy: $5,000,000</td>\n</tr>\n<tr style=\"height: 17px;\">\n<td style=\"height: 17px;\">15</td>\n<td style=\"height: 17px;\">Filthy Rich: unlimited income</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>","notes":"","effects":"","cost":null,"activecost":null,"basecost":0,"value":"","modifiers":"","hasroll":false,"roll":"","levelscost":"5","characteristic":"","levels":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674950084138,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"folder":null,"sort":0,"_id":"iJpTf46Zei339kOu"}
{"name":"Fringe Benefit","type":"perk","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Perks.webp","system":{"displayname":"Fringe Benefit","description":"<p>A Fringe Benefit is a Perquisite the character acquires from his job or background &mdash; a &ldquo;perk&rdquo; in the classic sense. The Fringe Benefits Table lists the cost for some common Fringe Benefits in various campaigns.</p>\n<p><strong>Universal Perks (any genre or time period)</strong><br>1 point &nbsp; &nbsp;License to practice a profession<br>1-10 points &nbsp; &nbsp; Membership (see text)<br>5 points &nbsp; &nbsp; Diplomatic Immunity<br>10 points &nbsp; &nbsp; Head of State (with GM&rsquo;s permission; may cost more)</p>\n<p><strong>Modern-Day Perks</strong><br>1 point &nbsp; &nbsp;Passport<br>1 point &nbsp; &nbsp;Press Pass<br>1 point &nbsp; &nbsp;Weapon Permit (where appropriate)<br>2 points &nbsp; &nbsp; Concealed Weapon Permit (where appropriate)<br>2 points &nbsp; &nbsp; Local Police Powers<br>2 points &nbsp; &nbsp; Private Investigator License<br>3 points &nbsp; &nbsp; Federal/National Police Powers<br>5 points &nbsp; &nbsp; International Police Powers<br>10 points &nbsp; &nbsp; License to Kill</p>\n<p><strong>Fantasy Perks</strong><br>2 points &nbsp; &nbsp; Knight<br>2 points &nbsp; &nbsp; Member of the Lower Nobility<br>3 points &nbsp; &nbsp; Low Justice: Character has the right to mete out justice<br>5 points &nbsp; &nbsp; Member of the Aristocracy/Higher Nobility</p>\n<p><strong>Science Fiction Perks</strong><br>1 point &nbsp; &nbsp;Starship License<br>3 points &nbsp; &nbsp; Galactic Computernet Access Card<br>5 points &nbsp; &nbsp; Planetary Police Powers<br>8 points &nbsp; &nbsp; Interstellar Police Powers</p>","notes":"","effects":"","cost":null,"activecost":null,"basecost":1,"value":"","modifiers":"","hasroll":false,"roll":"","levelscost":"1","characteristic":"","levels":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674950242210,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"folder":null,"sort":0,"_id":"nsIbgyutCg1NQqyr"}
{"name":"Contact","type":"perk","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Perks.webp","system":{"displayname":"Contact","description":"A character with this Perk knows someone who can occasionally help him out, usually because that person has a job, position, or other resources useful to the character. A character can buy this Perk many times; in each case, it represents a different person he knows.\nA Contact costs 2 Character Points for an 11- roll. Each +1 to the roll costs +1 Character Point.\nWhen a character wants to use his Contact, he must make his roll. If the roll fails, the Contact is of no use to him — either the character cant get in touch with his Contact, or the Contact cant help. If the roll succeeds, the Contact helps the character as best he can, though he probably wont risk his life, job, or anything else really important.","notes":"","effects":"","cost":null,"activecost":null,"basecost":2,"value":"","modifiers":"","hasroll":true,"roll":11,"levelscost":"1","characteristic":"","levels":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674950102276,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"folder":null,"sort":0,"_id":"yWTR7MCOtGWm1KCz"}

0
packs/powers.db Normal file
View File

View File

@ -0,0 +1,60 @@
{"name":"Gambling","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Gambling","description":"Gambling represents a characters ability to win gambling games require some skill (blackjack, poker, and so forth). Additionally, Gambling lets a character cheat (some forms of cheating also require Sleight Of Hand). A successful roll means the character won (or cheated successfully) — the more he makes it by, the more he wins. Failing the roll means he lost or his cheating failed.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505024,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"0663RVbZRl0oZ0Dr"}
{"name":"Mimicry","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Mimicry","description":"Mimicry allows a character to imitate someone elses voice, or certain other sounds, perfectly. Others can detect Mimicry with a Skill Versus Skill Contest pitting the listeners Hearing PER Roll against the Mimicry roll.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505028,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"1fWyIvm7y2Skkgf2"}
{"name":"Computer Programming","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Computer Programming","description":"A character with Computer Programming can program and operate computers. This includes knowledge of, and the ability to use, hardware, software, operating systems, and the like, both for routine uses and unusual ones (such as hacking, searching for information, or defeating computer- assisted security devices).","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505021,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"2ADd7QW9ppTDme2W"}
{"name":"Bribery","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Bribery","description":"A character with Bribery knows when to bribe someone, how to approach him, and how much to offer. If a Bribery attempt fails badly, or if the character attempts to bribe an incorruptible target, the potential bribee may call his superior or the police, arrest the character, or threaten him wita weapon. Also, just because a character has bribed someone doesnt mean hell stay bribed.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505026,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"2vZ9IPyad2RaqrCZ"}
{"name":"Science Skill","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Science Skill","description":"This general and very flexible Background Skill gives a character a solid grasp of and working knowledge of a particular field of science (whether a physical science, like Chemistry, or a social science, like Anthropology). For 2 Character Points, the character has an 11- roll to perform a given Science Skill (SS). Alternatel, characters can base the Skill upon a Characteristic (usually INT) for 3 Character Points, giving a base (9 + (CHAR/5)) roll. In either case, each +1 to the Skill Roll costs 1 Character Point.\nThe character must define the science when he purchases the SS, and it can be virtually any scientific subject he can think of. Examples include: Accounting; Anthropology; Archaeology; Biology; Chemistry; Genetics; Mathematics; Medicine; Physics; Sociology; and Zoology.","notes":"","effects":"","cost":"","activecost":"","basecost":"2","value":"","modifiers":"","skilltype":"Background","characteristic":"","base":"11","levelscost":"1","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505021,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"5Pik4otZCyWboJ9N"}
{"name":"Conversation","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Conversation","description":"Conversation allows a character to extract information from people with careful conversation, and/or to be an entertaining conversationalist. If Conversation is performed correctly, the victim wont even realize hes divulged anything.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505022,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"7StqFNmSny7Y4IOv"}
{"name":"Inventor","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Inventor","description":"Inventor allows a character to design and construct new devices. It does not grant a character any scientific or technical knowledge; to use it, he needs related Skills (for instance, Weaponsmith to invent new weapons, or Electronics and SS: Physics to design a satellite).","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505024,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"7fGOeQRBD0pblsHf"}
{"name":"Weapon Familiarity","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Weapon Familiarity","description":"Weapon Familiarity represents the knowledge of how to use specific weapons. It is used primarily in Heroic campaigns; characters in Superheroic campaigns, who pay Character Points for their weapons, automatically know how to use them. A character fights at -3 OCV when using a weapon for which he does not know the WF.\nEach Weapon Familiarity (WF) costs 2 Character Points. The character must select one of the following groups of weapons:\nCommon Melee Weapons (axes, hammers, knives, maces, swords, spears, polearms, clubs)\nCommon Missile Weapons (bows, crossbows, thrown weapons)\nSmall Arms (pistols, rifles, shotguns, submachine guns, assault rifles, grenades)\nUncommon Modern Weapons (flamethrowers, machine guns, shoulder-fired weapons)\nEmplaced Weapons (siege engines, howitzers, recoilless rifles, mortars, anti-aircraft guns)\nCharacters can purchase a WF with a single specific type of weapon for 1 Character Point. This includes not only individual weapons (greatswords, longbows, submachine guns), but “unusual” weapons not covered by the categories listed above (staffs, slings, whips, garrotes, nets, flails, and so on).","notes":"","effects":"","cost":"","activecost":"","basecost":"","value":"","modifiers":"","skilltype":"Combat","characteristic":"","base":"","levelscost":"","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505026,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"7o9if8ttcolxaivr"}
{"name":"Oratory","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Oratory","description":"Oratory represents the ability to speak to an audience and deliver a convincing presentation.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505020,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"9gS3QB5ZVWfGBbGA"}
{"name":"Persuasion","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Persuasion","description":"Characters with Persuasion can convince, persuade, or influence individuals, or tell believable lies. Persuasion is normally only used on NPCs; PCs are usually allowed more latitude with their decisions. However, a successful Persuasion roll should make a PC much more inclined to believe the speaker or do as he requests.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505022,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"9hpvAhpyy2tWVUJm"}
{"name":"Mechanics","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Mechanics","description":"A character with Mechanics can use the proper tools to repair, replace, modify, and build mechanical devices.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505026,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Ao2PYCvbhDoeUkbu"}
{"name":"Lockpicking","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Lockpicking","description":"Lockpicking let a character open locks using special tools instead of keys. It does not allow the character to detect or bypass security devices; that requires Security Systems.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505022,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"BPdrI7tkcjq6LR2F"}
{"name":"Language","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Language","description":"This Background Skill represents a level of fluency in, and knowledge of, a language — the more points spent, the greater the characters fluency.\nEach character knows his native language for free at the “Idiomatic” level.","notes":"","effects":"","cost":null,"activecost":null,"basecost":1,"value":"","modifiers":"","skilltype":"agility","characteristic":"","base":"","levelscost":1,"levels":null,"plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948522185,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"D26vgIaz5Tva12dY"}
{"name":"Martial Arts","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Martial Arts","description":"Martial Arts represents enhanced HTH Combat fighting ability, whether derived from intense training, innate ability, or hard-won experience. It includes everything from the grace and power of kung fu, to the brutality of bare-knuckle street fighting skills, to fencing.\nMartial Arts consists of various Martial Maneuvers which characters purchase individually. You can choose which Martial Maneuvers your character knows, but you must spend a minimum of 10 Character Points on Martial Maneuvers — you cant just buy one. The accompanying sidebar lists the cost of the various Martial Maneuvers; for explanations of what they can do and how they work, see Martial Maneuvers on BR 100.","notes":"","effects":"","cost":"","activecost":"","basecost":"","value":"","modifiers":"","skilltype":"Combat","characteristic":"","base":"","levelscost":"","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505024,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"EDjhmQ7Ue4NhOVA0"}
{"name":"Electronics","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Electronics","description":"Electronics allows a character to identify, understand, analyze, build, repair, disable, and rewire electronic devices. The character usually needs tools to use Electronics, and often lots of time.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505021,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"G9yg8s6PnM4ffGvF"}
{"name":"Shadowing","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Shadowing","description":"A character with Shadowing can follow or watch someone subtly (either on foot or in a vehicle), establish static surveillance without being detected, and so forth.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505021,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"HOuho22NNY5SkrLF"}
{"name":"Navigation","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Navigation","description":"A character with Navigation can determine his location and plot an efficient course between two points.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505028,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"HzC1JvHFVdUAMLO2"}
{"name":"Stealth","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Stealth","description":"Characters with Stealth can hide in shadows, move silently, and/or avoid detection in combat conditions. When a character wants to be stealthy, use his Stealth roll versus the PER Rolls of anyone attempting to find him (or who might perceive him) in a Skill Versus Skill Contest.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505024,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Is86jzSWyQt0YJP7"}
{"name":"Skill Levels","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Skill Levels","description":"Once a character knows a Skill, he can improve his ability to use it by buying Skill Levels. The appli- cability and uses of a Skill Level depend on what types of Skills it works with; there are five categories of Skill Levels, each described in the accompanying Skill Levels Table. A character must define what Skills a Skill Level works with when he buys it, and cannot change them thereafter.\nAllocating Skill Levels\nA character can only apply a Skill Level to one task at a time. He must choose which Skill a Skill Level applies to, though he can change the assignment of his Skill Levels from Phase to Phase.\nChanging the assignment of Skill Levels constitutes a Zero Phase Action, but a character can only do it once per Phase. After he attacks, his Skill Levels stay as they are until his next Phase begins.\nSkill Levels On Foci\nWith the GMs permission, characters can put Limitations on Skill Levels. The GM may restrict which types of Skill Levels a character can Limit; for example he might rule that only 3-point Skill Levels can have Limitations.","notes":"","effects":"","cost":"","activecost":"","basecost":"","value":"","modifiers":"","skilltype":"","characteristic":"","base":"","levelscost":"","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505026,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"J7ydpjeunnYdWCDS"}
{"name":"Tactics","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Tactics","description":"A character with Tactics knows how to fight effectively and efficiently in discrete battles and small units — how to position (and best use) a small force, when its time to retreat, and so forth.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505029,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Kb7OAfmiyTO09ewh"}
{"name":"Bureaucratics","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Bureaucratics","description":"A character with Bureaucratics can deal with bureaucrats, cut through red tape, and extract information from bureaucracies. He also knows the right people to talk to (for just about anything) and how to reach them","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505024,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"LzGcxVcsrTwDBjNh"}
{"name":"Power","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Power","description":"This Skill represents a characters ability to use one (or more) of his powers or abilities in creative or unusual ways. Its name varies from campaign to campaign, setting to setting, character to character. Characters can base Power on any one of several Characteristics, depending on the nature of the Skill as the character uses it. If based on INT, it is considered an Intellect Skill; if on DEX, an Agility Skill; and so forth.\nPower serves two related functions. First, it may act as a Required Skill Roll (see BR 71) for abilities which the GM rules must have a Skill Roll to function. For example, in a Fantasy campaign, Power would be called Magic and all wizards would use it to cast spells.\nSecond, Power can simulate a characters level of skill with a particular power, ability, or attack. Characters who make appropriate Power rolls can perform “tricks” or do unusual things with their powers. For example, a “brick” in a comic book superhero campaign might buy Power as Strength Tricks and use it to etch a message into hardened steel without breaking the steel or hurting himself.\nGMs should control all uses of Power care- fully. Characters who want to perform a particular “trick” or “power stunt” frequently should pay Character Points for it (especially if it has an effect on combat).","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Varies","characteristic":"","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505025,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"MJRfmSE068zx6VgW"}
{"name":"Combat Piloting","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Combat Piloting","description":"Characters with Combat Piloting can pilot and control vehicles which operate in three dimensions (everything from airplanes, to submarines,\nto spaceships) in difficult situations (primarily combat).\nTo use Combat Piloting, the character must know how to operate the vehicle (see Transport Familiarity, BR 30). A character with Combat Piloting gets one 1-point TF from the Air Vehicles category for free.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505028,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Man0idYydTHknrzS"}
{"name":"Forensic Medicine","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Forensic Medicine","description":"Characters with Forensic Medicine can study a corpse (or even perform an autopsy) to learn about the cause of death, how long the individual has been dead, if the corpse was moved after death, and so forth.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505026,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Mvh1C4coAd7gBenN"}
{"name":"Riding","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Riding","description":"Characters with Riding can ride a living creature under difficult circumstances, including fighting while mounted, leaping obstacles, and the like. To use Riding, the character must know how to handle the animal (see Transport Familiarity, BR 30). A character with Riding gets one 1-point TF from the Riding Animals category for free.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505020,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"O5vJ3zGiGRT1GrgB"}
{"name":"Cryptography","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Cryptography","description":"Cryptography allows a character to solve ciphers and codes, encrypt or encode messages, and hide messages in ordinary text. In modern settings it may require the use of a computer.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505029,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Qk3So74Lxwpfsf7Z"}
{"name":"Professional Skill","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Professional Skill","description":"This general and very flexible Background Skill gives a character the ability to perform certain professions, crafts, tasks, and the like. For 2 Character Points, the character has an 11- roll to perform a given Professional Skill (PS). Alternately, characters can base the Skill upon a Characteristic for 3 Character Points, giving a base (9 + (CHAR/5)) roll. In either case, each +1 to the Skill Roll costs 1 Character Point.\nThe character must define the job, craft, or task when he purchases the PS, and it can be virtually anything he can think of. Examples include: Accountant; Alchemist; Carpenter; Goldsmith; Gunslinger; Lawyer; Singer; Singing; or Wizard. As the names indicate, PSs often represent a characters employment, but can also indicate hobbies, interests, and other abilities.","notes":"","effects":"","cost":"","activecost":"","basecost":"2","value":"","modifiers":"","skilltype":"Background","characteristic":"","base":"11","levelscost":"1","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505021,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"R29hL1VMQ7Y2qiC5"}
{"name":"Animal Handler","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Animal Handler","description":"Animal Handler lets a character train animals to do his bidding. He can teach animal tricks, calm down a ferocious or enraged animal, make a trained attack animal attack a specific person in a crowd, or the like.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505022,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"RNcJSdMGQeTO2g1J"}
{"name":"Demolitions","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Demolitions","description":"A character with Demolitions can use explosives properly. He knows about different types of explosives, how to handle and set them off, and how to defuse explosive devices.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505021,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Slz7PwNs3eEqfmRa"}
{"name":"Knowledge Skill","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Knowledge Skill","description":"This general and flexible Background Skill includes knowledge of certain groups, places, people and things — any subject the character wishes to have knowledge of. For 2 Character Points, the character has an 11- roll to perform a given Knowledge Skill (KS). Alternately, characters can base the Skill upon a Characteristic (typically INT) for 3 Character Points, giving a base (9 + (CHAR/5)) roll. In either case, each +1 to the Skill Roll costs 1 Character Point.\nThe character must define the subject when he purchases the KS, and it can be virtually any- thing he can think of. Examples include: Arcane And Occult Lore; British Literature; Demons; The Galactic Confederation; Horse Racing; The Mafia; New York City; Rock Music; and Zulu Culture.\nCharacters may not take KSs for scientific subjects, like Astronomy, Biology, or Physics; those require Science Skills (BR 29).","notes":"","effects":"","cost":"","activecost":"","basecost":"2","value":"","modifiers":"","skilltype":"Background","characteristic":"","base":"11","levelscost":"1","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505025,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"SxfZuPeYyxawm7sC"}
{"name":"Range Skill Levels","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Range Skill Levels","description":"Range Skill Levels (RSLs) are similar to Combat Skill Levels (BR 26). However, they only increase a characters OCV, and only for purposes of overcoming the Range Modifier (BR 96). The accompanying Range Skill Levels Table lists the cost per +1 OCV, based on how many different types of attacks the RSL applies to.\nThe smallest RSL which can be bought with Limitations is a 3-point Level.","notes":"","effects":"","cost":"","activecost":"","basecost":"","value":"","modifiers":"","skilltype":"Combat","characteristic":"","base":"","levelscost":"","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505028,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Tqc864Dsj0kRlTuF"}
{"name":"Bugging","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Bugging","description":"Characters with Bugging can plant and operate listening, visual, or other sensing devices (“bugs”) properly, and “sweep” (search physically or with detectors) for bugs. A successful roll lets a character find an existing bug, or correctly place one. The GM should assume characters with Bugging have a small supply of average quality bugging equipment.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505025,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"UoBCHQdHdhoUk9IV"}
{"name":"Forgery","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Forgery","description":"Forgery is the ability to duplicate documents, objects, and money. It usually requires time and specialized equipment (especially for highly technical forgeries), but duplicating a signature by hand only takes a few seconds.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505025,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"VLb49ufYJ5RTajpa"}
{"name":"Contortionist","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Contortionist","description":"Contortionist gives a character the ability to manipulate his body so as to get out of ropes and other bonds (or to fit into tiny spaces hes normally too big for). An attempt to escape from normal ropes would incur a -0 or -1 modifier, wires would be -2 or -3, and handcuffs would be -3 or -4.\nA character can use Contortionist to escape from Grabs (BR 98). If he succeeds with a roll exactly, he can add 1d6 to his STR; for every additional point by which the roll was made, he can add +1d6 more.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505022,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Vkr4zouWGBLFobeB"}
{"name":"Acrobatics","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Acrobatics","description":"Acrobatics lets a character perform flips, jumps, and rolls like a circus acrobat. Acrobatics enables the character to jump from one moving vehicle to another safely, swing from flagpoles, bounce off awnings, and execute other tricky moves. He can also maintain his balance on narrow or difficult surfaces. At the GMs option, he may sometimes be able to obtain Surprise Move (BR 96) bonuses when using Acrobatics in combat.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505029,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Vmnydvxnv2y4oI92"}
{"name":"Sleight of Hand","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Sleight of Hand","description":"Sleight Of Hand is the ability to palm items, fool the eye, perform certain magic tricks, and so forth. Large objects (anything bigger than a small pistol) are, of course, more difficult to palm (-1 to\n-5). Characters can also use Sleight Of Hand to pick pockets in a Skill Versus Skill Contest against the victims PER Roll.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505025,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"W9tZ6KJ7Nild2nMk"}
{"name":"Combat Driving","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Combat Driving","description":"Characters with Combat Driving can drive and control vehicles which operate in two dimensions (like chariots, cars, and speedboats) in difficult situations.\nTo use Combat Driving, the character must know how to operate the vehicle (see Transport Familiarity, BR 30). A character with Combat Driving gets one 1-point TF from the Ground Vehicles category for free","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505022,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"XLQgTrArS7iTytHn"}
{"name":"Paramedics","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Paramedics","description":"A character with Paramedics knows how to perform first aid, stop bleeding, repair damage, and generally keep someone alive. He can prevent someone from bleeding to death (BR 103); a successful roll (with a penalty of -1 per 2 BODY of\ndamage sustained) stops the victim from losing any more BODY due to bleeding. Advanced medical care, such as surgery, requires a hospital and Skills such as Science Skill: Medicine.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505025,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Xz4zc1x90THjxm6I"}
{"name":"Concealment","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Concealment","description":"Concealment represents a characters ability to hide things and to find things which others have hidden — important papers, weapons, jewels, arti- facts, drugs, and so forth.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505024,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"YfLechAkLdcHGPCm"}
{"name":"Security Systems","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Security Systems","description":"A character with Security Systems can locate, recognize, evade, and build various types of alarms and traps. This usually requires the proper equipment, and often a lot of time (one Turn or longer) as well.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505024,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"bBoNhL0myNTylcHm"}
{"name":"Transport Familiarity","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Transport Familiarity","description":"This Background Skill allows characters to drive or pilot specific types of vehicles, or ride a living mount, under routine conditions (combat or crisis conditions require other Skills listed above).\nEach Transport Familiarity (TF) costs 2 Character Points. The character must select one of the following groups of vehicles:\n\nRiding Animals (horses, camels, elephants, and so on)\nGround Vehicles (cars, trucks, trains, motorcycles, sleds, snowmobiles)\nWater Vehicles (rowed boats, sailed boats, motorized boats)\nAir Vehicles (airplanes, helicopters) Space Vehicles (spaceships, starships) Mecha\nCharacters can purchase a TF with a single specific type of vehicle for 1 Character Point. This includes not only individual vehicles (Ford Mus- tangs, Los Angeles-class submarines) but recreational “vehicles” (such as SCUBA, Parachuting, Snow Skiing, or the like).","notes":"","effects":"","cost":"","activecost":"","basecost":"","value":"","modifiers":"","skilltype":"Background","characteristic":"","base":"","levelscost":"","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505028,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"bstMbLdHkP16NpyE"}
{"name":"Streetwise","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Streetwise","description":"Streetwise gives a character knowledge of the seamy side of civilization. He knows how to find the black market, talk to thugs and criminals, gain information, deal with organized (and not so organized) crime figures, and so on.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505023,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"gIYMsOzBOnRNRCLv"}
{"name":"Tracking","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Tracking","description":"Characters with Tracking can follow a trail by observing tracks, marks, broken twigs and so forth, and also know how to hide tracks.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505027,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"gpzcF5naO9H3vNzi"}
{"name":"Charm","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Charm","description":"Charm is the ability to gain others trust (and perhaps even friendship) by offering companionship or favors. This Skill is normally only for use on NPCs; a player should have more control over his characters actions. The GM may rule that Charm can be used on a PC when it fits his Complications or personality.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505026,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"hZxL8I4mNlTsA9xQ"}
{"name":"Systems Operation","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Systems Operation","description":"Characters with Systems Operation know how to operate sensing and communication devices properly. It does not cover navigational equipment (thats Navigation) or encoding transmissions (thats Cryptography).","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505025,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"j7rkLue81LaHIzz7"}
{"name":"Ventriloquism","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Ventriloquism","description":"A character with Ventriloquism can make his voice sound as if its coming from somewhere other than himself, and can speak without apparently moving his lips. Ventriloquism is detected with a PER Roll in a Skill Versus Skill Contest. A Ventriloquism roll takes a -1 for every 2m of distance between the ventriloquist and the point where the voice “speaks.”","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505026,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"jFd7i04Eu1FLCEpJ"}
{"name":"High Society","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"High Society","description":"Characters with High Society know about upper-class culture and how to interact with it: what clothes to wear, which fork to use for shrimp, whos who, the gossip and “court politics” applicable to the situation, and so forth.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505025,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"m40buQ4y7AzWbrA9"}
{"name":"Acting","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Acting","description":"Acting enables a character to alter his physical mannerisms and speech patterns to seem to be another person, to fool someone, or to fake moods and emotions. Characters can use it to hide their true identity or to impersonate another individual. To detect an acting character, use Acting versus an INT Roll in a Skill Versus Skill Contest.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505024,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"nI5iEf0yiYhxq25c"}
{"name":"Weaponsmith","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Weaponsmith","description":"Characters with Weaponsmith can make, maintain, and repair any type of weapon. They can also identify the origin, uses, and effects of any weapon they are familiar with or have time to analyze.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505021,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"nUN9KhicXuNmp4D1"}
{"name":"Trading","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Trading","description":"Trading gives a character the ability to strike a good bargain with a merchant or customer. Prices often arent fixed, especially in pre-modern genres, so a character with Trading can save (or make) considerable money if he wins a Skill Versus Skill Contest (versus the other characters Trading or an INT Roll). Losing the Contest may mean paying too much, or not making a profit.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505022,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"oemgQRPYovpJWnIy"}
{"name":"Climbing","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Climbing","description":"Climbing allows a character to climb unusually difficult walls, trees, and buildings, as long as handholds exist. Climbing speed varies according to the structure being climbed, but the base speed is 2m per Phase. Climbing equipment (such as rope, grapnels, pitons, or special shoes) may provide bonuses to the roll or speed the pace of climbing.\nA climbing characters OCV and DCV are halved, and may be 0 if the character is in a really difficult position. An unsuccessful Climbing roll usually means the character cannot climb that area, but sometimes means a fall if the roll was spectacularly bad.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505028,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"oriixvERNMbudc4F"}
{"name":"Criminology","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Criminology","description":"A character with Criminology knows how to look for clues, dust for fingerprints, analyze evidence, examine criminal records and files, do ballistics tests, and so on.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505025,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"p3hcPolw32oekFFK"}
{"name":"Lipreading","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Lipreading","description":"Lipreading allows a character to read someones lips to tell what that person is saying (if he knows the language that persons speaking).","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505024,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"p9K5CQYwgZOl343r"}
{"name":"Disguise","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Disguise","description":"Disguise allows a character to change his (or another characters) appearance with makeup, costumes, body language, and facial expression (though acting like another person requires Acting). He can alter his appearance, or disguise himself to look like a specific person (though this usually involves a -1 to -3 penalty). To spot someone wearing a disguise, an onlooker must make a PER Roll in a Skill Versus Skill Contest against the characters Disguise.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505028,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"qoYl6qI2RzQh2pNk"}
{"name":"Breakfall","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Breakfall","description":"Breakfall allows a character to roll out from a fall and stand up without taking a Half Phase. A successful roll also means the character takes only half damage from the fall. Eac4m the character falls imposes a -1 penalty on the roll. If the character makes his Breakfall Roll by half (after applying the height modifier), he takes no damage from the fall at all. Characters can also use Breakfall to resist damage from Throws (see BR 98, 100); a successful roll (at -1 for every 2d6 in the Throw attack) halves the damage taken. A character can use Breakfall to land on his feet if he suffers Knockback or Knockdown. If his roll succeeds, he takes no damage and doesnt have to spend a Half Phase standing up. Each 4m of Knockback imposes a -1 on the Breakfall Roll. Characters who are Knocked Back into something (like a wall or a vehicle) cannot use Breakfall to lessen the effects of Knockback.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505021,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"sJr4xWMMISI8DcGY"}
{"name":"Combat Skill Levels","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Combat Skill Levels","description":"Once a character knows how to use an attack, he can improve his Combat Value by buying Combat Skill Levels (CSLs). The applicability and uses of a CSL depend on what types of attacks it works with. There are four categories of CSL, each described below. A character must define what attacks a Combat Skill Level works with when he buys it, and cannot change it thereafter.\n2-Point Combat Skill Levels\nA 2-point Combat Skill Level adds +1 to a characters OCV when he uses one single type of attack. Two-point CSLs can never apply to DCV. Examples of attacks a 2-point CSL could be bought for include Punches, Broadswords, and Claws.\n3-Point Combat Skill Levels\nA 3-point Combat Skill Level can add +1 to a characters OCV or +1 to his DCV with a Small Group of attacks. This means any group of up to three related maneuvers or attacks, or any other group of attacks the GM regards as smaller than a Large Group.\n5-Point Combat Skill Levels\nA 5-point Combat Skill Level can add +1 to a characters OCV or +1 to his DCV with a Small Group of attacks. This means more attacks than a Small Group, but fewer than “all HTH Combat” or “all Ranged Combat,” such as any Power Framework with more than three slots, or any Martial Arts style with more than three Martial Maneuvers.\n8-Point Combat Skill Levels\nAn 8-point Combat Skill Level can add +1 to a characters OCV or +1 to his DCV with either All HTH Combat or All Ranged Combat.\n10-Point Combat Skill Levels\nAn 8-point Combat Skill Level can add +1 to a characters OCV or +1 to his DCV with All Combat— HTH or Ranged.\nAllocating Combat Skill Levels\nA single 2-point Combat Skill Level can only improve a characters OCV. It adds to the attack it was bought for whenever the character uses that attack.\nA Combat Skill Level costing 3, 5, 8, or 10 points can improve either a characters OCV or his DCV when the character uses the attacks it was bought for. The character has to choose which one it improves, though he can change the assignment of his CSLs from Phase to Phase. Changing the assignment of CSLs constitutes a Zero Phase Action, but a character can only do it once per Phase. After he attacks, his CSLs stay as they are until his next Phase begins or he Aborts to a defensive Action.\nCombat Skill Levels On Foci\nWith the GMs permission, characters can put Limitations on CSLs (for example, to build equipment, like a laser sight for a gun). The GM may restrict which types of CSLs a character can Limit; for example he might rule that only 3-point or more expensive CSLs can have Limitations. Unless the GM rules otherwise, CSLs with Limitations can only increase the users OCV, not DCV.","notes":"","effects":"","cost":"","activecost":"","basecost":"","value":"","modifiers":"","skilltype":"Combat","characteristic":"","base":"","levelscost":"","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505026,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"tEKOW2ah9VQVYtMB"}
{"name":"Fast Draw","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Fast Draw","description":"Fast Draw is the ability to ready and use a weapon quickly. A character with Fast Draw can draw a weapon as a Zero-Phase Action instead of the usual Half Phase Action (see BR 92), and can change Clips (BR 68) as a Half Phase Action.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Agility","characteristic":"DEX","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505023,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"xOYzr8hjIi7vf1D8"}
{"name":"Deduction","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Deduction","description":"Deduction is the ability to take several facts and leap to an inobvious conclusion — the classic detectives skill. A failed Deduction roll usually indicates the character cant think of an answer, but it may mean an incorrect deduction.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505029,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"yMSxYvxSXt9cCRij"}
{"name":"Interrogation","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Interrogation","description":"A character with Interrogation can extract information from people, either forcibly or through psychological manipulation. He knows how to avoid leaving marks, can judge how close a victim is to deah tor breaking, and is an expert at manipulating subjects into revealing information. Interrogation works against an EGO Roll in a Skill Versus Skill Contest; the Talent Resistance helps victims resist Interrogation.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Interaction","characteristic":"PRE","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505029,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"zGSjfej2hkFDWAs4"}
{"name":"Survival","type":"skill","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Skills.webp","system":{"displayname":"Survival","description":"Characters with Survival can live off the land, find food and water, locate or build crude shelters, identify dangerous plants and animals, and so on.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","skilltype":"Intellect","characteristic":"INT","base":"","levelscost":"2","levels":"","plusonecost":0,"skillroll":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674948505028,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"zLKcnLGEcMwECjni"}

14
packs/talents.db Normal file
View File

@ -0,0 +1,14 @@
{"name":"Ambidexterity","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Ambidexterity","description":"Ambidexterity allows a character to eliminate the Off Hand penalty (BR 96) when performing tasks or using a weapon. This does not allow a character to attack more than once per Phase.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","hasroll":"","roll":"","levelscost":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951158102,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"1oojD2KMJsxNlMez"}
{"name":"Eidetic Memory","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Eidetic Memory","description":"The character has a photographic memory. He can remember images and other sensations which hes studied (including written pages) with near photographic exactness.\nEidetic Memory doesnt teach a character any Skills, even though he can recall facts from books hes read. A character must spend Experience Points to retain any information he studies as permanent KSs or Sss.","notes":"","effects":"","cost":"","activecost":"","basecost":"5","value":"","modifiers":"","hasroll":"","roll":"","levelscost":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951165478,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"39HQSvogeSG4vZCO"}
{"name":"Speed Reading","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Speed Reading","description":"This Talent allows a character to read books and documents up to ten times faster than normal.","notes":"","effects":"","cost":"","activecost":"","basecost":"4","value":"","modifiers":"","hasroll":"","roll":"","levelscost":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951171651,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Bm6HAngCRhyr3RQa"}
{"name":"Universal Translator","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Universal Translator","description":"A character with Universal Translator can understand any form of communication — from verbal speech, to obscure body language, to written text — and communicate back in a crude fashion. He must make an INT Roll; if successful he comprehends whats being said or read. The roll has negative modifiers (-1 to -3) if the language he tries to understand is extremely different from known forms of communication. Conversely, if he tries\nto understand a language similar to others he has already encountered, he gets a bonus (+1 to +3) to his INT Roll. He can improve this roll by spending more time, just like a Skill Roll.","notes":"","effects":"","cost":"","activecost":"","basecost":"20","value":"","modifiers":"","hasroll":"Yes","roll":"","levelscost":"1"},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951174791,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"EFPbxzVn6S4a7KGE"}
{"name":"Perfect Pitch","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Perfect Pitch","description":"A character with Perfect Pitch can tell the exact pitch of a musical tone by listening; no roll is necessary. Perfect Pitch also adds a +1 to any music-related Skill Roll.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","hasroll":"","roll":"","levelscost":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951169063,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"FV64TK1MIb2eL7nN"}
{"name":"Double Jointed","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Double Jointed","description":"A Double Jointed character has unusually flexible joints. He receives a bonus of +1 to +3 to Contortionist rolls (and sometimes Breakfall rolls too). The GM determines the amount of the bonus based on the circumstances.","notes":"","effects":"","cost":"","activecost":"","basecost":"4","value":"","modifiers":"","hasroll":"","roll":"","levelscost":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951164213,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"GloaLbRrUjOhcj6U"}
{"name":"Absolute Time Sense","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Absolute Time Sense","description":"A character with this Talent can gauge the passage of time accurately without using a watch, the sun, or other external means.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","hasroll":"","roll":"","levelscost":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951156663,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"IMB3coU43eCQzNp3"}
{"name":"Lightning Calculator","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Lightning Calculator","description":"A character with Lightning Calculator has the innate ability to perform mathematical operations mentally with startling speed. Multiplying four-digit numbers takes one Phase; calculating the vector of an approach orbit with regard to relative velocities, gravities, and rotation speeds takes a full Turn; medium calculations take medium times.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","hasroll":"","roll":"","levelscost":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951167656,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"LasI0KiBmIb1ogfy"}
{"name":"Striking Appearance","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Striking Appearance","description":"If you want a characters appearance to have an effect in the game, buy this Talent for him. It provides a bonus to Interaction Skill rolls and Presence Attacks, but exactly which ones depend on how its defined. If a characters defined as “beautiful” or “handsome,” then the bonus applies to many uses of Skills like Charm, Conversation, and Persuasion, and to Presence Attacks that might work better coming from an attractive person (such as, “Wont you please help me?”). If a characters defined as “ugly,” the bonus applies to many uses of Interrogation and to Presence Attacks based on fear or disgust. The GM determines whether Striking Appearance applies, and to what extent.\nCharacters can purchase Striking Appearance multiple times, thus indicating relative “levels” of attractiveness — a character wit+2/+2d6 Striking Appearance is prettier than one with only +1/+1d6.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","hasroll":"","roll":"","levelscost":"3"},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951173197,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"U3MdUipUIN5eWwAH"}
{"name":"Resistance","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Resistance","description":"Resistance represents a characters ability to resist the use of the Interrogation Skill. It costs 1 Character Point for each +1 to the characters EGO Roll for the purpose of resisting Interrogation.","notes":"","effects":"","cost":"","activecost":"","basecost":"1","value":"","modifiers":"","hasroll":"","roll":"","levelscost":"1"},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951170408,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"Wbcis0YGTYbtDWPc"}
{"name":"Environmental Movement","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Environmental Movement","description":"A character with Environmental Movement can move without restrictions in environments that hamper most characters (see Environmental Conditions, BR 97). He typically suffers no penalty to OCV, DCV, Skill Rolls, or movement based on being in those environments. The accompanying table lists the costs for different types of environments.","notes":"","effects":"","cost":"","activecost":"","basecost":"","value":"","modifiers":"","hasroll":"","roll":"","levelscost":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951166560,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"eeg0DdyRAdrCrIBM"}
{"name":"Danger Sense","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Danger Sense","description":"Danger Sense gives a character a “sixth sense” about things and situations dangerous to him. The character makes a Danger Sense roll whenever told to by the GM, though he may request a roll if he suspects something. If the roll fails, he does not sense any danger. If the roll succeeds, the character is not Surprised by the danger (i.e., he gets his full DCV against the attack). If he makes the roll by half or less, he knows the true location and type of danger threatening him; if appropriate and he has a Phase to use, he can make an attack against the danger at his normal OCV.","notes":"","effects":"","cost":"","activecost":"","basecost":"15","value":"","modifiers":"","hasroll":"Yes","roll":"","levelscost":"1"},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951162746,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"hZ3B60iKy5KJirhp"}
{"name":"Combat Sense","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Combat Sense","description":"Combat Sense gives a character the innate ability to fight effectively in HTH Combat even while in darkness or blinded.\nA successful Combat Sense roll allows a character to make, or defend himself against, HTCombat attacks without suffering a penalty to his OCV or DCV because he cannot perceive his opponent wita Targeting Sense. The character must roll eacPhase to keep track of his opponents; this takes a Half Phase. If the roll fails, he suffers normal nonperception penalties (BR 90) that Phase.\nCombat Sense has no effect on Ranged combat.","notes":"","effects":"","cost":"","activecost":"","basecost":"15","value":"","modifiers":"","hasroll":"Yes","roll":"","levelscost":"1"},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951161000,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"qNW70OuOSOjQBgbQ"}
{"name":"Bump of Direction","type":"talent","img":"systems/fvtt-hero-system-6/images/icons/HeroIcon-Talents.webp","system":{"displayname":"Bump of Direction","description":"A character with this Talent has an innate sense of direction. He can always tell direction without reference to visual clues, and can also tell if he is above or below the local ground level.","notes":"","effects":"","cost":"","activecost":"","basecost":"3","value":"","modifiers":"","hasroll":"","roll":"","levelscost":""},"effects":[],"flags":{"core":{"sourceId":"Item.KBoef00TNP73lDg0"}},"_stats":{"systemId":"fvtt-hero-system-6","systemVersion":"10.0.4","coreVersion":"10.291","createdTime":1671911635138,"modifiedTime":1674951159536,"lastModifiedBy":"PNdow54uXjPLt2Zr"},"folder":null,"sort":0,"ownership":{"default":0,"PNdow54uXjPLt2Zr":3},"_id":"znoFgVzNQOCTGUBl"}

View File

@ -79,7 +79,7 @@
.window-app.sheet .window-content {
margin: 0;
padding: 0;
color: rgba(224, 208, 197, 0.9);
/*color: rgba(224, 208, 197, 0.9);*/
}
input {
background: rgba(228, 240, 240, 0.75);
@ -259,6 +259,10 @@ table { border: 1px solid #7a7971;}
object-position: 50% 0;
}
form .form-group label {
color: rgba(66, 66, 64, 0.95);
}
.button-img {
vertical-align: baseline;
width: 8%;
@ -571,8 +575,8 @@ ul, li {
.list-item {
margin: 0.125rem;
box-shadow: inset 0px 0px 1px #00000096;
border-radius: 0.25rem;
/*box-shadow: inset 0px 0px 1px #00000096;*/
/*border-radius: 0.25rem;*/
padding: 0.125rem;
flex: 1 1 5rem;
display: flex !important;
@ -635,17 +639,6 @@ ul, li {
font-weight: bold;
flex-grow: 0;
}
.secondaire-label,
.arme-label,
.generic-label,
.competence-label,
.devotion-label,
.sort-label,
.technique-label,
.ability-label,
.arme-label,
.armure-label,
.equipement-label,
.description-label {
flex-grow: 2;
margin-left: 4px;
@ -1323,15 +1316,15 @@ Focus FOC: #ff0084
max-width: 128px;
justify-content: flex-start;
}
.ability-item {
.charac-item {
flex-grow: 1;
justify-content: flex-start;
margin: 2px;
}
.ability-block {
.charac-block {
min-width: 160px;
}
.ability-margin {
.charac-margin {
margin-left: 4px;
margin-top: 5px;
}
@ -1339,11 +1332,11 @@ Focus FOC: #ff0084
margin-left: 4px;
margin-top: 3px;
}
.item-ability-roll {
.item-charac-roll {
max-height: 42px;
min-height: 36px;
}
.item-ability-roll select, .item-ability-roll input {
.item-charac-roll select, .item-ability-roll input {
margin-top: 4px;
margin-right: 2px;
}
@ -1430,6 +1423,12 @@ Focus FOC: #ff0084
.item-control-end {
align-self: flex-end;
}
.margin-item-list {
margin-top: 4px;
}
.margin-image-right {
margin-right: 4px;
}
.alternate-list {
margin-top: 4px;
flex-wrap: nowrap;

View File

@ -23,31 +23,13 @@
"packs": [
{
"type": "Item",
"label": "Armors",
"name": "armor",
"path": "packs/armor.db",
"system": "fvtt-hero-system-6",
"private": false,
"flags": {}
},
{
"type": "Item",
"label": "Equipments",
"label": "Equipment",
"name": "equipment",
"path": "packs/equipment.db",
"system": "fvtt-hero-system-6",
"private": false,
"flags": {}
},
{
"type": "Item",
"label": "Shields",
"name": "shields",
"path": "packs/shields.db",
"system": "fvtt-hero-system-6",
"private": false,
"flags": {}
},
{
"type": "Item",
"label": "Weapons",
@ -59,18 +41,45 @@
},
{
"type": "Item",
"label": "Currency",
"name": "currency",
"path": "packs/currency.db",
"label": "Skills",
"name": "skills",
"path": "packs/skills.db",
"system": "fvtt-hero-system-6",
"private": false,
"flags": {}
},
{
"type": "Item",
"label": "Skills",
"name": "skills",
"path": "packs/skills.db",
"label": "Powers",
"name": "powers",
"path": "packs/powers.db",
"system": "fvtt-hero-system-6",
"private": false,
"flags": {}
},
{
"type": "Item",
"label": "Complications",
"name": "complications",
"path": "packs/complications.db",
"system": "fvtt-hero-system-6",
"private": false,
"flags": {}
},
{
"type": "Item",
"label": "Perks",
"name": "perks",
"path": "packs/perks.db",
"system": "fvtt-hero-system-6",
"private": false,
"flags": {}
},
{
"type": "Item",
"label": "Talents",
"name": "talents",
"path": "packs/talents.db",
"system": "fvtt-hero-system-6",
"private": false,
"flags": {}
@ -82,7 +91,7 @@
"styles": [
"styles/simple.css"
],
"version": "10.0.2",
"version": "10.0.9",
"compatibility": {
"minimum": "10",
"verified": "10",
@ -90,7 +99,7 @@
},
"title": "Hero System v6 for FoundrtVTT (Official)",
"manifest": "https://www.uberwald.me/gitea/uberwald/fvtt-hero-system-6/raw/branch/main/system.json",
"download": "https://www.uberwald.me/gitea/uberwald/fvtt-hero-system-6/archive/fvtt-hero-system-6-v10.0.2.zip",
"download": "https://www.uberwald.me/gitea/uberwald/fvtt-hero-system-6/archive/fvtt-hero-system-6-v10.0.9.zip",
"url": "https://www.uberwald.me/gitea/uberwald/",
"background": "images/ui/hro6_welcome_page.webp",
"id": "fvtt-hero-system-6"

View File

@ -23,34 +23,40 @@
"characteristics": {
"str": {
"label": "Strength",
"value": 10,
"value": 0,
"base": 10,
"category": "main",
"realcost": 0,
"activecost": 0
},
"dex": {
"label": "Dexterity",
"value": 10,
"base": 10
"value": 0,
"base": 10,
"category": "main"
},
"con": {
"label": "Constitution",
"value": 10,
"category": "main",
"value": 0,
"base": 10
},
"int": {
"label": "Intelligence",
"value": 10,
"base": 10
"category": "main",
"value": 0,
"base": 10
},
"ego": {
"label": "Ego",
"value": 10,
"category": "main",
"value": 0,
"base": 10
},
"pre": {
"label": "Presence",
"value": 10,
"category": "main",
"value": 0,
"base": 10
},
"ocv": {
@ -170,17 +176,16 @@
"value": 0,
"base": 0
}
}
}
},
"core": {
}
"core": {}
},
"character": {
"templates": [
"biodata",
"core"
]
"biodata",
"characteristics"
],
"subactors": []
}
},
"Item": {
@ -192,11 +197,7 @@
"advantage",
"limitation",
"complication",
"equipment",
"attack",
"defense",
"maneuver",
"movement"
"equipment"
],
"templates": {
"common": {
@ -212,13 +213,17 @@
},
"power": {
"displayname": "",
"modifiers": [],
"petype": "",
"typemodifier": "",
"senseaffecting": false,
"modifiers": [],
"levels": 0,
"quantity": 0,
"range": "",
"damage": "",
"endurance": 0,
"endurance": 0,
"hasroll": false,
"roll": 0,
"items": {}
}
},
@ -236,12 +241,11 @@
"skilltype": "agility",
"characteristic": "",
"base": "",
"skillroll": 0,
"levelscost": 0,
"levels": 0,
"templates": [
"common"
],
"plusonecost": 0
]
},
"power": {
"templates": [
@ -309,12 +313,14 @@
"velValue": 0
},
"perk": {
"hasroll": false,
"roll": 0,
"templates": [
"common"
]
},
"talent": {
"hasroll": false,
"roll": 0,
"templates": [
"common"

View File

@ -3,74 +3,23 @@
{{!-- Sheet Header --}}
<header class="sheet-header">
<div class="header-fields">
<h1 class="charname margin-right"><input name="name" type="text" value="{{name}}" placeholder="Name" /></h1>
<div class="flexrow">
<img class="profile-img" src="{{img}}" data-edit="img" title="{{name}}" />
<img class="profile-img margin-image-right" src="{{img}}" data-edit="img" title="{{name}}" />
<div class="flexcol">
<h1 class="charname margin-image-right"><input name="name" type="text" value="{{name}}" placeholder="Name" /></h1>
<div class="flexrow">
<div class="ability-item">
<div class="charac-item">
<ul>
{{#each data.abilities as |ability key|}}
{{#if (eq ability.col 1)}}
{{> systems/fvtt-crucible-rpg/templates/partial-actor-ability-block.html ability=ability key=key}}
{{/if}}
{{#each characteristics as |charac key|}}
{{#if (eq charac.category "main")}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-actor-characteristic-block.hbs charac=charac key=key}}
{{/if}}
{{/each}}
</ul>
<li class="item flexrow list-item" data-attr-key="class">
<span class="ability-label " name="class">
<h4 class="ability-text-white ability-margin">Class</h4>
</span>
<select class="competence-base flexrow" type="text" name="system.biodata.class" value="{{data.biodata.class}}" data-dtype="String">
{{#select data.biodata.class}}
<option value="chaplain">Chaplain</option>
<option value="magus">Magus</option>
<option value="martial">Martial</option>
<option value="skalawag">Skalawag</option>
<option value="warden">Warden</option>
{{/select}}
</select>
</li>
</ul>
</div>
<div class="ability-item">
<ul>
{{#each data.abilities as |ability key|}}
{{#if (eq ability.col 2)}}
{{> systems/fvtt-crucible-rpg/templates/partial-actor-ability-block.html ability=ability key=key}}
{{/if}}
{{/each}}
{{#if equippedArmor}}
<li class="item flexrow list-item" data-attr-key="class">
<img class="sheet-competence-img" src="{{equippedArmor.img}}" />
<span class="ability-label " name="class">
<h4 class="ability-text-white ability-margin"><a class="roll-armor-die ability-margin">{{equippedArmor.name}}</a></h4>
</span>
</li>
{{/if}}
{{#if equippedShield}}
<li class="item flexrow list-item" data-attr-key="class">
<img class="sheet-competence-img" src="{{equippedShield.img}}" />
<span class="ability-label " name="equippedShield">
<h4 class="ability-text-white ability-margin"><a class="roll-shield-die ability-margin">{{equippedShield.name}}</a></h4>
</span>
</li>
{{/if}}
<li class="item flexrow list-item" data-attr-key="class">
<img class="sheet-competence-img" src="systems/fvtt-crucible-rpg/images/icons/feats/Marksman (Ballistic).webp" />
<span class="ability-label " name="rollTarget">
<h4 class="ability-text-white ability-margin"><a class="roll-target-die ability-margin">Target Roll</a></h4>
</span>
</li>
</ul>
</div>
<div class="ability-item status-block">
{{> systems/fvtt-crucible-rpg/templates/partial-actor-status.html}}
<div class="charac-item">
</div>
</div>
@ -81,9 +30,10 @@
{{!-- Sheet Tab Navigation --}}
<nav class="sheet-tabs tabs" data-group="primary">
<a class="item" data-tab="skills">Skills</a>
<a class="item" data-tab="main">Main</a>
<a class="item" data-tab="combat">Combat</a>
<a class="item" data-tab="lore">Lore</a>
<a class="item" data-tab="skills">Skills</a>
<a class="item" data-tab="powers">Powers/Perks</a>
<a class="item" data-tab="equipment">Equipment</a>
<a class="item" data-tab="biodata">Biography</a>
</nav>
@ -91,39 +41,9 @@
{{!-- Sheet Body --}}
<section class="sheet-body">
{{!-- Skills Tab --}}
<div class="tab skills" data-group="primary" data-tab="skills">
{{!-- Main Tab --}}
<div class="tab main" data-group="primary" data-tab="main">
<ul class="stat-list alternate-list item-list">
<li class="item flexrow list-item items-title-bg">
<span class="item-name-label-header">
<h3><label class="items-title-text">Skills</label></h3>
</span>
<span class="item-field-label-short">
<label class="short-label">Ability</label>
</span>
<span class="item-field-label-short">
<label class="short-label">Dice</label>
</span>
<span class="item-field-label-long">
<label class="short-label">Background</label>
</span>
</li>
{{#each skills as |skill key|}}
<li class="item stat flexrow list-item list-item-shadow" data-item-id="{{skill._id}}">
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img"
src="{{skill.img}}" /></a>
<span class="item-name-label"><a class="roll-skill">{{skill.name}}</a></span>
<span class="item-field-label-short">{{upper skill.system.ability}}</span>
<span class="item-field-label-short">{{skill.system.skilldice}}</span>
<span class="item-field-label-long">&nbsp;-&nbsp;</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ul>
</div>
{{!-- Combat Tab --}}
@ -221,48 +141,68 @@
</div>
</div>
{{!-- Skills Tab --}}
<div class="tab skills" data-group="primary" data-tab="skills">
{{!-- Lore Tab --}}
<div class="tab lore" data-group="primary" data-tab="lore">
<ul class="stat-list alternate-list item-list">
<li class="item flexrow list-item items-title-bg">
<span class="item-name-label-header">
<h3><label class="items-title-text">Skills</label></h3>
</span>
<span class="item-field-label-short">
<label class="short-label">Charac.</label>
</span>
<span class="item-field-label-short">
<label class="short-label">Roll</label>
</span>
</li>
{{#each skills as |skill key|}}
<li class="item stat flexrow list-item list-item-shadow" data-item-id="{{skill._id}}">
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img"
src="{{skill.img}}" /></a>
<span class="item-name-label"><a class="roll-skill">{{skill.name}}</a></span>
<span class="item-field-label-short">{{upper skill.system.characteristic}}</span>
<span class="item-field-label-short">{{skill.system.base}}</span>
<span class="item-field-label-long">&nbsp;-&nbsp;</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ul>
</div>
<div class="flexcol">
{{!-- Skills Tab --}}
<div class="tab powers" data-group="primary" data-tab="powers">
<ul class="stat-list alternate-list">
<li class="item flexrow list-item items-title-bg">
<span class="item-name-label-header">
<h3><label class="items-title-text">Lore</label></h3>
</span>
<span class="item-field-label-medium">
<label class="short-label">Lore</label>
</span>
<span class="item-field-label-short">
<label class="short-label">Circle</label>
</span>
<span class="item-field-label-medium">
<label class="short-label">Range</label>
</span>
</li>
{{#each spells as |spell key|}}
<li class="item stat flexrow list-item list-item-shadow" data-item-id="{{spell._id}}">
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img"
src="{{spell.img}}" /></a>
<span class="item-name-label">
<a class="power-roll">{{spell.name}}</a>
</span>
<span class="item-field-label-medium">{{upperFirst spell.system.lore}}</span>
<span class="item-field-label-short">{{upperFirst spell.system.circle}}</span>
<span class="item-field-label-medium">{{upperFirst spell.system.range}}</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ul>
</div>
<ul class="stat-list alternate-list item-list">
<li class="item flexrow list-item items-title-bg">
<span class="item-name-label-header">
<h3><label class="items-title-text">Powers</label></h3>
</span>
<span class="item-field-label-short">
<label class="short-label">Charac</label>
</span>
<span class="item-field-label-short">
<label class="short-label">Roll</label>
</span>
</li>
{{#each powers as |power key|}}
<li class="item stat flexrow list-item list-item-shadow" data-item-id="{{power._id}}">
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img"
src="{{power.img}}" /></a>
<span class="item-name-label"><a class="roll-skill">{{power.name}}</a></span>
<span class="item-field-label-short">{{upper power.system.ability}}</span>
<span class="item-field-label-short">{{power.system.skilldice}}</span>
<span class="item-field-label-long">&nbsp;-&nbsp;</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ul>
</div>
{{!-- Equipement Tab --}}

View File

@ -6,162 +6,32 @@
<h1 class="dialog-roll-title roll-dialog-header">{{title}}</h1>
</header>
<div class="flexcol">
{{#if sizeDice}}
<div class="flexrow">
<span class="roll-dialog-label">Size basic dices : </span>
<span class="roll-dialog-label">{{sizeDice.nb}}{{sizeDice.dice}}</span>
</div>
<div class="flexrow">
<span class="roll-dialog-label">Distance bonus dice(s) : </span>
<select class="status-small-label color-class-common" type="text" id="distanceBonusDice" value="{{distanceBonusDice}}" data-dtype="String" >
{{#select distanceBonusDice}}
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
{{/select}}
</select>
</div>
{{/if}}
{{#if hasCover}}
<div class="flexrow">
<span class="roll-dialog-label">Cover : </span>
<select class="status-small-label color-class-common" type="text" id="hasCover" value="{{hasCover}}" data-dtype="String" >
{{#select hasCover}}
<option value="none">None</option>
<option value="cover50">Cover at 50% (+1 dice)</option>
{{/select}}
</select>
</div>
{{/if}}
{{#if situational}}
<div class="flexrow">
<span class="roll-dialog-label">Situational : </span>
<select class="status-small-label color-class-common" type="text" id="situational" value="{{situational}}" data-dtype="String" >
{{#select situational}}
<option value="none">None</option>
<option value="dodge">Dodge (+1 dice)</option>
<option value="prone">Prone (+1 dice)</option>
<option value="moving">Moving (+1 dice)</option>
<option value="Engaged">Engaged (+1 dice)</option>
{{/select}}
</select>
</div>
{{/if}}
{{#if save}}
<div class="flexrow">
<span class="roll-dialog-label">{{save.label}} : </span>
<span class="roll-dialog-label">{{save.value}}d6</span>
</div>
{{/if}}
{{#if ability}}
<div class="flexrow">
<span class="roll-dialog-label">Ability : </span>
<span class="roll-dialog-label">{{ability.value}}d6</span>
</div>
{{/if}}
{{#if weapon}}
<div class="flexrow">
<span class="roll-dialog-label">Weapon : </span>
<span class="roll-dialog-label">{{weapon.name}}</span>
</div>
{{/if}}
{{#if shield}}
<div class="flexrow">
<span class="roll-dialog-label">Use shield ? : </span>
<span class="roll-dialog-label"><input type="checkbox" id="useshield" name="useshield" {{checked useshield}}/></span>
</div>
<div class="flexrow">
<span class="roll-dialog-label">{{shield.name}} : </span>
<span class="roll-dialog-label">{{shield.data.shielddie}}</span>
</div>
{{/if}}
{{#if skill}}
<div class="flexrow">
<span class="roll-dialog-label">Skill : </span>
<span class="roll-dialog-label">{{skill.name}} - {{skill.data.skilldice}}</span>
</div>
<div class="flexrow">
<span class="roll-dialog-label">Feature die or SL+2? : </span>
<span class="roll-dialog-label">{{#if skill.data.isfeatdie}} Yes {{else}} No {{/if}}</span>
</div>
{{/if}}
{{#if noAdvantage}}
<div>
<span class="roll-dialog-label">No advantage due to condition : {{noAdvantage.name}}</span>
</div>
{{else}}
<div class="flexrow">
<span class="roll-dialog-label">Advantage : </span>
<select class="status-small-label color-class-common" type="text" id="advantage" value="{{advantage}}" data-dtype="String" >
{{#select advantage}}
<option value="none">None</option>
<option value="advantage1">1 Advantage</option>
<option value="advantage2">2 Advantages</option>
{{/select}}
</select>
</div>
{{/if}}
<div class="flexrow">
<span class="roll-dialog-label">Disadvantage : </span>
<select class="status-small-label color-class-common" type="text" id="disadvantage" value="{{disadvantage}}" data-dtype="String" >
{{#select disadvantage}}
<option value="none">None</option>
<option value="disadvantage1">1 Disadvantage</option>
<option value="disadvantage2">2 Disadvantages</option>
{{/select}}
</select>
</div>
<div class="flexrow">
<span class="roll-dialog-label">Roll with Advantage/Disadvantage : </span>
<select class="status-small-label color-class-common" type="text" id="rollAdvantage" value="{{rollAdvantage}}" data-dtype="String" >
{{#select rollAdvantage}}
<option value="none">None</option>
<option value="roll-advantage">Roll with Advantage</option>
<option value="roll-disadvantage">Roll with Disadvantage</option>
{{/select}}
</select>
</div>
{{#if forceAdvantage}}
<div class="flexrow">
<span class="roll-dialog-label">1 Advantage from condition : {{forceAdvantage.name}}
{{#if advantageFromTarget}} (Provided by targetted actor) {{/if}}
</span>
</div>
{{/if}}
{{#if forceDisadvantage}}
<div class="flexrow">
<span class="roll-dialog-label">1 Disadvantage from condition : {{forceDisadvantage.name}} </span>
</div>
{{/if}}
{{#if forceRollAdvantage}}
<div class="flexrow">
<span class="roll-dialog-label">Roll Advantage from condition : {{forceRollAdvantage.name}} </span>
</div>
{{/if}}
{{#if forceRollDisadvantage}}
<div class="flexrow">
<span class="roll-dialog-label">Roll Disadvantage from condition : {{forceRollDisadvantage.name}} </span>
</div>
{{/if}}
<div class="flexcol">
{{#if charac}}
<div class="flexrow">
<span class="item-field-label-long margin-item-list">Characteristic : </span>
<span class="item-field-label-medium margin-item-list">{{charac.roll}}-</span>
</div>
{{/if}}
<div class="flexrow">
<span class="item-field-label-long margin-item-list">Bonus/Malus : </span>
<select class="item-field-label-medium" type="text" id="bonusMalus" value="{{bonusMalus}}" data-dtype="Number" >
{{#select bonusMalus}}
<option value="-4">-4</option>
<option value="-3">-3</option>
<option value="-2">-2</option>
<option value="-1">-1</option>
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
{{/select}}
</select>
</div>
</div>
</form>

View File

@ -18,130 +18,17 @@
<div>
<ul>
{{#if (eq rollOrder 1)}}
<li><strong>Roll with {{rollType}} - Roll 1</strong></li>
{{/if}}
{{#if (eq rollOrder 2)}}
<li><strong>Roll with {{rollType}} - Roll 2</strong></li>
{{/if}}
{{#if (eq rollOrder 3)}}
<li><strong>Roll with {{rollType}} - Final result !</strong></li>
{{/if}}
<li>Target Roll : {{target}}-
</li>
{{#if save}}
<li>Save : {{save.label}} - {{save.value}}d6
({{#each roll.terms.0.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
{{#if charac}}
<li>Charac : {{charac.label}}
</li>
{{/if}}
<li>Bonus/Malus : {{bonusMalus}}
</li>
{{#if sizeDice}}
<li>Size/Range/Cover/Situational dices
({{#each roll.terms.0.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{#if ability}}
<li>Ability : {{ability.label}} - {{ability.value}}d6
({{#each roll.terms.0.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{#if skill}}
<li>Skill : {{skill.name}} - {{skill.data.skilldice}}
{{#if featSL}}
- with Feat SL +{{featSL}}
{{/if}}
&nbsp;({{#each roll.terms.2.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{#if noAdvantage}}
<li>No advantage due to condition : {{noAdvantage.name}}</li>
{{else}}
{{#if (or (eq advantage "advantage1") forceAdvantage)}}
<li>1 Advantage Die !
&nbsp;({{#each roll.terms.8.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{#if (eq advantage "advantage2") }}
<li>2 Advantage Dice !
&nbsp;({{#each roll.terms.8.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{/if}}
{{#if (or (eq disadvantage "disadvantage1") forceDisadvantage)}}
<li>1 Disadvantage Die !
&nbsp;({{#each roll.terms.10.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{#if (eq disadvantage "disadvantage2")}}
<li>2 Disadvantage Dice !
&nbsp;({{#each roll.terms.10.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{#if (eq rollAdvantage "roll-advantage")}}
<li>Roll with Advantage !</li>
{{/if}}
{{#if (eq rollAdvantage "roll-disadvantage")}}
<li>Roll with Disadvantage !</li>
{{/if}}
{{#if skillArmorPenalty}}
<li>Armor Penalty : {{skillArmorPenalty}} Disadvantage Dice
&nbsp;({{#each roll.terms.12.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{#if hasBonusDice}}
<li>Skill bonus dice : {{hasBonusDice}}
&nbsp;({{#each roll.terms.6.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{#if complexSkillDisadvantage}}
<li>Roll with Disadvantage because of Complex Skill at SL 0 !</li>
{{/if}}
{{#if hasFeatDie}}
<li>Feat Die : d10
&nbsp;({{#each roll.terms.4.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
{{#if useshield}}
<li>Shield : {{shield.name}} - {{shield.data.shielddie}}
({{#each roll.terms.14.results as |die idx|}}
{{die.result}}&nbsp;
{{/each}})
</li>
{{/if}}
<li><strong>Number of successes</strong> {{nbSuccess}} </li>
<!-- <button class="chat-card-button reroll-level-remaining" data-roll-id="{{rollId}}">Reroll</button> -->
<li><strong>Result : {{result}}</strong> ({{#if isSuccess}}Success!!{{else}}Failure!{{/if}})</li>
</ul>
</div>

View File

@ -13,11 +13,13 @@
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-description.hbs}}
<li class="flexrow"><label class="generic-label">Cost</label>
<input type="text" class="" name="system.cost" value="{{system.cost}}" data-dtype="Number"/>
</li>
<div class="tab details" data-group="primary" data-tab="details">
</div>
<ul>
<li class="flexrow"><label class="generic-label">Cost</label>
<input type="text" class="" name="system.cost" value="{{system.cost}}" data-dtype="Number"/>
</li>
</ul>
</div>
</section>
</form>

View File

@ -13,17 +13,13 @@
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-description.hbs}}
<li class="flexrow"><label class="item-field-label-long">Has Roll ?</label>
<label class="item-field-label-medium"><input type="checkbox" name="system.hasroll" {{checked system.hasroll}}/></label>
</li>
<li class="flexrow"><label class="item-field-label-long">Roll</label>
<input type="text" class="item-field-label-medium" name="system.roll" value="{{system.roll}}" data-dtype="Number"/>
</li>
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
<div class="tab details" data-group="primary" data-tab="details">
</div>
<ul>
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-hasroll.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
</ul>
</div>
</section>
</form>

View File

@ -11,11 +11,13 @@
{{!-- Sheet Body --}}
<section class="sheet-body">
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-description.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
<div class="tab details" data-group="primary" data-tab="details">
</div>
<ul>
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-description.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
</ul>
</div>
</section>
</form>

View File

@ -13,13 +13,13 @@
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-description.hbs}}
<li class="flexrow"><label class="item-field-label-long">Roll</label>
<input type="text" class="item-field-label-medium" name="system.roll" value="{{system.roll}}" data-dtype="Number"/>
</li>
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
<div class="tab details" data-group="primary" data-tab="details">
</div>
<ul>
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-hasroll.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
</ul>
</div>
</section>
</form>

View File

@ -13,11 +13,15 @@
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-description.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-power-equipment-cost.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
<div class="tab details" data-group="primary" data-tab="details">
</div>
<ul>
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-hasroll.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-power-equipment-cost.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
</ul>
</div>
</section>
</form>

View File

@ -42,10 +42,16 @@
{{/if}}
{{/if}}
<li class="flexrow"><label class="item-field-label-long">Skill Roll points</label>
<input type="text" class="item-field-label-medium" name="system.skillroll" value="{{system.skillroll}}" data-dtype="Number"/>
<li class="flexrow"><label class="item-field-label-long">Levels</label>
<input type="text" class="item-field-label-medium" name="system.levels" value="{{system.levels}}" data-dtype="Number"/>
</li>
{{#if (ne system.skilltype "combat")}}
<li class="flexrow"><label class="item-field-label-long">Levels Cost</label>
<input type="text" class="item-field-label-medium" name="system.levelscost" value="{{system.levelscost}}" data-dtype="Number"/>
</li>
{{/if}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
</ul>

View File

@ -13,9 +13,15 @@
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-description.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
<div class="tab details" data-group="primary" data-tab="details">
</div>
<ul>
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-hasroll.hbs}}
{{> systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs}}
</ul>
</div>
</section>
</form>

View File

@ -1,19 +0,0 @@
<li class="item flexrow list-item item-ability-roll" data-attr-key="{{key}}">
<span class="ability-label ability-margin" name="{{key}}">
<h4 class="ability-text-white ability-margin"><a class="roll-ability ability-margin" data-ability-key="{{key}}">{{ability.label}}</a></h4>
</span>
<select class="status-small-label color-class-common" type="text" name="system.abilities.{{key}}.value" value="{{ability.value}}"
data-dtype="Number" {{#unless @root.editScore}}disabled{{/unless}}>
{{#select ability.value}}
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
{{/select}}
</select>
</li>

View File

@ -0,0 +1,8 @@
<li class="item flexrow list-item" data-attr-key="{{key}}">
<span class="item-field-label-medium" name="{{key}}">
<h4 class="item-field-label-medium margin-item-list"><a class="roll-charac" data-charac-key="{{key}}">{{charac.label}}</a></h4>
</span>
<input type="text" class="item-field-label-short" name="system.characteristics.{{key}}.value" value="{{charac.value}}" data-dtype="Number"/>
<h4 class="item-field-label-short margin-item-list">{{charac.total}}</h4>
<h4 class="item-field-label-short margin-item-list"><a class="roll-charac" data-charac-key="{{key}}">{{charac.roll}}-</a></h4>
</li>

View File

@ -1,4 +1,8 @@
<div class="tab description" data-group="primary" data-tab="description">
<div class="flexrow">
<label class="item-field-label-medium">Display name</label>
<input type="text" class="" name="system.displayname" value="{{system.displayname}}" data-dtype="string"/>
</div>
<div>
<label class="generic-label">Description</label>
<div class="medium-editor item-text-long-line">

View File

@ -0,0 +1,9 @@
<li class="flexrow"><label class="item-field-label-long">Has Roll ?</label>
<label class="item-field-label-medium"><input type="checkbox" name="system.hasroll" {{checked system.hasroll}}/></label>
</li>
{{#if system.hasroll}}
<li class="flexrow"><label class="item-field-label-long">Roll</label>
<input type="text" class="item-field-label-medium" name="system.roll" value="{{system.roll}}" data-dtype="Number"/>
</li>
{{/if}}

View File

@ -8,6 +8,20 @@
</select>
</li>
<li class="flexrow"><label class="item-field-label-long">Type Modifier</label>
<select class="item-field-label-long" type="text" name="system.typemodifier" value="{{system.typemodifier}}" data-dtype="String">
{{#select system.typemodifier}}
{{#each config.powerTypeModifiers as |name key|}}
<option value="{{key}}">{{name}}</option>
{{/each}}
{{/select}}
</select>
</li>
<li class="flexrow"><label class="item-field-label-long">Is sense affecting ?</label>
<label class="item-field-label-medium"><input type="checkbox" name="system.senseaffecting" {{checked system.senseaffecting}}/></label>
</li>
<li class="flexrow"><label class="item-field-label-long">Range</label>
<input type="text" class="item-field-label-medium" name="system.range" value="{{system.range}}" data-dtype="String"/>
</li>