Compare commits
11 Commits
foundryvtt
...
v10
Author | SHA1 | Date | |
---|---|---|---|
15e249e41e | |||
a3b6908a17 | |||
6e5bb5da32 | |||
29ff86f4bd | |||
aa243a7b80 | |||
c061b67bb3 | |||
c6c8622552 | |||
f6104e533c | |||
23b6a41eac | |||
f0c5e7b95d | |||
4b9af6a383 |
@ -10,7 +10,7 @@ export class SoSActorSheet extends ActorSheet {
|
||||
|
||||
/** @override */
|
||||
static get defaultOptions() {
|
||||
return mergeObject(super.defaultOptions, {
|
||||
return foundry.utils.mergeObject(super.defaultOptions, {
|
||||
classes: ["sos", "sheet", "actor"],
|
||||
template: "systems/foundryvtt-shadows-over-sol/templates/actor-sheet.html",
|
||||
width: 640,
|
||||
@ -22,7 +22,7 @@ export class SoSActorSheet extends ActorSheet {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getData() {
|
||||
async getData() {
|
||||
const objectData = this.object
|
||||
let formData = {
|
||||
title: this.title,
|
||||
@ -34,6 +34,9 @@ export class SoSActorSheet extends ActorSheet {
|
||||
cssClass: this.isEditable ? "editable" : "locked",
|
||||
data: foundry.utils.deepClone(this.object.system),
|
||||
effects: this.object.effects.map(e => foundry.utils.deepClone(e.data)),
|
||||
history: await TextEditor.enrichHTML(this.object.system.history, {async: true}),
|
||||
notes: await TextEditor.enrichHTML(this.object.system.notes, {async: true}),
|
||||
gmnotes: await TextEditor.enrichHTML(this.object.system.gmnotes, {async: true}),
|
||||
limited: this.object.limited,
|
||||
options: this.options,
|
||||
owner: this.document.isOwner
|
||||
@ -61,12 +64,12 @@ export class SoSActorSheet extends ActorSheet {
|
||||
formData.gearsRoot = formData.gears.filter(item => item.system.containerid == "");
|
||||
for ( let container of formData.gearsRoot) {
|
||||
if ( container.type == 'container') {
|
||||
container.data.contains = []
|
||||
container.data.containerEnc = 0;
|
||||
container.system.contains = []
|
||||
container.system.containerEnc = 0;
|
||||
for (let gear of formData.gears) {
|
||||
console.log("GEAR", gear, container)
|
||||
if ( gear.system.containerid == container.id) {
|
||||
container.data.contains.push( gear )
|
||||
container.system.contains.push( gear )
|
||||
if ( !gear.system.neg && !gear.system.software ) {
|
||||
container.system.containerEnc += (gear.system.big > 0) ? gear.system.big : 1;
|
||||
}
|
||||
@ -78,7 +81,7 @@ export class SoSActorSheet extends ActorSheet {
|
||||
formData.weapons = this.actor.items.filter( item => item.type == 'weapon');
|
||||
formData.armors = this.actor.items.filter( item => item.type == 'armor');
|
||||
formData.totalEncumbrance = SoSUtility.computeEncumbrance(this.actor.items);
|
||||
formData.wounds = duplicate(this.actor.system.wounds);
|
||||
formData.wounds = foundry.utils.duplicate(this.actor.system.wounds);
|
||||
formData.isGM = game.user.isGM;
|
||||
formData.currentWounds = this.actor.computeCurrentWounds();
|
||||
formData.totalWounds = this.actor.system.scores.wound.value;
|
||||
|
@ -61,24 +61,24 @@ export class SoSActor extends Actor {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
checkDeck() {
|
||||
if ( !this.cardDeck && this.hasPlayerOwner ) {
|
||||
this.cardDeck = new SoSCardDeck();
|
||||
this.cardDeck.initCardDeck( this, this.system.internals.deck );
|
||||
if ( !this.system.cardDeck && this.hasPlayerOwner ) {
|
||||
this.system.cardDeck = new SoSCardDeck();
|
||||
this.system.cardDeck.initCardDeck( this, this.system.internals.deck );
|
||||
}
|
||||
if ( !this.hasPlayerOwner ) {
|
||||
this.cardDeck = game.system.sos.gmDeck.GMdeck;
|
||||
console.log("DECK : ", this.cardDeck);
|
||||
this.system.cardDeck = game.system.sos.gmDeck.GMdeck;
|
||||
console.log("DECK : ", this.system.cardDeck);
|
||||
}
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getDeckSize() {
|
||||
return this.cardDeck.getDeckSize();
|
||||
return this.system.cardDeck.getDeckSize();
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getEdgesCard( ) {
|
||||
let edgesCard = duplicate(this.cardDeck.data.cardEdge);
|
||||
let edgesCard = foundry.utils.duplicate(this.system.cardDeck.data.cardEdge);
|
||||
for (let edge of edgesCard) {
|
||||
edge.path = `systems/foundryvtt-shadows-over-sol/img/cards/${edge.cardName}.webp`
|
||||
}
|
||||
@ -86,36 +86,36 @@ export class SoSActor extends Actor {
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
resetDeckFull( ) {
|
||||
this.cardDeck.shuffleDeck();
|
||||
this.cardDeck.drawEdge( this.system.scores.edge.value );
|
||||
this.system.cardDeck.shuffleDeck();
|
||||
this.system.cardDeck.drawEdge( this.system.scores.edge.value );
|
||||
this.saveDeck();
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
drawNewEdge( ) {
|
||||
this.cardDeck.drawEdge( 1 );
|
||||
this.system.cardDeck.drawEdge( 1 );
|
||||
this.saveDeck();
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
discardEdge( cardName ) {
|
||||
this.cardDeck.discardEdge( cardName );
|
||||
this.system.cardDeck.discardEdge( cardName );
|
||||
this.saveDeck();
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
resetDeck( ) {
|
||||
this.cardDeck.resetDeck();
|
||||
this.system.cardDeck.resetDeck();
|
||||
this.saveDeck();
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
saveDeck( ) {
|
||||
let deck = { deck: duplicate(this.cardDeck.data.deck),
|
||||
discard: duplicate(this.cardDeck.data.discard),
|
||||
cardEdge: duplicate(this.cardDeck.data.cardEdge)
|
||||
let deck = { deck: foundry.utils.duplicate(this.system.cardDeck.data.deck),
|
||||
discard: foundry.utils.duplicate(this.system.cardDeck.data.discard),
|
||||
cardEdge: foundry.utils.duplicate(this.system.cardDeck.data.cardEdge)
|
||||
}
|
||||
if ( this.hasPlayerOwner ) {
|
||||
this.update( { 'data.internals.deck': deck });
|
||||
this.update( { 'system.internals.deck': deck });
|
||||
} else {
|
||||
game.settings.set("foundryvtt-shadows-over-sol", "gmDeck", deck );
|
||||
}
|
||||
@ -213,7 +213,7 @@ export class SoSActor extends Actor {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async updateWound(woundName, value) {
|
||||
let wounds = duplicate(this.system.wounds)
|
||||
let wounds = foundry.utils.duplicate(this.system.wounds)
|
||||
wounds[woundName] = value;
|
||||
await this.update( { 'system.wounds': wounds } );
|
||||
}
|
||||
@ -246,13 +246,13 @@ export class SoSActor extends Actor {
|
||||
|
||||
let flipData = {
|
||||
mode: 'stat',
|
||||
stat: duplicate(this.system.stats[statKey]),
|
||||
stat: foundry.utils.duplicate(this.system.stats[statKey]),
|
||||
actor: this,
|
||||
modifierList: SoSUtility.fillRange(-10, +10),
|
||||
tnList: SoSUtility.fillRange(6, 20),
|
||||
consequencesList: duplicate( this.getApplicableConsequences() ),
|
||||
consequencesList: foundry.utils.duplicate( this.getApplicableConsequences() ),
|
||||
weaknessList: this.items.filter( item => item.type == 'weakness' ),
|
||||
wounds: duplicate( this.system.wounds),
|
||||
wounds: foundry.utils.duplicate( this.system.wounds),
|
||||
malusConsequence: 0,
|
||||
bonusConsequence: 0,
|
||||
woundMalus: 0
|
||||
@ -265,12 +265,12 @@ export class SoSActor extends Actor {
|
||||
async rollSkill( skill ) {
|
||||
let flipData = {
|
||||
mode: 'skill',
|
||||
statList: duplicate(this.system.stats),
|
||||
statList: foundry.utils.duplicate(this.system.stats),
|
||||
selectedStat: 'strength',
|
||||
consequencesList: duplicate( this.getApplicableConsequences() ),
|
||||
wounds: duplicate( this.system.wounds),
|
||||
consequencesList: foundry.utils.duplicate( this.getApplicableConsequences() ),
|
||||
wounds: foundry.utils.duplicate( this.system.wounds),
|
||||
skillExperienceList: this.getSkillExperience( skill.name),
|
||||
skill: duplicate(skill),
|
||||
skill: foundry.utils.duplicate(skill),
|
||||
actor: this,
|
||||
modifierList: SoSUtility.fillRange(-10, +10),
|
||||
tnList: SoSUtility.fillRange(6, 20),
|
||||
@ -301,14 +301,14 @@ export class SoSActor extends Actor {
|
||||
|
||||
let flipData = {
|
||||
mode: 'weapon',
|
||||
weapon: duplicate(weapon),
|
||||
statList: duplicate(this.system.stats),
|
||||
weapon: foundry.utils.duplicate(weapon),
|
||||
statList: foundry.utils.duplicate(this.system.stats),
|
||||
target: target,
|
||||
selectedStat: selectedStatName,
|
||||
consequencesList: duplicate( this.getApplicableConsequences() ),
|
||||
consequencesList: foundry.utils.duplicate( this.getApplicableConsequences() ),
|
||||
skillExperienceList: this.getSkillExperience( skill.name),
|
||||
wounds: duplicate( this.system.wounds),
|
||||
skill: duplicate(skill),
|
||||
wounds: foundry.utils.duplicate( this.system.wounds),
|
||||
skill: foundry.utils.duplicate(skill),
|
||||
actor: this,
|
||||
modifierList: SoSUtility.fillRange(-10, +10),
|
||||
tnList: SoSUtility.fillRange(6, 20),
|
||||
@ -349,14 +349,14 @@ export class SoSActor extends Actor {
|
||||
async applyConsequenceWound( severity, consequenceName) {
|
||||
if ( severity == 'none') return; // Nothing !
|
||||
|
||||
let wounds = duplicate(this.system.wounds);
|
||||
let wounds = foundry.utils.duplicate(this.system.wounds);
|
||||
if (severity == 'light' ) wounds.light += 1;
|
||||
if (severity == 'moderate' ) wounds.moderate += 1;
|
||||
if (severity == 'severe' ) wounds.severe += 1;
|
||||
if (severity == 'critical' ) wounds.critical += 1;
|
||||
|
||||
let sumWound = wounds.light + (wounds.moderate*2) + (wounds.severe*3) + (wounds.critical*4);
|
||||
let currentWounds = duplicate(this.system.scores.currentwounds);
|
||||
let currentWounds = foundry.utils.duplicate(this.system.scores.currentwounds);
|
||||
currentWounds.value = sumWound;
|
||||
await this.update( { 'data.scores.currentwounds': currentWounds, 'data.wounds': wounds } );
|
||||
|
||||
@ -388,10 +388,10 @@ export class SoSActor extends Actor {
|
||||
if ( alreadyInside.length >= container.system.container ) {
|
||||
ui.notifications.warn("Container is already full !");
|
||||
} else {
|
||||
await this.updateEmbeddedDocuments( "Item", [{ _id: object.id, 'system.containerid':containerId }]);
|
||||
setTimeout(function() { this.updateEmbeddedDocuments( "Item", [{ _id: object.id, 'system.containerid':containerId }])}, 800 )
|
||||
}
|
||||
} else if ( object && object.system.containerid) { // remove from container
|
||||
await this.updateEmbeddedDocuments( "Item", [{ _id: object.id, 'system.containerid':"" }]);
|
||||
setTimeout(function() { this.updateEmbeddedDocuments( "Item", [{ _id: object.id, 'system.containerid':"" }])}, 800 )
|
||||
}
|
||||
}
|
||||
|
||||
@ -403,7 +403,7 @@ export class SoSActor extends Actor {
|
||||
return;
|
||||
}
|
||||
|
||||
let wounds = duplicate(this.system.wounds);
|
||||
let wounds = foundry.utils.duplicate(this.system.wounds);
|
||||
for (let wound of flipData.woundsList ) {
|
||||
if (wound == 'L' ) wounds.light += 1;
|
||||
if (wound == 'M' ) wounds.moderate += 1;
|
||||
@ -412,7 +412,7 @@ export class SoSActor extends Actor {
|
||||
}
|
||||
// Compute total
|
||||
let sumWound = wounds.light + (wounds.moderate*2) + (wounds.severe*3) + (wounds.critical*4);
|
||||
let currentWounds = duplicate(this.system.scores.currentwounds);
|
||||
let currentWounds = foundry.utils.duplicate(this.system.scores.currentwounds);
|
||||
currentWounds.value = sumWound;
|
||||
if ( sumWound >= this.system.scores.wound.value) {
|
||||
let bleeding = this.items.find( item => item.type == 'consequence' && item.name == 'Bleeding');
|
||||
|
@ -8,7 +8,7 @@ export class SoSItemSheet extends ItemSheet {
|
||||
|
||||
/** @override */
|
||||
static get defaultOptions() {
|
||||
return mergeObject(super.defaultOptions, {
|
||||
return foundry.utils.mergeObject(super.defaultOptions, {
|
||||
classes: ["foundryvtt-shadows-over-sol", "sheet", "item"],
|
||||
template: "systems/foundryvtt-shadows-over-sol/templates/item-sheet.html",
|
||||
width: 550,
|
||||
@ -56,7 +56,8 @@ export class SoSItemSheet extends ItemSheet {
|
||||
effects: this.object.effects.map(e => foundry.utils.deepClone(e.system)),
|
||||
limited: this.object.limited,
|
||||
options: this.options,
|
||||
owner: this.document.isOwner
|
||||
owner: this.document.isOwner,
|
||||
description: await TextEditor.enrichHTML(this.object.system.description, {async: true}),
|
||||
};
|
||||
|
||||
formData.isGM = game.user.isGM;
|
||||
@ -66,6 +67,12 @@ export class SoSItemSheet extends ItemSheet {
|
||||
if ( objectData.type == 'skill' && this.object.options?.actor) {
|
||||
formData.skillExperienceList = this.object.options.actor.getSkillExperience( objectData.name )
|
||||
}
|
||||
if ( objectData.type == 'geneline') {
|
||||
formData.weakness = await TextEditor.enrichHTML(this.object.system.weakness, {async: true})
|
||||
}
|
||||
if ( objectData.type == 'malady') {
|
||||
formData.notes = await TextEditor.enrichHTML(this.object.system.notes, {async: true})
|
||||
}
|
||||
return formData;
|
||||
}
|
||||
|
||||
|
@ -1,24 +0,0 @@
|
||||
html.find('.item .item-name h4').click(event => this._onItemSummary(event));
|
||||
|
||||
/**
|
||||
* Handle toggling of an item from the Actor sheet
|
||||
* @private
|
||||
*/
|
||||
_onItemSummary(event) {
|
||||
event.preventDefault();
|
||||
let li = $(event.currentTarget).parents(".item"),
|
||||
item = this.actor.getOwnedItem(li.data("item-id"));
|
||||
|
||||
// Toggle summary
|
||||
if (item.data.data.description !== undefined && item.data.data.description !== null){
|
||||
if ( li.hasClass("expanded") ) {
|
||||
let summary = li.children(".item-summary");
|
||||
summary.slideUp(200, () => summary.remove());
|
||||
} else {
|
||||
let div = $(`<div class="item-summary">${item.data.data.description}</div>`);
|
||||
li.append(div.hide());
|
||||
div.slideDown(200);
|
||||
}
|
||||
li.toggleClass("expanded");
|
||||
}
|
||||
}
|
@ -8,7 +8,7 @@ const IDX2CARDFAMILY = ['c', 'd', 'h', 's'];
|
||||
export class SoSCardDeck {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
initCardDeck(actor, savedDeck = undefined ) {
|
||||
async initCardDeck(actor, savedDeck = undefined ) {
|
||||
|
||||
this.data = {};
|
||||
|
||||
@ -18,27 +18,28 @@ export class SoSCardDeck {
|
||||
this.data.cardEdge = [];
|
||||
|
||||
if ( savedDeck.deck && savedDeck.deck.length > 0 ) {
|
||||
this.data.deck = duplicate(savedDeck.deck);
|
||||
this.data.deck = foundry.utils.duplicate(savedDeck.deck);
|
||||
}
|
||||
if ( savedDeck.discard && savedDeck.discard.length > 0 ) {
|
||||
this.data.discard = duplicate(savedDeck.discard);
|
||||
this.data.discard = foundry.utils.duplicate(savedDeck.discard);
|
||||
}
|
||||
if ( savedDeck.cardEdge && savedDeck.cardEdge.length > 0 ) {
|
||||
this.data.cardEdge = duplicate(savedDeck.cardEdge);
|
||||
this.data.cardEdge = foundry.utils.duplicate(savedDeck.cardEdge);
|
||||
}
|
||||
|
||||
this.data.actor = actor;
|
||||
if ( this.data.deck.length == 0 && this.data.discard.length == 0) {
|
||||
this.shuffleDeck();
|
||||
await this.shuffleDeck();
|
||||
}
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
shuffleDeck() {
|
||||
async shuffleDeck() {
|
||||
this.cleanCardList();
|
||||
// Randomize deck
|
||||
while (this.data.deck.length != NB_POKER_CARD) {
|
||||
let idx = new Roll("1d54").roll( {async:false} ).total;
|
||||
let roll = await new Roll("1d54").roll();
|
||||
let idx = roll.total;
|
||||
if (!this.data.cardState[idx - 1]) {
|
||||
if (idx == 53) { // Red Joker
|
||||
this.data.deck.push( { cardName: 'jr' } );
|
||||
@ -57,8 +58,8 @@ export class SoSCardDeck {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
resetDeck() {
|
||||
let newdeck = duplicate(this.data.deck).concat( duplicate (this.data.discard) )
|
||||
async resetDeck() {
|
||||
let newdeck = foundry.utils.duplicate(this.data.deck).concat( foundry.utils.duplicate (this.data.discard) )
|
||||
this.data.discard = [] // Reinit discard pile
|
||||
this.data.deck = []
|
||||
let decklen = newdeck.length
|
||||
@ -68,7 +69,8 @@ export class SoSCardDeck {
|
||||
}
|
||||
// Randomize deck
|
||||
while (this.data.deck.length != decklen) {
|
||||
let idx = new Roll("1d"+decklen).roll({async : false}).total
|
||||
let roll = await new Roll("1d"+decklen).roll()
|
||||
let idx = roll.total
|
||||
//console.log("Deck stuff", this.data.deck.length, decklen, idx)
|
||||
if (!cardState[idx-1]) {
|
||||
this.data.deck.push( newdeck[idx-1] )
|
||||
@ -104,7 +106,7 @@ export class SoSCardDeck {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getDeckSize() {
|
||||
return this.data.deck.length;
|
||||
return this.data.deck.length;
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@ -247,7 +249,7 @@ export class SoSCardDeck {
|
||||
if ( flipData.mode == 'stat' || flipData.mode == 'weapon' ) {
|
||||
flipData.baseScore = flipData.stat.value + flipData.malusConsequence + flipData.bonusConsequence + flipData.woundMalus;
|
||||
} else if (flipData.mode == 'skill') {
|
||||
flipData.baseScore = Math.floor(flipData.stat.value/2) + flipData.skill.data.value + flipData.malusConsequence + flipData.bonusConsequence + flipData.woundMalus;
|
||||
flipData.baseScore = Math.floor(flipData.stat.value/2) + flipData.skill.system.value + flipData.malusConsequence + flipData.bonusConsequence + flipData.woundMalus;
|
||||
}
|
||||
flipData.finalScore = flipData.baseScore + flipData.cardTotal + Number(flipData.modifier);
|
||||
flipData.magnitude = flipData.finalScore - flipData.tn;
|
||||
@ -272,10 +274,10 @@ export class SoSCardDeck {
|
||||
async processWeapon( flipData ) {
|
||||
flipData.damageCardsuit = flipData.cardSlot[flipData.cardSlotIndex].cardsuit;
|
||||
let damageKey = 'damage_'+ flipData.damageCardsuit;
|
||||
flipData.damageString = flipData.weapon.data[damageKey];
|
||||
flipData.damageString = flipData.weapon.system[damageKey];
|
||||
if (flipData.damageString.includes('Str') ) {
|
||||
let damageRegexp = flipData.damageString.match( /Str([\d])?\+?([\d])?([LMSC])/i );
|
||||
flipData.damageValue = (flipData.actor.data.data.stats.strength.value * Number(damageRegexp[1]?damageRegexp[1]:1)) + Number(damageRegexp[2]?damageRegexp[2]:0);
|
||||
flipData.damageValue = (flipData.actor.system.stats.strength.value * Number(damageRegexp[1]?damageRegexp[1]:1)) + Number(damageRegexp[2]?damageRegexp[2]:0);
|
||||
flipData.damageSeverity = damageRegexp[3];
|
||||
} else {
|
||||
let damageRegexp = flipData.damageString.match( /(\d*)([LMSC])/i );
|
||||
|
@ -14,9 +14,9 @@ export class SoSCombat extends Combat {
|
||||
this.phaseSetup = {}; // Reset each new round/update
|
||||
for (let combatant of this.combatants) {
|
||||
this.setInitiative(combatant.id, -1); // Reset init
|
||||
let uniq = randomID(16)
|
||||
let uniq = foundry.utils.randomID(16)
|
||||
const name = combatant.actor ? combatant.actor.name : combatant.name;
|
||||
if (combatant.players && combatant.players[0]) {
|
||||
if (combatant.players && combatant.players[0] ) {
|
||||
// A player controls this combatant -> message !
|
||||
ChatMessage.create({
|
||||
content: `New round ! Click on the button below to declare the actions of ${name} for round ${this.round} !<br>
|
||||
@ -80,7 +80,7 @@ export class SoSCombat extends Combat {
|
||||
|
||||
// Now push specific messages
|
||||
for (let action of actionList) {
|
||||
let uniq = randomID(16);
|
||||
let uniq = foundry.utils.randomID(16);
|
||||
action.uniqId = uniq; // Easy tracking with chat messages
|
||||
const name = action.combatant.actor ? action.combatant.actor.name : action.combatant.name;
|
||||
if (action.combatant.players[0]) {
|
||||
|
@ -53,11 +53,11 @@ export class SoSDialogCombatActions extends Dialog {
|
||||
super.close();
|
||||
|
||||
let action3Index = $('#action3').val();
|
||||
let action3 = duplicate(this.combatActions.actionsList[action3Index]);
|
||||
let action3 = foundry.utils.duplicate(this.combatActions.actionsList[action3Index]);
|
||||
let action2Index = $('#action2').val();
|
||||
let action2 = duplicate(this.combatActions.actionsList[action2Index]);
|
||||
let action2 = foundry.utils.duplicate(this.combatActions.actionsList[action2Index]);
|
||||
let action1Index = $('#action1').val();
|
||||
let action1 = duplicate(this.combatActions.actionsList[action1Index]);
|
||||
let action1 = foundry.utils.duplicate(this.combatActions.actionsList[action1Index]);
|
||||
|
||||
let combatant3Id = $('#combatant3').val();
|
||||
let combatant2Id = $('#combatant2').val();
|
||||
|
@ -29,7 +29,7 @@ export class SoSFlipDialog extends Dialog {
|
||||
let scoreBase = 0;
|
||||
if ( this.flipData.mode == 'skill' || this.flipData.mode == 'weapon' ) {
|
||||
let statKey = $('#statSelect').val();
|
||||
this.flipData.stat = duplicate( this.flipData.statList[ statKey ] );
|
||||
this.flipData.stat = foundry.utils.duplicate( this.flipData.statList[ statKey ] );
|
||||
scoreBase = Math.floor(this.flipData.statList[ statKey ].value / 2) + this.flipData.skill.system.value
|
||||
} else { //Stat mode
|
||||
let statKey = $('#statSelect').val();
|
||||
@ -52,10 +52,10 @@ export class SoSFlipDialog extends Dialog {
|
||||
async updateFlip( flipData ) {
|
||||
//console.log("UPDATE !!!", flipData);
|
||||
$('.view-deck').remove();
|
||||
$("#view-deck").append(await flipData.actor.cardDeck.getDeckHTML());
|
||||
$("#view-deck").append(await flipData.actor.system.cardDeck.getDeckHTML());
|
||||
|
||||
$('.view-edge').remove();
|
||||
$("#view-edge").append(await flipData.actor.cardDeck.getEdgeHTMLForFlip());
|
||||
$("#view-edge").append(await flipData.actor.system.cardDeck.getEdgeHTMLForFlip());
|
||||
|
||||
this.updateScoreBase();
|
||||
|
||||
@ -67,10 +67,10 @@ export class SoSFlipDialog extends Dialog {
|
||||
flipData.edgeLuck = $('#edge-luck').is(":checked");
|
||||
flipData.cardOrigin = "Edge";
|
||||
if ( flipData.mode == 'skill' || flipData.mode == 'weapon') {
|
||||
flipData.stat = duplicate( flipData.statList[ $('#statSelect').val() ] );
|
||||
flipData.stat = foundry.utils.duplicate( flipData.statList[ $('#statSelect').val() ] );
|
||||
}
|
||||
console.log("CLICK:", flipData);
|
||||
this.flipData.actor.cardDeck.doFlipFromDeckOrEdge(flipData);
|
||||
this.flipData.actor.system.cardDeck.doFlipFromDeckOrEdge(flipData);
|
||||
this.onFlipClose();
|
||||
});
|
||||
|
||||
@ -161,11 +161,11 @@ export class SoSFlipDialog extends Dialog {
|
||||
flipData.modifier = html.find('#modifier').val();
|
||||
if ( flipData.mode == 'skill' || flipData.mode == 'weapon') {
|
||||
let statKey = $('#statSelect').val();
|
||||
flipData.stat = duplicate( flipData.statList[ statKey ] );
|
||||
flipData.stat = foundry.utils.duplicate( flipData.statList[ statKey ] );
|
||||
}
|
||||
flipData.cardOrigin = "Deck";
|
||||
flipData.tn = (flipData.target) ? flipData.target.actor.system.scores.defense.value : $('#tn').val();
|
||||
dialog.flipData.actor.cardDeck.doFlipFromDeckOrEdge(flipData);
|
||||
dialog.flipData.actor.system.cardDeck.doFlipFromDeckOrEdge(flipData);
|
||||
dialog.onFlipClose();
|
||||
});
|
||||
|
||||
|
@ -35,9 +35,9 @@ export class SoSGMDeck extends Dialog {
|
||||
/* -------------------------------------------- */
|
||||
saveDeck( ) {
|
||||
let deck = {
|
||||
deck: duplicate(this.GMdeck.data.deck),
|
||||
discard: duplicate(this.GMdeck.data.discard),
|
||||
cardEdge: duplicate(this.GMdeck.data.cardEdge)
|
||||
deck: foundry.utils.duplicate(this.GMdeck.data.deck),
|
||||
discard: foundry.utils.duplicate(this.GMdeck.data.discard),
|
||||
cardEdge: foundry.utils.duplicate(this.GMdeck.data.cardEdge)
|
||||
}
|
||||
game.settings.set("foundryvtt-shadows-over-sol", "gmDeck", deck );
|
||||
}
|
||||
|
@ -15,6 +15,7 @@ import { SoSUtility } from "./sos-utility.js";
|
||||
import { SoSCombat } from "./sos-combat.js";
|
||||
import { gearConverter } from "./gears_convert.js";
|
||||
import { SoSGMDeck } from "./sos-gm-deck.js";
|
||||
import { ClassCounter} from "https://www.uberwald.me/fvtt_appcount/count-class-ready.js"
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Foundry VTT Initialization */
|
||||
@ -89,30 +90,6 @@ function welcomeMessage() {
|
||||
` });
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
// Register world usage statistics
|
||||
function registerUsageCount( registerKey ) {
|
||||
if ( game.user.isGM ) {
|
||||
game.settings.register(registerKey, "world-key", {
|
||||
name: "Unique world key",
|
||||
scope: "world",
|
||||
config: false,
|
||||
default: "XXX",
|
||||
type: String
|
||||
});
|
||||
|
||||
let worldKey = game.settings.get(registerKey, "world-key")
|
||||
if ( worldKey == undefined || worldKey == "" ) {
|
||||
worldKey = randomID(32)
|
||||
game.settings.set(registerKey, "world-key", worldKey )
|
||||
}
|
||||
// Simple API counter
|
||||
let regURL = `https://www.uberwald.me/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.version}"`
|
||||
$.ajax(regURL)
|
||||
/* -------------------------------------------- */
|
||||
}
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Foundry VTT Initialization */
|
||||
/* -------------------------------------------- */
|
||||
@ -126,7 +103,8 @@ Hooks.once("ready", function () {
|
||||
user: game.user._id
|
||||
});
|
||||
}
|
||||
registerUsageCount("foundryvtt-shadows-over-sol")
|
||||
ClassCounter.registerUsageCount()
|
||||
SoSUtility.ready()
|
||||
|
||||
welcomeMessage();
|
||||
|
||||
|
@ -1,18 +1,18 @@
|
||||
/* -------------------------------------------- */
|
||||
/* -------------------------------------------- */
|
||||
import { SoSCombat } from "./sos-combat.js";
|
||||
import { SoSDialogCombatActions } from "./sos-dialog-combat-actions.js";
|
||||
|
||||
/* -------------------------------------------- */
|
||||
const severity2malus = { "none": 0, "light": -1, "moderate": -2, "severe": -3, "critical": -4};
|
||||
/* -------------------------------------------- */
|
||||
const severity2bonus = { "none": 0, "light": 1, "moderate": 2, "severe": 3, "critical": 4};
|
||||
/* -------------------------------------------- */
|
||||
const severity2malus = { "none": 0, "light": -1, "moderate": -2, "severe": -3, "critical": -4 };
|
||||
/* -------------------------------------------- */
|
||||
const severity2bonus = { "none": 0, "light": 1, "moderate": 2, "severe": 3, "critical": 4 };
|
||||
|
||||
/* -------------------------------------------- */
|
||||
export class SoSUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* -------------------------------------------- */
|
||||
export class SoSUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async preloadHandlebarsTemplates() {
|
||||
|
||||
|
||||
const templatePaths = [
|
||||
'systems/foundryvtt-shadows-over-sol/templates/actor-sheet.html',
|
||||
'systems/foundryvtt-shadows-over-sol/templates/editor-notes-gm.html',
|
||||
@ -27,31 +27,41 @@ export class SoSUtility {
|
||||
|
||||
'systems/foundryvtt-shadows-over-sol/templates/dialog-flip.html'
|
||||
]
|
||||
return loadTemplates(templatePaths);
|
||||
return loadTemplates(templatePaths);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static fillRange (start, end) {
|
||||
static ready() {
|
||||
Handlebars.registerHelper('select', function (selected, options) {
|
||||
const escapedValue = RegExp.escape(Handlebars.escapeExpression(selected));
|
||||
const rgx = new RegExp(' value=[\"\']' + escapedValue + '[\"\']');
|
||||
const html = options.fn(this);
|
||||
return html.replace(rgx, "$& selected");
|
||||
});
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static fillRange(start, end) {
|
||||
return Array(end - start + 1).fill().map((item, index) => start + index);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static onSocketMesssage( msg ) {
|
||||
if( !game.user.isGM ) return; // Only GM
|
||||
|
||||
if (msg.name == 'msg_declare_actions' ) {
|
||||
let combat = game.combats.get( msg.data.combatId); // Get the associated combat
|
||||
combat.setupActorActions( msg.data );
|
||||
/* -------------------------------------------- */
|
||||
static onSocketMesssage(msg) {
|
||||
if (!game.user.isGM) return; // Only GM
|
||||
|
||||
if (msg.name == 'msg_declare_actions') {
|
||||
let combat = game.combats.get(msg.data.combatId); // Get the associated combat
|
||||
combat.setupActorActions(msg.data);
|
||||
} else if (msg.name == 'msg_close_action') {
|
||||
game.combat.closeAction( msg.data.uniqId );
|
||||
game.combat.closeAction(msg.data.uniqId);
|
||||
} else if (msg.name == 'msg_request_defense') {
|
||||
SoSUtility.applyDamage( msg.data );
|
||||
SoSUtility.applyDamage(msg.data);
|
||||
} else if (msg.name == 'msg_reaction_cover') {
|
||||
SoSUtility.reactionCover( msg.data.uniqId );
|
||||
SoSUtility.reactionCover(msg.data.uniqId);
|
||||
} else if (msg.name == 'msg_reaction_melee') {
|
||||
SoSUtility.reactionMelee( msg.data.uniqId );
|
||||
SoSUtility.reactionMelee(msg.data.uniqId);
|
||||
} else if (msg.name == 'msg_reaction_hit') {
|
||||
SoSUtility.reactionHit( msg.data.uniqId );
|
||||
SoSUtility.reactionHit(msg.data.uniqId);
|
||||
}
|
||||
}
|
||||
|
||||
@ -60,13 +70,13 @@ export class SoSUtility {
|
||||
const pack = game.packs.get(compendium);
|
||||
return await pack?.getDocuments() ?? [];
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async loadCompendium(compendium, filter = item => true) {
|
||||
let compendiumData = await SoSUtility.loadCompendiumData(compendium);
|
||||
return compendiumData.filter(filter);
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async loadCompendiumNames(compendium) {
|
||||
const pack = game.packs.get(compendium);
|
||||
@ -74,38 +84,21 @@ export class SoSUtility {
|
||||
await pack.getIndex().then(index => competences = index);
|
||||
return competences;
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/*static async loadCompendium(compendium, filter = item => true) {
|
||||
let compendiumItems = await SoSUtility.loadCompendiumNames(compendium);
|
||||
|
||||
const pack = game.packs.get(compendium);
|
||||
let list = [];
|
||||
for (let compendiumItem of compendiumItems) {
|
||||
await pack.getEntity(compendiumItem.id).then(it => {
|
||||
const item = it.data;
|
||||
if (filter(item)) {
|
||||
list.push(item);
|
||||
}
|
||||
});
|
||||
};
|
||||
return list;
|
||||
}*/
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static updateCombat(combat, round, diff, id) {
|
||||
combat.requestActions();
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async openDeclareActions( event) {
|
||||
static async openDeclareActions(event) {
|
||||
event.preventDefault();
|
||||
let round = event.currentTarget.attributes['data-round'].value;
|
||||
let combatantId = event.currentTarget.attributes['data-combatant-id'].value;
|
||||
let combatId = event.currentTarget.attributes['data-combat-id'].value;
|
||||
let uniqId = event.currentTarget.attributes['data-uniq-id'].value;
|
||||
let d = await SoSDialogCombatActions.create( combatId, combatantId, round, uniqId );
|
||||
d.render(true);
|
||||
let d = await SoSDialogCombatActions.create(combatId, combatantId, round, uniqId);
|
||||
d.render(true);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@ -116,13 +109,13 @@ export class SoSUtility {
|
||||
static getConsequenceBonus(severity) {
|
||||
return severity2bonus[severity] ?? 0;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static computeEncumbrance( items) {
|
||||
let trappings = items.filter( item => item.type == 'gear' || item.type == 'armor' || item.type == 'weapon' );
|
||||
static computeEncumbrance(items) {
|
||||
let trappings = items.filter(item => item.type == 'gear' || item.type == 'armor' || item.type == 'weapon');
|
||||
let sumEnc = 0;
|
||||
for (let object of trappings) {
|
||||
if ( (!object.data.worn) && (!object.data.neg) && (!object.data.software) && (!object.data.implant) && (!object.data.containerid || object.data.containerid == "") ) {
|
||||
if ((!object.system.worn) && (!object.system.neg) && (!object.system.software) && (!object.system.implant) && (!object.system.containerid || object.system.containerid == "")) {
|
||||
sumEnc += (object.big > 0) ? object.big : 1;
|
||||
}
|
||||
}
|
||||
@ -133,48 +126,49 @@ export class SoSUtility {
|
||||
static closeAction(event) {
|
||||
let uniqId = event.currentTarget.attributes['data-uniq-id'].value;
|
||||
|
||||
if ( game.user.isGM ) {
|
||||
game.combat.closeAction( uniqId );
|
||||
if (game.user.isGM) {
|
||||
game.combat.closeAction(uniqId);
|
||||
} else {
|
||||
game.socket.emit("system.foundryvtt-shadows-over-sol", {
|
||||
name: "msg_close_action", data: { uniqId: uniqId} } );
|
||||
name: "msg_close_action", data: { uniqId: uniqId }
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async registerChatCallbacks(html) {
|
||||
html.on("click", '#button-declare-actions', event => {
|
||||
SoSUtility.openDeclareActions( event );
|
||||
SoSUtility.openDeclareActions(event);
|
||||
});
|
||||
html.on("click", '#button-end-action', event => {
|
||||
SoSUtility.closeAction( event );
|
||||
});
|
||||
SoSUtility.closeAction(event);
|
||||
});
|
||||
|
||||
html.on("click", '#button-reaction-cover', event => {
|
||||
let uniqId = event.currentTarget.attributes['data-uniq-id'].value;
|
||||
if ( game.user.isGM ) {
|
||||
SoSUtility.reactionCover( uniqId );
|
||||
if (game.user.isGM) {
|
||||
SoSUtility.reactionCover(uniqId);
|
||||
} else {
|
||||
game.socket.emit("system.foundryvtt-shadows-over-sol", { name: "msg_reaction_cover", data: { uniqId: uniqId} } );
|
||||
game.socket.emit("system.foundryvtt-shadows-over-sol", { name: "msg_reaction_cover", data: { uniqId: uniqId } });
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
html.on("click", '#button-reaction-melee', event => {
|
||||
let uniqId = event.currentTarget.attributes['data-uniq-id'].value;
|
||||
if ( game.user.isGM ) {
|
||||
SoSUtility.reactionMelee( uniqId );
|
||||
if (game.user.isGM) {
|
||||
SoSUtility.reactionMelee(uniqId);
|
||||
} else {
|
||||
game.socket.emit("system.foundryvtt-shadows-over-sol", { name: "msg_reaction_melee", data: { uniqId: uniqId} } );
|
||||
game.socket.emit("system.foundryvtt-shadows-over-sol", { name: "msg_reaction_melee", data: { uniqId: uniqId } });
|
||||
}
|
||||
});
|
||||
});
|
||||
html.on("click", '#button-reaction-hit', event => {
|
||||
let uniqId = event.currentTarget.attributes['data-uniq-id'].value;
|
||||
if ( game.user.isGM ) {
|
||||
SoSUtility.reactionHit( uniqId );
|
||||
if (game.user.isGM) {
|
||||
SoSUtility.reactionHit(uniqId);
|
||||
} else {
|
||||
game.socket.emit("system.foundryvtt-shadows-over-sol", { name: "msg_reaction_hit", data: { uniqId: uniqId} } );
|
||||
game.socket.emit("system.foundryvtt-shadows-over-sol", { name: "msg_reaction_hit", data: { uniqId: uniqId } });
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@ -188,46 +182,46 @@ export class SoSUtility {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static increaseConsequenceSeverity( severity ) {
|
||||
if ( severity == 'none') return 'light';
|
||||
if ( severity == 'light') return 'moderate';
|
||||
if ( severity == 'moderate') return 'severe';
|
||||
if ( severity == 'severe') return 'critical';
|
||||
static increaseConsequenceSeverity(severity) {
|
||||
if (severity == 'none') return 'light';
|
||||
if (severity == 'light') return 'moderate';
|
||||
if (severity == 'moderate') return 'severe';
|
||||
if (severity == 'severe') return 'critical';
|
||||
return 'critical';
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static getConsequenceSeverityLevel( severity) {
|
||||
if ( severity == 'none') return 0;
|
||||
if ( severity == 'light') return 1;
|
||||
if ( severity == 'moderate') return 2;
|
||||
if ( severity == 'severe') return 3;
|
||||
if ( severity == 'critical') return 4;
|
||||
static getConsequenceSeverityLevel(severity) {
|
||||
if (severity == 'none') return 0;
|
||||
if (severity == 'light') return 1;
|
||||
if (severity == 'moderate') return 2;
|
||||
if (severity == 'severe') return 3;
|
||||
if (severity == 'critical') return 4;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static increaseSeverity( severity ) {
|
||||
if ( severity == 'L') return 'M';
|
||||
if ( severity == 'M') return 'S';
|
||||
if ( severity == 'S') return 'C';
|
||||
if ( severity == 'C') return 'F';
|
||||
static increaseSeverity(severity) {
|
||||
if (severity == 'L') return 'M';
|
||||
if (severity == 'M') return 'S';
|
||||
if (severity == 'S') return 'C';
|
||||
if (severity == 'C') return 'F';
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static decreaseSeverity( severity ) {
|
||||
if ( severity == 'C') return 'S';
|
||||
if ( severity == 'S') return 'M';
|
||||
if ( severity == 'M') return 'L';
|
||||
if ( severity == 'L') return 'N';
|
||||
static decreaseSeverity(severity) {
|
||||
if (severity == 'C') return 'S';
|
||||
if (severity == 'S') return 'M';
|
||||
if (severity == 'M') return 'L';
|
||||
if (severity == 'L') return 'N';
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static getSeverityLevel( severity) {
|
||||
if ( severity == 'C') return 4;
|
||||
if ( severity == 'S') return 3;
|
||||
if ( severity == 'M') return 2;
|
||||
if ( severity == 'L') return 1;
|
||||
static getSeverityLevel(severity) {
|
||||
if (severity == 'C') return 4;
|
||||
if (severity == 'S') return 3;
|
||||
if (severity == 'M') return 2;
|
||||
if (severity == 'L') return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -238,160 +232,160 @@ export class SoSUtility {
|
||||
let msgTxt = "<p>Are you sure to delete this item ?";
|
||||
let buttons = {
|
||||
delete: {
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Yes, delete it",
|
||||
callback: () => {
|
||||
console.log("Delete : ", itemId);
|
||||
actorSheet.actor.deleteEmbeddedDocuments("Item", [itemId]);
|
||||
li.slideUp(200, () => actorSheet.render(false));
|
||||
}
|
||||
},
|
||||
cancel: {
|
||||
icon: '<i class="fas fa-times"></i>',
|
||||
label: "Cancel"
|
||||
icon: '<i class="fas fa-check"></i>',
|
||||
label: "Yes, delete it",
|
||||
callback: () => {
|
||||
console.log("Delete : ", itemId);
|
||||
actorSheet.actor.deleteEmbeddedDocuments("Item", [itemId]);
|
||||
li.slideUp(200, () => actorSheet.render(false));
|
||||
}
|
||||
},
|
||||
cancel: {
|
||||
icon: '<i class="fas fa-times"></i>',
|
||||
label: "Cancel"
|
||||
}
|
||||
msgTxt += "</p>";
|
||||
let d = new Dialog({
|
||||
title: "Confirm deletion",
|
||||
content: msgTxt,
|
||||
buttons: buttons,
|
||||
default: "cancel"
|
||||
});
|
||||
d.render(true);
|
||||
}
|
||||
|
||||
msgTxt += "</p>";
|
||||
let d = new Dialog({
|
||||
title: "Confirm deletion",
|
||||
content: msgTxt,
|
||||
buttons: buttons,
|
||||
default: "cancel"
|
||||
});
|
||||
d.render(true);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async applyDamage( flipData ) {
|
||||
static async applyDamage(flipData) {
|
||||
if (!this.registry) this.registry = {};
|
||||
|
||||
if ( flipData.isReaction) { // Check again resut in case of reaction !
|
||||
if (flipData.isReaction) { // Check again resut in case of reaction !
|
||||
flipData.magnitude = flipData.finalScore - flipData.tn; // Update magnitude
|
||||
if ( flipData.magnitude < 0 ) {
|
||||
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-reaction-result.html', flipData );
|
||||
ChatMessage.create( { content: html });
|
||||
if (flipData.magnitude < 0) {
|
||||
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-reaction-result.html', flipData);
|
||||
ChatMessage.create({ content: html });
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// DR management
|
||||
let armor = flipData.target.actor.data.items.find( item => item.type == 'armor' && item.data.worn);
|
||||
flipData.armorDR = armor ? armor.data.dr : 0;
|
||||
flipData.armorGel = armor ?armor.data.gel : 0;
|
||||
flipData.armorReflect = armor ? armor.data.reflect : 0;
|
||||
let dr = flipData.target.actor.data.data.scores.dr.value + flipData.armorDR;
|
||||
if (flipData.weapon.data.category == 'ballistic') {
|
||||
dr += flipData.armorGel;
|
||||
let armor = flipData.target.actor.system.items.find(item => item.type == 'armor' && item.system.worn);
|
||||
flipData.armorDR = armor ? armor.system.dr : 0;
|
||||
flipData.armorGel = armor ? armor.system.gel : 0;
|
||||
flipData.armorReflect = armor ? armor.system.reflect : 0;
|
||||
let dr = flipData.target.actor.system.scores.dr.value + flipData.armorDR;
|
||||
if (flipData.weapon.system.category == 'ballistic') {
|
||||
dr += flipData.armorGel;
|
||||
}
|
||||
if (flipData.weapon.data.category == 'laser') {
|
||||
dr += flipData.armorReflect;
|
||||
if (flipData.weapon.system.category == 'laser') {
|
||||
dr += flipData.armorReflect;
|
||||
}
|
||||
|
||||
let shock = flipData.target.actor.data.data.scores.shock.value || 1;
|
||||
let defenseCritical = flipData.target.actor.data.data.scores.defense.critical;
|
||||
let shock = flipData.target.actor.system.scores.shock.value || 1;
|
||||
let defenseCritical = flipData.target.actor.system.scores.defense.critical;
|
||||
flipData.damageStatus = 'apply_damage';
|
||||
|
||||
flipData.targetShock = shock;
|
||||
flipData.targetDR = dr;
|
||||
flipData.targetDR = dr;
|
||||
flipData.targetCritical = defenseCritical;
|
||||
// DR management
|
||||
if ( flipData.damageValue < dr) {
|
||||
if (flipData.damageValue < dr) {
|
||||
if (flipData.damageValue < dr / 2) {
|
||||
flipData.damageStatus = "no_damage";
|
||||
flipData.damageReason = "Damage are lesser than DR/2";
|
||||
} else {
|
||||
flipData.damageSeverity = this.decreaseSeverity(flipData.damageSeverity );
|
||||
if ( flipData.damageSeverity == 'N') {
|
||||
flipData.damageSeverity = this.decreaseSeverity(flipData.damageSeverity);
|
||||
if (flipData.damageSeverity == 'N') {
|
||||
flipData.damageStatus = "no_damage";
|
||||
flipData.damageReason = "Severity decreased to nothing";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Shock management
|
||||
flipData.woundsList = [];
|
||||
flipData.nbStun = 0;
|
||||
if ( flipData.weapon.stun ) { // Stun weapon case
|
||||
if ( flipData.damageValue >= shock ) {
|
||||
if (flipData.weapon.stun) { // Stun weapon case
|
||||
if (flipData.damageValue >= shock) {
|
||||
flipData.nbStun = Math.floor(flipData.damageValue / shock);
|
||||
}
|
||||
} else {
|
||||
if ( flipData.damageValue >= shock ) {
|
||||
if (flipData.damageValue >= shock) {
|
||||
let incSeverity = Math.floor(flipData.damageValue / shock);
|
||||
for (let i=0; i<incSeverity; i++) {
|
||||
if ( flipData.damageSeverity == 'C') {
|
||||
flipData.woundsList.push( flipData.damageSeverity );
|
||||
for (let i = 0; i < incSeverity; i++) {
|
||||
if (flipData.damageSeverity == 'C') {
|
||||
flipData.woundsList.push(flipData.damageSeverity);
|
||||
flipData.damageSeverity = 'L';
|
||||
} else {
|
||||
flipData.nbStun++;
|
||||
flipData.damageSeverity = this.increaseSeverity( flipData.damageSeverity );
|
||||
flipData.damageSeverity = this.increaseSeverity(flipData.damageSeverity);
|
||||
flipData.damageReason = "Severity increased";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
flipData.woundsList.push( flipData.damageSeverity );
|
||||
flipData.woundsList.push(flipData.damageSeverity);
|
||||
flipData.nbWounds = flipData.woundsList.length;
|
||||
|
||||
// Critical management
|
||||
flipData.isCritical = ( flipData.cardTotal >= defenseCritical);
|
||||
flipData.isCritical = (flipData.cardTotal >= defenseCritical);
|
||||
|
||||
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-damage-target.html', flipData );
|
||||
ChatMessage.create( { content: html });
|
||||
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-damage-target.html', flipData);
|
||||
ChatMessage.create({ content: html });
|
||||
|
||||
// Is target able to dodge ??
|
||||
let defender = game.actors.get( flipData.target.actor._id);
|
||||
flipData.coverConsequence = defender.data.items.find( item => item.type == 'consequence' && item.name == 'Cover');
|
||||
flipData.APavailable = game.combat.getAPFromActor( defender.data._id );
|
||||
let defender = game.actors.get(flipData.target.actor._id);
|
||||
flipData.coverConsequence = defender.items.find(item => item.type == 'consequence' && item.name == 'Cover');
|
||||
flipData.APavailable = game.combat.getAPFromActor(defender._id);
|
||||
console.log("FLIPDATE : ", flipData);
|
||||
if ( !flipData.isReaction && flipData.APavailable > 0) {
|
||||
if ( (flipData.weapon.data.category == 'melee' ) || ( (flipData.weapon.data.category == 'laser' || flipData.weapon.data.category == 'ballistic') &&
|
||||
flipData.coverConsequence.data.severity != 'none') ) {
|
||||
flipData.coverSeverityLevel = this.getConsequenceSeverityLevel( flipData.coverConsequence.data.severity ) * 2;
|
||||
flipData.coverSeverityFlag = (flipData.coverSeverityLevel > 0);
|
||||
flipData.isMelee = (flipData.weapon.data.category == 'melee' );
|
||||
let melee = defender.data.items.find( item => item.type == 'skill' && item.name == 'Melee');
|
||||
flipData.defenderMelee = melee.data.value;
|
||||
flipData.uniqId = randomID(16);
|
||||
if (!flipData.isReaction && flipData.APavailable > 0) {
|
||||
if ((flipData.weapon.system.category == 'melee') || ((flipData.weapon.system.category == 'laser' || flipData.weapon.system.category == 'ballistic') &&
|
||||
flipData.coverConsequence.system.severity != 'none')) {
|
||||
flipData.coverSeverityLevel = this.getConsequenceSeverityLevel(flipData.coverConsequence.system.severity) * 2;
|
||||
flipData.coverSeverityFlag = (flipData.coverSeverityLevel > 0);
|
||||
flipData.isMelee = (flipData.weapon.system.category == 'melee');
|
||||
let melee = defender.items.find(item => item.type == 'skill' && item.name == 'Melee');
|
||||
flipData.defenderMelee = melee.system.value;
|
||||
flipData.uniqId = foundry.utils.randomID(16);
|
||||
this.registry[flipData.uniqId] = flipData;
|
||||
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-damage-request-dodge.html', flipData );
|
||||
ChatMessage.create( { content: html, whisper: ChatMessage.getWhisperRecipients(flipData.target.actor.name).concat(ChatMessage.getWhisperRecipients("GM")) } );
|
||||
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-damage-request-dodge.html', flipData);
|
||||
ChatMessage.create({ content: html, whisper: ChatMessage.getWhisperRecipients(flipData.target.actor.name).concat(ChatMessage.getWhisperRecipients("GM")) });
|
||||
return; // Wait message response
|
||||
}
|
||||
}
|
||||
flipData.isReaction = false;
|
||||
this.takeWounds( flipData);
|
||||
this.takeWounds(flipData);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static reactionCover( uniqId) {
|
||||
/* -------------------------------------------- */
|
||||
static reactionCover(uniqId) {
|
||||
let flipData = this.registry[uniqId];
|
||||
flipData.tn += flipData.coverSeverityLevel;
|
||||
flipData.isReaction = true;
|
||||
game.combat.decreaseAPFromActor( flipData.target.actor._id );
|
||||
SoSUtility.applyDamage( flipData);
|
||||
}
|
||||
game.combat.decreaseAPFromActor(flipData.target.actor._id);
|
||||
SoSUtility.applyDamage(flipData);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static reactionMelee( uniqId) {
|
||||
static reactionMelee(uniqId) {
|
||||
let flipData = this.registry[uniqId];
|
||||
flipData.tn += flipData.defenderMelee;
|
||||
flipData.isReaction = true;
|
||||
game.combat.decreaseAPFromActor( flipData.target.actor._id );
|
||||
SoSUtility.applyDamage( flipData);
|
||||
game.combat.decreaseAPFromActor(flipData.target.actor._id);
|
||||
SoSUtility.applyDamage(flipData);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static reactionHit( uniqId) {
|
||||
static reactionHit(uniqId) {
|
||||
let flipData = this.registry[uniqId];
|
||||
flipData.isReaction = true;
|
||||
SoSUtility.takeWounds( flipData);
|
||||
SoSUtility.takeWounds(flipData);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static takeWounds( flipData ) {
|
||||
let defender = game.actors.get( flipData.target.actor._id);
|
||||
defender.applyWounds( flipData );
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static takeWounds(flipData) {
|
||||
let defender = game.actors.get(flipData.target.actor._id);
|
||||
defender.applyWounds(flipData);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@ -402,7 +396,7 @@ export class SoSUtility {
|
||||
let objectId = item.id
|
||||
console.log("ID", dragData, dropId, objectId)
|
||||
if (dragData.type == 'Item' && dropId) {
|
||||
actorSheet.actor.addObjectToContainer(objectId, dropId );
|
||||
actorSheet.actor.addObjectToContainer(objectId, dropId);
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
0
packs/combat-actions/000009.log
Normal file
0
packs/combat-actions/000009.log
Normal file
BIN
packs/combat-actions/000011.ldb
Normal file
BIN
packs/combat-actions/000011.ldb
Normal file
Binary file not shown.
1
packs/combat-actions/CURRENT
Normal file
1
packs/combat-actions/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000007
|
0
packs/combat-actions/LOCK
Normal file
0
packs/combat-actions/LOCK
Normal file
13
packs/combat-actions/LOG
Normal file
13
packs/combat-actions/LOG
Normal file
@ -0,0 +1,13 @@
|
||||
2024/05/31-12:37:50.244518 7f20a6a006c0 Recovering log #6
|
||||
2024/05/31-12:37:50.292179 7f20a6a006c0 Delete type=0 #6
|
||||
2024/05/31-12:37:50.292229 7f20a6a006c0 Delete type=3 #4
|
||||
2024/05/31-12:57:42.325821 7f20a5a006c0 Level-0 table #10: started
|
||||
2024/05/31-12:57:42.325873 7f20a5a006c0 Level-0 table #10: 0 bytes OK
|
||||
2024/05/31-12:57:42.332227 7f20a5a006c0 Delete type=0 #8
|
||||
2024/05/31-12:57:42.355930 7f20a5a006c0 Manual compaction at level-0 from '!items!06L0cwm4CIuCFetU' @ 72057594037927935 : 1 .. '!items!uSQw858IiBrWkeSj' @ 0 : 0; will stop at '!items!uSQw858IiBrWkeSj' @ 20 : 1
|
||||
2024/05/31-12:57:42.355939 7f20a5a006c0 Compacting 1@0 + 0@1 files
|
||||
2024/05/31-12:57:42.359540 7f20a5a006c0 Generated table #11@0: 20 keys, 15155 bytes
|
||||
2024/05/31-12:57:42.359578 7f20a5a006c0 Compacted 1@0 + 0@1 files => 15155 bytes
|
||||
2024/05/31-12:57:42.365779 7f20a5a006c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2024/05/31-12:57:42.365873 7f20a5a006c0 Delete type=2 #5
|
||||
2024/05/31-12:57:42.386374 7f20a5a006c0 Manual compaction at level-0 from '!items!uSQw858IiBrWkeSj' @ 20 : 1 .. '!items!uSQw858IiBrWkeSj' @ 0 : 0; will stop at (end)
|
5
packs/combat-actions/LOG.old
Normal file
5
packs/combat-actions/LOG.old
Normal file
@ -0,0 +1,5 @@
|
||||
2024/05/31-12:37:00.345049 7f04c4c006c0 Recovering log #3
|
||||
2024/05/31-12:37:00.345498 7f04c4c006c0 Level-0 table #5: started
|
||||
2024/05/31-12:37:00.358604 7f04c4c006c0 Level-0 table #5: 22912 bytes OK
|
||||
2024/05/31-12:37:00.406080 7f04c4c006c0 Delete type=0 #3
|
||||
2024/05/31-12:37:00.406202 7f04c4c006c0 Delete type=3 #2
|
BIN
packs/combat-actions/MANIFEST-000007
Normal file
BIN
packs/combat-actions/MANIFEST-000007
Normal file
Binary file not shown.
0
packs/consequences/000009.log
Normal file
0
packs/consequences/000009.log
Normal file
BIN
packs/consequences/000011.ldb
Normal file
BIN
packs/consequences/000011.ldb
Normal file
Binary file not shown.
1
packs/consequences/CURRENT
Normal file
1
packs/consequences/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000007
|
0
packs/consequences/LOCK
Normal file
0
packs/consequences/LOCK
Normal file
13
packs/consequences/LOG
Normal file
13
packs/consequences/LOG
Normal file
@ -0,0 +1,13 @@
|
||||
2024/05/31-12:37:49.951711 7f20a74006c0 Recovering log #6
|
||||
2024/05/31-12:37:50.022164 7f20a74006c0 Delete type=0 #6
|
||||
2024/05/31-12:37:50.022219 7f20a74006c0 Delete type=3 #4
|
||||
2024/05/31-12:57:42.253682 7f20a5a006c0 Level-0 table #10: started
|
||||
2024/05/31-12:57:42.253739 7f20a5a006c0 Level-0 table #10: 0 bytes OK
|
||||
2024/05/31-12:57:42.260074 7f20a5a006c0 Delete type=0 #8
|
||||
2024/05/31-12:57:42.279344 7f20a5a006c0 Manual compaction at level-0 from '!items!3GB0NAetYAVHIzmu' @ 72057594037927935 : 1 .. '!items!vHcRT3kQVWPHSz38' @ 0 : 0; will stop at '!items!vHcRT3kQVWPHSz38' @ 13 : 1
|
||||
2024/05/31-12:57:42.279371 7f20a5a006c0 Compacting 1@0 + 0@1 files
|
||||
2024/05/31-12:57:42.282723 7f20a5a006c0 Generated table #11@0: 13 keys, 7666 bytes
|
||||
2024/05/31-12:57:42.282737 7f20a5a006c0 Compacted 1@0 + 0@1 files => 7666 bytes
|
||||
2024/05/31-12:57:42.288596 7f20a5a006c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2024/05/31-12:57:42.288688 7f20a5a006c0 Delete type=2 #5
|
||||
2024/05/31-12:57:42.318921 7f20a5a006c0 Manual compaction at level-0 from '!items!vHcRT3kQVWPHSz38' @ 13 : 1 .. '!items!vHcRT3kQVWPHSz38' @ 0 : 0; will stop at (end)
|
5
packs/consequences/LOG.old
Normal file
5
packs/consequences/LOG.old
Normal file
@ -0,0 +1,5 @@
|
||||
2024/05/31-12:36:59.630199 7f04bf4006c0 Recovering log #3
|
||||
2024/05/31-12:36:59.631365 7f04bf4006c0 Level-0 table #5: started
|
||||
2024/05/31-12:36:59.641960 7f04bf4006c0 Level-0 table #5: 10948 bytes OK
|
||||
2024/05/31-12:36:59.690838 7f04bf4006c0 Delete type=0 #3
|
||||
2024/05/31-12:36:59.690928 7f04bf4006c0 Delete type=3 #2
|
BIN
packs/consequences/MANIFEST-000007
Normal file
BIN
packs/consequences/MANIFEST-000007
Normal file
Binary file not shown.
0
packs/gears/000009.log
Normal file
0
packs/gears/000009.log
Normal file
BIN
packs/gears/000011.ldb
Normal file
BIN
packs/gears/000011.ldb
Normal file
Binary file not shown.
1
packs/gears/CURRENT
Normal file
1
packs/gears/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000007
|
0
packs/gears/LOCK
Normal file
0
packs/gears/LOCK
Normal file
13
packs/gears/LOG
Normal file
13
packs/gears/LOG
Normal file
@ -0,0 +1,13 @@
|
||||
2024/05/31-12:37:50.024957 7f20a6a006c0 Recovering log #6
|
||||
2024/05/31-12:37:50.068244 7f20a6a006c0 Delete type=0 #6
|
||||
2024/05/31-12:37:50.068393 7f20a6a006c0 Delete type=3 #4
|
||||
2024/05/31-12:57:42.272250 7f20a5a006c0 Level-0 table #10: started
|
||||
2024/05/31-12:57:42.272277 7f20a5a006c0 Level-0 table #10: 0 bytes OK
|
||||
2024/05/31-12:57:42.279124 7f20a5a006c0 Delete type=0 #8
|
||||
2024/05/31-12:57:42.308486 7f20a5a006c0 Manual compaction at level-0 from '!items!1Gj3ATIVykyAQ5fD' @ 72057594037927935 : 1 .. '!items!zMiaz2HLsddO22H3' @ 0 : 0; will stop at '!items!zMiaz2HLsddO22H3' @ 99 : 1
|
||||
2024/05/31-12:57:42.308494 7f20a5a006c0 Compacting 1@0 + 0@1 files
|
||||
2024/05/31-12:57:42.312365 7f20a5a006c0 Generated table #11@0: 99 keys, 58930 bytes
|
||||
2024/05/31-12:57:42.312382 7f20a5a006c0 Compacted 1@0 + 0@1 files => 58930 bytes
|
||||
2024/05/31-12:57:42.318551 7f20a5a006c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2024/05/31-12:57:42.318708 7f20a5a006c0 Delete type=2 #5
|
||||
2024/05/31-12:57:42.318989 7f20a5a006c0 Manual compaction at level-0 from '!items!zMiaz2HLsddO22H3' @ 99 : 1 .. '!items!zMiaz2HLsddO22H3' @ 0 : 0; will stop at (end)
|
5
packs/gears/LOG.old
Normal file
5
packs/gears/LOG.old
Normal file
@ -0,0 +1,5 @@
|
||||
2024/05/31-12:36:59.694104 7f04c4c006c0 Recovering log #3
|
||||
2024/05/31-12:36:59.695341 7f04c4c006c0 Level-0 table #5: started
|
||||
2024/05/31-12:37:00.103755 7f04c4c006c0 Level-0 table #5: 87512 bytes OK
|
||||
2024/05/31-12:37:00.158532 7f04c4c006c0 Delete type=0 #3
|
||||
2024/05/31-12:37:00.158786 7f04c4c006c0 Delete type=3 #2
|
BIN
packs/gears/MANIFEST-000007
Normal file
BIN
packs/gears/MANIFEST-000007
Normal file
Binary file not shown.
0
packs/genelines/000009.log
Normal file
0
packs/genelines/000009.log
Normal file
BIN
packs/genelines/000011.ldb
Normal file
BIN
packs/genelines/000011.ldb
Normal file
Binary file not shown.
1
packs/genelines/CURRENT
Normal file
1
packs/genelines/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000007
|
0
packs/genelines/LOCK
Normal file
0
packs/genelines/LOCK
Normal file
13
packs/genelines/LOG
Normal file
13
packs/genelines/LOG
Normal file
@ -0,0 +1,13 @@
|
||||
2024/05/31-12:37:50.295525 7f20a7e006c0 Recovering log #6
|
||||
2024/05/31-12:37:50.344755 7f20a7e006c0 Delete type=0 #6
|
||||
2024/05/31-12:37:50.344847 7f20a7e006c0 Delete type=3 #4
|
||||
2024/05/31-12:57:42.332388 7f20a5a006c0 Level-0 table #10: started
|
||||
2024/05/31-12:57:42.332415 7f20a5a006c0 Level-0 table #10: 0 bytes OK
|
||||
2024/05/31-12:57:42.338850 7f20a5a006c0 Delete type=0 #8
|
||||
2024/05/31-12:57:42.365997 7f20a5a006c0 Manual compaction at level-0 from '!items!3o49zG4Xtc1I29j2' @ 72057594037927935 : 1 .. '!items!vDOAmovqE53dQzlh' @ 0 : 0; will stop at '!items!vDOAmovqE53dQzlh' @ 8 : 1
|
||||
2024/05/31-12:57:42.366005 7f20a5a006c0 Compacting 1@0 + 0@1 files
|
||||
2024/05/31-12:57:42.369253 7f20a5a006c0 Generated table #11@0: 8 keys, 7865 bytes
|
||||
2024/05/31-12:57:42.369293 7f20a5a006c0 Compacted 1@0 + 0@1 files => 7865 bytes
|
||||
2024/05/31-12:57:42.376725 7f20a5a006c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2024/05/31-12:57:42.376841 7f20a5a006c0 Delete type=2 #5
|
||||
2024/05/31-12:57:42.386385 7f20a5a006c0 Manual compaction at level-0 from '!items!vDOAmovqE53dQzlh' @ 8 : 1 .. '!items!vDOAmovqE53dQzlh' @ 0 : 0; will stop at (end)
|
5
packs/genelines/LOG.old
Normal file
5
packs/genelines/LOG.old
Normal file
@ -0,0 +1,5 @@
|
||||
2024/05/31-12:37:00.409789 7f04bfe006c0 Recovering log #3
|
||||
2024/05/31-12:37:00.410672 7f04bfe006c0 Level-0 table #5: started
|
||||
2024/05/31-12:37:00.432255 7f04bfe006c0 Level-0 table #5: 11820 bytes OK
|
||||
2024/05/31-12:37:00.469946 7f04bfe006c0 Delete type=0 #3
|
||||
2024/05/31-12:37:00.470035 7f04bfe006c0 Delete type=3 #2
|
BIN
packs/genelines/MANIFEST-000007
Normal file
BIN
packs/genelines/MANIFEST-000007
Normal file
Binary file not shown.
0
packs/injuries/000009.log
Normal file
0
packs/injuries/000009.log
Normal file
BIN
packs/injuries/000011.ldb
Normal file
BIN
packs/injuries/000011.ldb
Normal file
Binary file not shown.
1
packs/injuries/CURRENT
Normal file
1
packs/injuries/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000007
|
0
packs/injuries/LOCK
Normal file
0
packs/injuries/LOCK
Normal file
13
packs/injuries/LOG
Normal file
13
packs/injuries/LOG
Normal file
@ -0,0 +1,13 @@
|
||||
2024/05/31-12:37:50.071905 7f20a7e006c0 Recovering log #6
|
||||
2024/05/31-12:37:50.130041 7f20a7e006c0 Delete type=0 #6
|
||||
2024/05/31-12:37:50.130137 7f20a7e006c0 Delete type=3 #4
|
||||
2024/05/31-12:57:42.260202 7f20a5a006c0 Level-0 table #10: started
|
||||
2024/05/31-12:57:42.260227 7f20a5a006c0 Level-0 table #10: 0 bytes OK
|
||||
2024/05/31-12:57:42.266171 7f20a5a006c0 Delete type=0 #8
|
||||
2024/05/31-12:57:42.288778 7f20a5a006c0 Manual compaction at level-0 from '!items!2ZUnK7mjIeizobUM' @ 72057594037927935 : 1 .. '!items!xZL7aO0xOOZvB2cs' @ 0 : 0; will stop at '!items!xZL7aO0xOOZvB2cs' @ 53 : 1
|
||||
2024/05/31-12:57:42.288786 7f20a5a006c0 Compacting 1@0 + 0@1 files
|
||||
2024/05/31-12:57:42.292530 7f20a5a006c0 Generated table #11@0: 53 keys, 14817 bytes
|
||||
2024/05/31-12:57:42.292553 7f20a5a006c0 Compacted 1@0 + 0@1 files => 14817 bytes
|
||||
2024/05/31-12:57:42.298878 7f20a5a006c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2024/05/31-12:57:42.298975 7f20a5a006c0 Delete type=2 #5
|
||||
2024/05/31-12:57:42.318947 7f20a5a006c0 Manual compaction at level-0 from '!items!xZL7aO0xOOZvB2cs' @ 53 : 1 .. '!items!xZL7aO0xOOZvB2cs' @ 0 : 0; will stop at (end)
|
5
packs/injuries/LOG.old
Normal file
5
packs/injuries/LOG.old
Normal file
@ -0,0 +1,5 @@
|
||||
2024/05/31-12:37:00.162792 7f04c56006c0 Recovering log #3
|
||||
2024/05/31-12:37:00.163468 7f04c56006c0 Level-0 table #5: started
|
||||
2024/05/31-12:37:00.172845 7f04c56006c0 Level-0 table #5: 21537 bytes OK
|
||||
2024/05/31-12:37:00.220464 7f04c56006c0 Delete type=0 #3
|
||||
2024/05/31-12:37:00.220541 7f04c56006c0 Delete type=3 #2
|
BIN
packs/injuries/MANIFEST-000007
Normal file
BIN
packs/injuries/MANIFEST-000007
Normal file
Binary file not shown.
0
packs/languages/000009.log
Normal file
0
packs/languages/000009.log
Normal file
BIN
packs/languages/000011.ldb
Normal file
BIN
packs/languages/000011.ldb
Normal file
Binary file not shown.
1
packs/languages/CURRENT
Normal file
1
packs/languages/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000007
|
0
packs/languages/LOCK
Normal file
0
packs/languages/LOCK
Normal file
13
packs/languages/LOG
Normal file
13
packs/languages/LOG
Normal file
@ -0,0 +1,13 @@
|
||||
2024/05/31-12:37:50.189585 7f20a74006c0 Recovering log #6
|
||||
2024/05/31-12:37:50.241798 7f20a74006c0 Delete type=0 #6
|
||||
2024/05/31-12:37:50.241887 7f20a74006c0 Delete type=3 #4
|
||||
2024/05/31-12:57:42.339058 7f20a5a006c0 Level-0 table #10: started
|
||||
2024/05/31-12:57:42.339101 7f20a5a006c0 Level-0 table #10: 0 bytes OK
|
||||
2024/05/31-12:57:42.345459 7f20a5a006c0 Delete type=0 #8
|
||||
2024/05/31-12:57:42.376981 7f20a5a006c0 Manual compaction at level-0 from '!items!0OaXJm1iih3gYI6P' @ 72057594037927935 : 1 .. '!items!xbpEhhdqx4o5KUJA' @ 0 : 0; will stop at '!items!xbpEhhdqx4o5KUJA' @ 15 : 1
|
||||
2024/05/31-12:57:42.376991 7f20a5a006c0 Compacting 1@0 + 0@1 files
|
||||
2024/05/31-12:57:42.380150 7f20a5a006c0 Generated table #11@0: 15 keys, 1725 bytes
|
||||
2024/05/31-12:57:42.380181 7f20a5a006c0 Compacted 1@0 + 0@1 files => 1725 bytes
|
||||
2024/05/31-12:57:42.386148 7f20a5a006c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2024/05/31-12:57:42.386245 7f20a5a006c0 Delete type=2 #5
|
||||
2024/05/31-12:57:42.386396 7f20a5a006c0 Manual compaction at level-0 from '!items!xbpEhhdqx4o5KUJA' @ 15 : 1 .. '!items!xbpEhhdqx4o5KUJA' @ 0 : 0; will stop at (end)
|
5
packs/languages/LOG.old
Normal file
5
packs/languages/LOG.old
Normal file
@ -0,0 +1,5 @@
|
||||
2024/05/31-12:37:00.283664 7f04bf4006c0 Recovering log #3
|
||||
2024/05/31-12:37:00.285227 7f04bf4006c0 Level-0 table #5: started
|
||||
2024/05/31-12:37:00.295941 7f04bf4006c0 Level-0 table #5: 2524 bytes OK
|
||||
2024/05/31-12:37:00.342228 7f04bf4006c0 Delete type=0 #3
|
||||
2024/05/31-12:37:00.342291 7f04bf4006c0 Delete type=3 #2
|
BIN
packs/languages/MANIFEST-000007
Normal file
BIN
packs/languages/MANIFEST-000007
Normal file
Binary file not shown.
0
packs/skills/000009.log
Normal file
0
packs/skills/000009.log
Normal file
BIN
packs/skills/000011.ldb
Normal file
BIN
packs/skills/000011.ldb
Normal file
Binary file not shown.
1
packs/skills/CURRENT
Normal file
1
packs/skills/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000007
|
0
packs/skills/LOCK
Normal file
0
packs/skills/LOCK
Normal file
13
packs/skills/LOG
Normal file
13
packs/skills/LOG
Normal file
@ -0,0 +1,13 @@
|
||||
2024/05/31-12:37:49.885012 7f20acc006c0 Recovering log #6
|
||||
2024/05/31-12:37:49.948288 7f20acc006c0 Delete type=0 #6
|
||||
2024/05/31-12:37:49.948350 7f20acc006c0 Delete type=3 #4
|
||||
2024/05/31-12:57:42.266276 7f20a5a006c0 Level-0 table #10: started
|
||||
2024/05/31-12:57:42.266304 7f20a5a006c0 Level-0 table #10: 0 bytes OK
|
||||
2024/05/31-12:57:42.272138 7f20a5a006c0 Delete type=0 #8
|
||||
2024/05/31-12:57:42.299102 7f20a5a006c0 Manual compaction at level-0 from '!items!0xlCQMyGIQJWPBM1' @ 72057594037927935 : 1 .. '!items!ukWyqxOnKGRp7Owm' @ 0 : 0; will stop at '!items!ukWyqxOnKGRp7Owm' @ 25 : 1
|
||||
2024/05/31-12:57:42.299113 7f20a5a006c0 Compacting 1@0 + 0@1 files
|
||||
2024/05/31-12:57:42.302367 7f20a5a006c0 Generated table #11@0: 25 keys, 11402 bytes
|
||||
2024/05/31-12:57:42.302389 7f20a5a006c0 Compacted 1@0 + 0@1 files => 11402 bytes
|
||||
2024/05/31-12:57:42.308292 7f20a5a006c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2024/05/31-12:57:42.308373 7f20a5a006c0 Delete type=2 #5
|
||||
2024/05/31-12:57:42.318969 7f20a5a006c0 Manual compaction at level-0 from '!items!ukWyqxOnKGRp7Owm' @ 25 : 1 .. '!items!ukWyqxOnKGRp7Owm' @ 0 : 0; will stop at (end)
|
5
packs/skills/LOG.old
Normal file
5
packs/skills/LOG.old
Normal file
@ -0,0 +1,5 @@
|
||||
2024/05/31-12:36:59.552707 7f04bfe006c0 Recovering log #3
|
||||
2024/05/31-12:36:59.558358 7f04bfe006c0 Level-0 table #5: started
|
||||
2024/05/31-12:36:59.579826 7f04bfe006c0 Level-0 table #5: 15330 bytes OK
|
||||
2024/05/31-12:36:59.626405 7f04bfe006c0 Delete type=0 #3
|
||||
2024/05/31-12:36:59.626466 7f04bfe006c0 Delete type=3 #2
|
BIN
packs/skills/MANIFEST-000007
Normal file
BIN
packs/skills/MANIFEST-000007
Normal file
Binary file not shown.
0
packs/subcultures/000009.log
Normal file
0
packs/subcultures/000009.log
Normal file
BIN
packs/subcultures/000011.ldb
Normal file
BIN
packs/subcultures/000011.ldb
Normal file
Binary file not shown.
1
packs/subcultures/CURRENT
Normal file
1
packs/subcultures/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000007
|
0
packs/subcultures/LOCK
Normal file
0
packs/subcultures/LOCK
Normal file
13
packs/subcultures/LOG
Normal file
13
packs/subcultures/LOG
Normal file
@ -0,0 +1,13 @@
|
||||
2024/05/31-12:37:50.347603 7f20acc006c0 Recovering log #6
|
||||
2024/05/31-12:37:50.403306 7f20acc006c0 Delete type=0 #6
|
||||
2024/05/31-12:37:50.403397 7f20acc006c0 Delete type=3 #4
|
||||
2024/05/31-12:57:42.397507 7f20a5a006c0 Level-0 table #10: started
|
||||
2024/05/31-12:57:42.397541 7f20a5a006c0 Level-0 table #10: 0 bytes OK
|
||||
2024/05/31-12:57:42.403638 7f20a5a006c0 Delete type=0 #8
|
||||
2024/05/31-12:57:42.419891 7f20a5a006c0 Manual compaction at level-0 from '!items!0xmW2R5sieo5k4d9' @ 72057594037927935 : 1 .. '!items!xaHXF4xCPb598RYA' @ 0 : 0; will stop at '!items!xaHXF4xCPb598RYA' @ 8 : 1
|
||||
2024/05/31-12:57:42.419910 7f20a5a006c0 Compacting 1@0 + 0@1 files
|
||||
2024/05/31-12:57:42.423850 7f20a5a006c0 Generated table #11@0: 8 keys, 4158 bytes
|
||||
2024/05/31-12:57:42.423886 7f20a5a006c0 Compacted 1@0 + 0@1 files => 4158 bytes
|
||||
2024/05/31-12:57:42.430495 7f20a5a006c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2024/05/31-12:57:42.430590 7f20a5a006c0 Delete type=2 #5
|
||||
2024/05/31-12:57:42.436970 7f20a5a006c0 Manual compaction at level-0 from '!items!xaHXF4xCPb598RYA' @ 8 : 1 .. '!items!xaHXF4xCPb598RYA' @ 0 : 0; will stop at (end)
|
5
packs/subcultures/LOG.old
Normal file
5
packs/subcultures/LOG.old
Normal file
@ -0,0 +1,5 @@
|
||||
2024/05/31-12:37:00.473437 7f04bf4006c0 Recovering log #3
|
||||
2024/05/31-12:37:00.473817 7f04bf4006c0 Level-0 table #5: started
|
||||
2024/05/31-12:37:00.494156 7f04bf4006c0 Level-0 table #5: 6179 bytes OK
|
||||
2024/05/31-12:37:00.530987 7f04bf4006c0 Delete type=0 #3
|
||||
2024/05/31-12:37:00.531064 7f04bf4006c0 Delete type=3 #2
|
BIN
packs/subcultures/MANIFEST-000007
Normal file
BIN
packs/subcultures/MANIFEST-000007
Normal file
Binary file not shown.
0
packs/weaknesses/000009.log
Normal file
0
packs/weaknesses/000009.log
Normal file
BIN
packs/weaknesses/000011.ldb
Normal file
BIN
packs/weaknesses/000011.ldb
Normal file
Binary file not shown.
1
packs/weaknesses/CURRENT
Normal file
1
packs/weaknesses/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000007
|
0
packs/weaknesses/LOCK
Normal file
0
packs/weaknesses/LOCK
Normal file
13
packs/weaknesses/LOG
Normal file
13
packs/weaknesses/LOG
Normal file
@ -0,0 +1,13 @@
|
||||
2024/05/31-12:37:50.133633 7f20acc006c0 Recovering log #6
|
||||
2024/05/31-12:37:50.185827 7f20acc006c0 Delete type=0 #6
|
||||
2024/05/31-12:37:50.185917 7f20acc006c0 Delete type=3 #4
|
||||
2024/05/31-12:57:42.319061 7f20a5a006c0 Level-0 table #10: started
|
||||
2024/05/31-12:57:42.319098 7f20a5a006c0 Level-0 table #10: 0 bytes OK
|
||||
2024/05/31-12:57:42.325607 7f20a5a006c0 Delete type=0 #8
|
||||
2024/05/31-12:57:42.345684 7f20a5a006c0 Manual compaction at level-0 from '!items!FxCIbJm3T44kC0sG' @ 72057594037927935 : 1 .. '!items!VDYXsT8AZ6krv93p' @ 0 : 0; will stop at '!items!VDYXsT8AZ6krv93p' @ 4 : 1
|
||||
2024/05/31-12:57:42.345699 7f20a5a006c0 Compacting 1@0 + 0@1 files
|
||||
2024/05/31-12:57:42.349053 7f20a5a006c0 Generated table #11@0: 4 keys, 837 bytes
|
||||
2024/05/31-12:57:42.349088 7f20a5a006c0 Compacted 1@0 + 0@1 files => 837 bytes
|
||||
2024/05/31-12:57:42.355720 7f20a5a006c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2024/05/31-12:57:42.355816 7f20a5a006c0 Delete type=2 #5
|
||||
2024/05/31-12:57:42.386362 7f20a5a006c0 Manual compaction at level-0 from '!items!VDYXsT8AZ6krv93p' @ 4 : 1 .. '!items!VDYXsT8AZ6krv93p' @ 0 : 0; will stop at (end)
|
5
packs/weaknesses/LOG.old
Normal file
5
packs/weaknesses/LOG.old
Normal file
@ -0,0 +1,5 @@
|
||||
2024/05/31-12:37:00.223304 7f04bfe006c0 Recovering log #3
|
||||
2024/05/31-12:37:00.223338 7f04bfe006c0 Level-0 table #5: started
|
||||
2024/05/31-12:37:00.234424 7f04bfe006c0 Level-0 table #5: 965 bytes OK
|
||||
2024/05/31-12:37:00.281050 7f04bfe006c0 Delete type=0 #3
|
||||
2024/05/31-12:37:00.281171 7f04bfe006c0 Delete type=3 #2
|
BIN
packs/weaknesses/MANIFEST-000007
Normal file
BIN
packs/weaknesses/MANIFEST-000007
Normal file
Binary file not shown.
15
system.json
15
system.json
@ -4,11 +4,10 @@
|
||||
"description": "Shadows over Sol for FoundryVTT",
|
||||
"url": "https://www.uberwald.me/gitea/public/foundryvtt-shadows-over-sol/",
|
||||
"license": "LICENSE.txt",
|
||||
"version": "10.0.6",
|
||||
"version": "12.0.0",
|
||||
"compatibility": {
|
||||
"minimum": "10",
|
||||
"verified": "10.285",
|
||||
"maximum": "10"
|
||||
"minimum": "11",
|
||||
"verified": "12"
|
||||
},
|
||||
"esmodules": [
|
||||
"module/sos-main.js"
|
||||
@ -109,7 +108,9 @@
|
||||
],
|
||||
"socket": true,
|
||||
"manifest": "https://www.uberwald.me/gitea/public/foundryvtt-shadows-over-sol/raw/branch/v10/system.json",
|
||||
"download": "https://www.uberwald.me/gitea/public/foundryvtt-shadows-over-sol/archive/foundryvtt-shadows-over-sol-10.0.6.zip",
|
||||
"gridDistance": 5,
|
||||
"gridUnits": "ft"
|
||||
"download": "https://www.uberwald.me/gitea/public/foundryvtt-shadows-over-sol/archive/foundryvtt-shadows-over-sol-12.0.0.zip",
|
||||
"grid": {
|
||||
"distance": 5,
|
||||
"units": "ft"
|
||||
}
|
||||
}
|
@ -390,12 +390,12 @@
|
||||
<hr>
|
||||
<h3>Biography : </h3>
|
||||
<div class="form-group editor">
|
||||
{{editor data.history target="system.history" button=true owner=owner editable=editable}}
|
||||
{{editor history target="system.history" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
<hr>
|
||||
<h3>Notes : </h3>
|
||||
<div class="form-group editor">
|
||||
{{editor data.notes target="system.notes" button=true owner=owner editable=editable}}
|
||||
{{editor notes target="system.notes" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
<hr>
|
||||
{{>"systems/foundryvtt-shadows-over-sol/templates/editor-notes-gm.html"}}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{{#if data.isGM}}
|
||||
<h3>GM Notes : </h3>
|
||||
<div class="form-group editor">
|
||||
{{editor data.gmnotes target="system.gmnotes" button=true owner=owner editable=editable}}
|
||||
{{editor gmnotes target="system.gmnotes" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
@ -36,7 +36,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Description</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -46,6 +46,6 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Description</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -27,7 +27,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Description</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -13,7 +13,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Description</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="flexcol">
|
||||
@ -31,7 +31,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Weakness</label>
|
||||
<div class="form-group small-editor">
|
||||
{{editor data.weakness target="system.weakness" button=true owner=owner editable=editable}}
|
||||
{{editor weakness target="system.weakness" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -17,7 +17,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Description</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -13,7 +13,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Description</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -24,7 +24,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Notes</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.notes target="system.notes" button=true owner=owner editable=editable}}
|
||||
{{editor notes target="system.notes" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -27,7 +27,7 @@
|
||||
{{/each}}
|
||||
</ul>
|
||||
<label class="generic-label">Description</label>
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
@ -25,7 +25,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Description</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -13,7 +13,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Description</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="flexcol">
|
||||
|
@ -26,7 +26,7 @@
|
||||
<div class="flexcol">
|
||||
<label class="generic-label">Description</label>
|
||||
<div class="form-group medium-editor">
|
||||
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
||||
{{editor description target="system.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user