bl3skills.com/src/pages/BotJock/skills.js
2019-05-06 03:44:45 -04:00

34 lines
537 B
JavaScript

import SKILLS from '@constants/skills';
const skills = {
"Tree One": {
"0": {
"?": {
text: "?",
type: SKILLS.ACTION_SKILL,
ranks: 0,
effect: rank => `?`,
},
},
},
"Tree Two": {
"0": {
"?": {
text: "?",
type: SKILLS.ACTION_SKILL,
effect: rank => `?`,
},
},
},
"Tree Three": {
"0": {
"?": {
text: "?",
type: SKILLS.ACTION_SKILL,
effect: rank => `?`,
},
},
},
};
export default skills;