mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 11:40:25 +00:00
fix(items): fix mage ultimate per bonus #2880
This commit is contained in:
parent
e731abb7b6
commit
35f3eac626
2 changed files with 6 additions and 6 deletions
8
dist/habitrpg-shared.js
vendored
8
dist/habitrpg-shared.js
vendored
|
|
@ -9347,9 +9347,9 @@ var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ?
|
|||
6: {
|
||||
twoHanded: true,
|
||||
text: "Golden Staff",
|
||||
notes: 'Fashioned of orichalcum, the alchemic gold, mighty and rare. Increases INT by 18 and PER by 9.',
|
||||
notes: 'Fashioned of orichalcum, the alchemic gold, mighty and rare. Increases INT by 18 and PER by 10.',
|
||||
int: 18,
|
||||
per: 9,
|
||||
per: 10,
|
||||
value: 200,
|
||||
last: true
|
||||
}
|
||||
|
|
@ -9832,8 +9832,8 @@ var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ?
|
|||
},
|
||||
5: {
|
||||
text: "Royal Magus Hat",
|
||||
notes: 'Shows authority over fortune, weather, and lesser mages. Increases PER by 9.',
|
||||
per: 9,
|
||||
notes: 'Shows authority over fortune, weather, and lesser mages. Increases PER by 10.',
|
||||
per: 10,
|
||||
value: 80,
|
||||
last: true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ gear =
|
|||
3: twoHanded: true, text: "Iron Staff", notes:'Plated in metal to channel heat, cold, and lightning. Increases INT by 9 and PER by 3.', int: 9, per: 3, value:80
|
||||
4: twoHanded: true, text: "Brass Staff", notes:'As powerful as it is heavy. Increases INT by 12 and PER by 5.', int:12, per: 5, value:120
|
||||
5: twoHanded: true, text: "Archmage Staff", notes:'Assists in weaving the most complex of spells. Increases INT by 15 and PER by 7.', int: 15, per: 7, value:160
|
||||
6: twoHanded: true, text: "Golden Staff", notes:'Fashioned of orichalcum, the alchemic gold, mighty and rare. Increases INT by 18 and PER by 9.', int: 18, per: 9, value:200, last: true
|
||||
6: twoHanded: true, text: "Golden Staff", notes:'Fashioned of orichalcum, the alchemic gold, mighty and rare. Increases INT by 18 and PER by 10.', int: 18, per: 10, value:200, last: true
|
||||
healer:
|
||||
0: text: "Novice Rod", notes:'For healers in training. Confers no benefit.', value:0
|
||||
1: text: "Acolyte Rod", notes:'Crafted during a healer\'s initiation. Increases INT by 2.', int: 2, value:20
|
||||
|
|
@ -139,7 +139,7 @@ gear =
|
|||
2: text: "Cornuthaum", notes:'Traditional headgear of the itinerant wizard. Increases PER by 3.', per: 3, value:25
|
||||
3: text: "Astrologer Hat", notes:'Adorned with the rings of Saturn. Increases PER by 5.', per: 5, value:40
|
||||
4: text: "Archmage Hat", notes:'Focuses the mind for intensive spellcasting. Increases PER by 7.', per: 7, value:60
|
||||
5: text: "Royal Magus Hat", notes:'Shows authority over fortune, weather, and lesser mages. Increases PER by 9.', per: 9, value:80, last: true
|
||||
5: text: "Royal Magus Hat", notes:'Shows authority over fortune, weather, and lesser mages. Increases PER by 10.', per: 10, value:80, last: true
|
||||
healer:
|
||||
#0: text: "No Circlet", notes:'No headgear.', value:0
|
||||
1: text: "Quartz Circlet", notes:'Jeweled headpiece, for focus on the task at hand. Increases INT by 2.', int: 2, value:15
|
||||
|
|
|
|||
Loading…
Reference in a new issue