Add Moze's skill text

This commit is contained in:
Joshua Seigler 2019-06-10 00:11:47 -04:00
parent 17cc263fdb
commit 95439b7225
6 changed files with 4 additions and 56 deletions

View file

@ -4,7 +4,7 @@ import Home from '@pages/Home';
import Operative from '@pages/Operative'; import Operative from '@pages/Operative';
import Siren from '@pages/Siren'; import Siren from '@pages/Siren';
import Beastmaster from '@pages/Beastmaster'; import Beastmaster from '@pages/Beastmaster';
import BotJock from '@pages/BotJock'; import Gunner from '@pages/Gunner';
const App = () => const App = () =>
(<Router> (<Router>
@ -12,7 +12,7 @@ const App = () =>
<Operative path='/operative' /> <Operative path='/operative' />
<Siren path='/siren' /> <Siren path='/siren' />
<Beastmaster path='/beastmaster' /> <Beastmaster path='/beastmaster' />
<BotJock path='/bot-jock' /> <Gunner path='/gunner' />
</Router>); </Router>);
export default App; export default App;

View file

@ -5,7 +5,7 @@ export default function Nav ({ path }) {
{ name: 'Zane', path: '/operative' }, { name: 'Zane', path: '/operative' },
{ name: 'Amara', path: '/siren' }, { name: 'Amara', path: '/siren' },
{ name: 'FL4K', path: '/beastmaster' }, { name: 'FL4K', path: '/beastmaster' },
{ name: 'Moze', path: '/bot-jock' }, { name: 'Moze', path: '/gunner' },
]; ];
return ( return (
<nav> <nav>

View file

@ -1,3 +0,0 @@
VaultHunter {
opacity: 0.5;
}

View file

@ -1,14 +0,0 @@
import VaultHunter from '@components/VaultHunter';
import skills from './skills.js';
export default function BotJock ({ path }) {
return (
<VaultHunter
name='Moze'
discipline='Bot Jock'
skills={skills}
path={path}
/>
);
}

View file

@ -1,35 +0,0 @@
import SKILLS from '@constants/skills';
/* eslint-disable quotes */
const skills = {
"Tree One": {
"0": {
"?": {
text: "?",
type: SKILLS.ACTION_SKILL,
ranks: 0,
effect: (rank, level) => `?`,
},
},
},
"Tree Two": {
"0": {
"?": {
text: "?",
type: SKILLS.ACTION_SKILL,
effect: (rank, level) => `?`,
},
},
},
"Tree Three": {
"0": {
"?": {
text: "?",
type: SKILLS.ACTION_SKILL,
effect: (rank, level) => `?`,
},
},
},
};
export default skills;

View file

@ -7,7 +7,7 @@ export default function () {
{ name: 'Zane', job: 'the Operative', path: '/operative' }, { name: 'Zane', job: 'the Operative', path: '/operative' },
{ name: 'Amara', job: 'the Siren', path: '/siren' }, { name: 'Amara', job: 'the Siren', path: '/siren' },
{ name: 'FL4K', job: 'the Beastmaster', path: '/beastmaster' }, { name: 'FL4K', job: 'the Beastmaster', path: '/beastmaster' },
{ name: 'Moze', job: 'the Bot Jock', path: '/bot-jock' }, { name: 'Moze', job: 'the Gunner', path: '/gunner' },
]; ];
return ( return (
<div> <div>