mirror of
https://github.com/seigler/bl3skills.com
synced 2025-07-26 09:16:11 +00:00
34 lines
537 B
JavaScript
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;
|