Got it working

This commit is contained in:
Joshua Seigler 2019-05-06 03:44:45 -04:00
parent 3b3e3c9c42
commit 1852bbf12e
49 changed files with 530 additions and 294 deletions

View file

@ -0,0 +1,34 @@
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;