mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
. (#1322)
This commit is contained in:
parent
81e7f24d22
commit
e6a242ba43
208 changed files with 421 additions and 206 deletions
|
|
@ -57,7 +57,11 @@ export default class ActionSelectionDialog extends HandlebarsApplicationMixin(Ap
|
||||||
|
|
||||||
/** @inheritDoc */
|
/** @inheritDoc */
|
||||||
async _prepareContext(options) {
|
async _prepareContext(options) {
|
||||||
const actions = this.#item.system.actionsList,
|
const actions = this.#item.system.actionsList.map(action => ({
|
||||||
|
...action.toObject(),
|
||||||
|
id: action.id,
|
||||||
|
img: action.baseAction ? action.parent.parent.img : action.img
|
||||||
|
})),
|
||||||
itemName = this.#item.name;
|
itemName = this.#item.name;
|
||||||
return {
|
return {
|
||||||
...(await super._prepareContext(options)),
|
...(await super._prepareContext(options)),
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel
|
||||||
_id: new fields.DocumentIdField({ initial: () => foundry.utils.randomID() }),
|
_id: new fields.DocumentIdField({ initial: () => foundry.utils.randomID() }),
|
||||||
systemPath: new fields.StringField({ required: true, initial: 'actions' }),
|
systemPath: new fields.StringField({ required: true, initial: 'actions' }),
|
||||||
type: new fields.StringField({ initial: undefined, readonly: true, required: true }),
|
type: new fields.StringField({ initial: undefined, readonly: true, required: true }),
|
||||||
|
baseAction: new fields.BooleanField({ initial: false }),
|
||||||
name: new fields.StringField({ initial: undefined }),
|
name: new fields.StringField({ initial: undefined }),
|
||||||
description: new fields.HTMLField(),
|
description: new fields.HTMLField(),
|
||||||
img: new fields.FilePathField({ initial: undefined, categories: ['IMAGE'], base64: false }),
|
img: new fields.FilePathField({ initial: undefined, categories: ['IMAGE'], base64: false }),
|
||||||
|
|
|
||||||
|
|
@ -258,7 +258,11 @@ export function ActionMixin(Base) {
|
||||||
const systemData = {
|
const systemData = {
|
||||||
title: game.i18n.localize('DAGGERHEART.CONFIG.ActionType.action'),
|
title: game.i18n.localize('DAGGERHEART.CONFIG.ActionType.action'),
|
||||||
origin: origin,
|
origin: origin,
|
||||||
action: { name: this.name, img: this.img, tags: this.tags ? this.tags : ['Spell', 'Arcana', 'Lv 10'] },
|
action: {
|
||||||
|
name: this.name,
|
||||||
|
img: this.baseAction ? this.parent.parent.img : this.img,
|
||||||
|
tags: this.tags ? this.tags : ['Spell', 'Arcana', 'Lv 10']
|
||||||
|
},
|
||||||
itemOrigin: this.item,
|
itemOrigin: this.item,
|
||||||
description: this.description || (this.item instanceof Item ? this.item.system.description : '')
|
description: this.description || (this.item instanceof Item ? this.item.system.description : '')
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,8 @@ export default class DHWeapon extends AttachableItem {
|
||||||
name: 'Attack',
|
name: 'Attack',
|
||||||
img: 'icons/skills/melee/blood-slash-foam-red.webp',
|
img: 'icons/skills/melee/blood-slash-foam-red.webp',
|
||||||
_id: foundry.utils.randomID(),
|
_id: foundry.utils.randomID(),
|
||||||
|
baseAction: true,
|
||||||
|
chatDisplay: false,
|
||||||
systemPath: 'attack',
|
systemPath: 'attack',
|
||||||
type: 'attack',
|
type: 'attack',
|
||||||
range: 'melee',
|
range: 'melee',
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "31XEMDUyjpqFA7H9",
|
"_id": "31XEMDUyjpqFA7H9",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "fKTeCKjfyQauf5bA",
|
"_id": "fKTeCKjfyQauf5bA",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -78,7 +79,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "close",
|
"range": "close",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryFar",
|
"range": "veryFar",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -73,7 +74,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "fKTeCKjfyQauf5bA",
|
"_id": "fKTeCKjfyQauf5bA",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -78,7 +79,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "fKTeCKjfyQauf5bA",
|
"_id": "fKTeCKjfyQauf5bA",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -107,7 +108,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryFar",
|
"range": "veryFar",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -108,7 +109,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "close",
|
"range": "close",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -91,6 +91,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -145,7 +146,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "close",
|
"range": "close",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -108,7 +109,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "fKTeCKjfyQauf5bA",
|
"_id": "fKTeCKjfyQauf5bA",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -108,7 +109,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -108,7 +109,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -93,6 +93,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -147,7 +148,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "B2LewQYZb9Jhl4A6",
|
"_id": "B2LewQYZb9Jhl4A6",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -108,7 +109,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "close",
|
"range": "close",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -117,7 +118,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -89,6 +89,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "YHE291ruSIJAh44F",
|
"_id": "YHE291ruSIJAh44F",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -143,7 +144,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "31XEMDUyjpqFA7H9",
|
"_id": "31XEMDUyjpqFA7H9",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "YHE291ruSIJAh44F",
|
"_id": "YHE291ruSIJAh44F",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "31XEMDUyjpqFA7H9",
|
"_id": "31XEMDUyjpqFA7H9",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -108,7 +109,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "YHE291ruSIJAh44F",
|
"_id": "YHE291ruSIJAh44F",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "YHE291ruSIJAh44F",
|
"_id": "YHE291ruSIJAh44F",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "31XEMDUyjpqFA7H9",
|
"_id": "31XEMDUyjpqFA7H9",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryFar",
|
"range": "veryFar",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "B2LewQYZb9Jhl4A6",
|
"_id": "B2LewQYZb9Jhl4A6",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "close",
|
"range": "close",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "B2LewQYZb9Jhl4A6",
|
"_id": "B2LewQYZb9Jhl4A6",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryFar",
|
"range": "veryFar",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -72,7 +73,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "8j3yjH0TiwwZsaBW",
|
"_id": "8j3yjH0TiwwZsaBW",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "i9jZXe5K5nIc58AG",
|
"_id": "i9jZXe5K5nIc58AG",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "close",
|
"range": "close",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryFar",
|
"range": "veryFar",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "YHE291ruSIJAh44F",
|
"_id": "YHE291ruSIJAh44F",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "tSwiEa50USNh6uEJ",
|
"_id": "tSwiEa50USNh6uEJ",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -108,7 +109,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "31XEMDUyjpqFA7H9",
|
"_id": "31XEMDUyjpqFA7H9",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryFar",
|
"range": "veryFar",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "i9jZXe5K5nIc58AG",
|
"_id": "i9jZXe5K5nIc58AG",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "ZSdAawliPNsoA7nP",
|
"_id": "ZSdAawliPNsoA7nP",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -89,6 +89,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryFar",
|
"range": "veryFar",
|
||||||
|
|
@ -143,7 +144,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "fKTeCKjfyQauf5bA",
|
"_id": "fKTeCKjfyQauf5bA",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "Zz0k98NVLRpebKgq",
|
"_id": "Zz0k98NVLRpebKgq",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryFar",
|
"range": "veryFar",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "31XEMDUyjpqFA7H9",
|
"_id": "31XEMDUyjpqFA7H9",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -108,7 +109,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "fKTeCKjfyQauf5bA",
|
"_id": "fKTeCKjfyQauf5bA",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -78,7 +79,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "YHE291ruSIJAh44F",
|
"_id": "YHE291ruSIJAh44F",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "6lmY7PMkxI3kmkpb",
|
"_id": "6lmY7PMkxI3kmkpb",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "melee",
|
"range": "melee",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "YHE291ruSIJAh44F",
|
"_id": "YHE291ruSIJAh44F",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "far",
|
"range": "far",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "YHE291ruSIJAh44F",
|
"_id": "YHE291ruSIJAh44F",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryClose",
|
"range": "veryClose",
|
||||||
|
|
@ -71,7 +72,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "qY9ylkwxFwRlPy6a",
|
"_id": "qY9ylkwxFwRlPy6a",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "close",
|
"range": "close",
|
||||||
|
|
@ -101,7 +102,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
"name": "Attack",
|
"name": "Attack",
|
||||||
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
"img": "icons/skills/melee/blood-slash-foam-red.webp",
|
||||||
"_id": "YHE291ruSIJAh44F",
|
"_id": "YHE291ruSIJAh44F",
|
||||||
|
"baseAction": true,
|
||||||
"systemPath": "attack",
|
"systemPath": "attack",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"range": "veryFar",
|
"range": "veryFar",
|
||||||
|
|
@ -79,7 +80,7 @@
|
||||||
"includeBase": false
|
"includeBase": false
|
||||||
},
|
},
|
||||||
"description": "",
|
"description": "",
|
||||||
"chatDisplay": true,
|
"chatDisplay": false,
|
||||||
"actionType": "action",
|
"actionType": "action",
|
||||||
"cost": [],
|
"cost": [],
|
||||||
"uses": {
|
"uses": {
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue