refactored Skillcheck Command
This commit is contained in:
14
functions/getAttributeLevels.js
Normal file
14
functions/getAttributeLevels.js
Normal file
@ -0,0 +1,14 @@
|
||||
const globals = require('../globals');
|
||||
|
||||
const getAttributeLevels = (Attributes = [], Character = {}) => {
|
||||
let AttributeId;
|
||||
let AttributeLevel;
|
||||
let AttributeList = [];
|
||||
for (let Attribute of Attributes) {
|
||||
AttributeId = globals.Werte.find((attribute) => attribute.kuerzel === Attribute).id;
|
||||
AttributeLevel = Character.attributes.find((att) => att.id === AttributeId).level;
|
||||
AttributeList.push({ Name: Attribute, Level: AttributeLevel });
|
||||
}
|
||||
return AttributeList;
|
||||
};
|
||||
module.exports = { getAttributeLevels};
|
Reference in New Issue
Block a user