mirror of
https://github.com/seigler/bl3skills.com
synced 2025-07-27 01:36:12 +00:00
⚡ Add Moze's skill text
This commit is contained in:
parent
17cc263fdb
commit
95439b7225
6 changed files with 4 additions and 56 deletions
|
@ -4,7 +4,7 @@ import Home from '@pages/Home';
|
|||
import Operative from '@pages/Operative';
|
||||
import Siren from '@pages/Siren';
|
||||
import Beastmaster from '@pages/Beastmaster';
|
||||
import BotJock from '@pages/BotJock';
|
||||
import Gunner from '@pages/Gunner';
|
||||
|
||||
const App = () =>
|
||||
(<Router>
|
||||
|
@ -12,7 +12,7 @@ const App = () =>
|
|||
<Operative path='/operative' />
|
||||
<Siren path='/siren' />
|
||||
<Beastmaster path='/beastmaster' />
|
||||
<BotJock path='/bot-jock' />
|
||||
<Gunner path='/gunner' />
|
||||
</Router>);
|
||||
|
||||
export default App;
|
||||
|
|
|
@ -5,7 +5,7 @@ export default function Nav ({ path }) {
|
|||
{ name: 'Zane', path: '/operative' },
|
||||
{ name: 'Amara', path: '/siren' },
|
||||
{ name: 'FL4K', path: '/beastmaster' },
|
||||
{ name: 'Moze', path: '/bot-jock' },
|
||||
{ name: 'Moze', path: '/gunner' },
|
||||
];
|
||||
return (
|
||||
<nav>
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
VaultHunter {
|
||||
opacity: 0.5;
|
||||
}
|
|
@ -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}
|
||||
/>
|
||||
);
|
||||
}
|
|
@ -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;
|
|
@ -7,7 +7,7 @@ export default function () {
|
|||
{ name: 'Zane', job: 'the Operative', path: '/operative' },
|
||||
{ name: 'Amara', job: 'the Siren', path: '/siren' },
|
||||
{ name: 'FL4K', job: 'the Beastmaster', path: '/beastmaster' },
|
||||
{ name: 'Moze', job: 'the Bot Jock', path: '/bot-jock' },
|
||||
{ name: 'Moze', job: 'the Gunner', path: '/gunner' },
|
||||
];
|
||||
return (
|
||||
<div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue