mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
Correct rogue shield
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user