reldens
Version:
Reldens - MMORPG Platform
27 lines (25 loc) • 739 B
JavaScript
/**
*
* Reldens - SkillSchema
*
*/
module.exports.SkillSchema = {
// id: {type: 'int'},
key: {type: 'string'},
type: {type: 'int'},
autoValidation: {type: 'int'},
skillDelay: {type: 'int'},
castTime: {type: 'int'},
usesLimit: {type: 'int'},
range: {type: 'int'},
rangeAutomaticValidation: {type: 'int'},
rangePropertyX: {type: 'string'},
rangePropertyY: {type: 'string'},
// rangeTargetPropertyX: {type: 'string'},
// rangeTargetPropertyY: {type: 'string'},
allowSelfTarget: {type: 'int'},
// criticalChance: {type: 'int'},
// criticalMultiplier: {type: 'int'},
// criticalFixedValue: {type: 'int'},
// customData: {type: 'string'},
};