mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 07:37:25 +01:00
Add sets
This commit is contained in:
46
common/script/src/content/gear/sets/rogue.js
Normal file
46
common/script/src/content/gear/sets/rogue.js
Normal file
@@ -0,0 +1,46 @@
|
||||
import t from '../../helpers/translator';
|
||||
import events from '../../events';
|
||||
|
||||
export var armor = {
|
||||
1: {
|
||||
text: t('armorRogue1Text'),
|
||||
notes: t('armorRogue1Notes', {
|
||||
per: 6
|
||||
}),
|
||||
per: 6,
|
||||
value: 30
|
||||
},
|
||||
2: {
|
||||
text: t('armorRogue2Text'),
|
||||
notes: t('armorRogue2Notes', {
|
||||
per: 9
|
||||
}),
|
||||
per: 9,
|
||||
value: 45
|
||||
},
|
||||
3: {
|
||||
text: t('armorRogue3Text'),
|
||||
notes: t('armorRogue3Notes', {
|
||||
per: 12
|
||||
}),
|
||||
per: 12,
|
||||
value: 65
|
||||
},
|
||||
4: {
|
||||
text: t('armorRogue4Text'),
|
||||
notes: t('armorRogue4Notes', {
|
||||
per: 15
|
||||
}),
|
||||
per: 15,
|
||||
value: 90
|
||||
},
|
||||
5: {
|
||||
text: t('armorRogue5Text'),
|
||||
notes: t('armorRogue5Notes', {
|
||||
per: 18
|
||||
}),
|
||||
per: 18,
|
||||
value: 120,
|
||||
last: true
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user