Correct rogue shield

This commit is contained in:
Blade Barringer
2015-09-29 12:20:57 -05:00
parent cc0eb7d672
commit 8676e660a8
2 changed files with 4 additions and 12 deletions

View File

@@ -16,16 +16,6 @@ let head = {
5: { per: 12, value: 80, last: true },
};
let shield = {
0: { str: 0, value: 0 },
1: { str: 2, value: 20 },
2: { str: 3, value: 35 },
3: { str: 4, value: 50 },
4: { str: 6, value: 70 },
5: { str: 8, value: 90 },
6: { str: 10, value: 120, last: true },
};
let weapon = {
0: { str: 0, value: 0 },
1: { str: 2, value: 20 },
@@ -39,7 +29,6 @@ let weapon = {
let rogueSet = {
armor: armor,
head: head,
shield: shield,
weapon: weapon,
};

View File

@@ -1,13 +1,16 @@
import {translator as t} from '../helpers';
import {cloneDeep} from 'lodash';
import events from '../events';
import {base as baseShield} from './sets/base';
import {shield as healerShield} from './sets/healer';
import {shield as rogueShield} from './sets/rogue';
import {weapon as rogueWeapon} from './sets/rogue';
import {shield as warriorShield} from './sets/warrior';
import {shield as wizardShield} from './sets/wizard';
let rogueShield = cloneDeep(rogueWeapon);
let shield = {
base: baseShield,