mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 00:09:41 +00:00
fix(MMM): typo
This commit is contained in:
parent
a38c8761a2
commit
dacaf41d63
2 changed files with 2 additions and 6 deletions
6
dist/habitrpg-shared.js
vendored
6
dist/habitrpg-shared.js
vendored
|
|
@ -10124,7 +10124,7 @@ gear = {
|
|||
value: 200,
|
||||
canOwn: (function(u) {
|
||||
var _ref;
|
||||
return +((_ref = u.backer) != null ? _ref.tier : void 0) >= 300;
|
||||
return (+((_ref = u.backer) != null ? _ref.tier : void 0) >= 300) || (u.items.gear.owned.weapon_special_3 != null);
|
||||
})
|
||||
},
|
||||
critical: {
|
||||
|
|
@ -13323,10 +13323,6 @@ api.quests = {
|
|||
drop: {
|
||||
items: [
|
||||
{
|
||||
type: 'gear',
|
||||
key: "armor_special_2",
|
||||
text: t('armorSpecial2Text')
|
||||
}, {
|
||||
type: 'food',
|
||||
key: 'Honey',
|
||||
text: t('questGoldenknight3DropHoney')
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ gear =
|
|||
0: text: t('weaponSpecial0Text'), notes: t('weaponSpecial0Notes', {str: 20}), str: 20, value:150, canOwn: ((u)-> +u.backer?.tier >= 70)
|
||||
1: text: t('weaponSpecial1Text'), notes: t('weaponSpecial1Notes', {attrs: 6}), str: 6, per: 6, con: 6, int: 6, value:170, canOwn: ((u)-> +u.contributor?.level >= 4)
|
||||
2: text: t('weaponSpecial2Text'), notes: t('weaponSpecial2Notes', {attrs: 25}), str: 25, per: 25, value:200, canOwn: ((u)-> (+u.backer?.tier >= 300) or u.items.gear.owned.weapon_special_2?)
|
||||
3: text: t('weaponSpecial3Text'), notes: t('weaponSpecial3Notes', {attrs: 17}), str: 17, int: 17, con: 17, value:200, canOwn: ((u)-> (+u.backer?.tier >= 300) or or u.items.gear.owned.weapon_special_3?)
|
||||
3: text: t('weaponSpecial3Text'), notes: t('weaponSpecial3Notes', {attrs: 17}), str: 17, int: 17, con: 17, value:200, canOwn: ((u)-> (+u.backer?.tier >= 300) or u.items.gear.owned.weapon_special_3?)
|
||||
critical: text: t('weaponSpecialCriticalText'), notes: t('weaponSpecialCriticalNotes', {attrs: 40}), str: 40, per: 40, value:200, canOwn: ((u)-> !!u.contributor?.critical)
|
||||
# Winter event gear
|
||||
yeti: event: events.winter, specialClass: 'warrior', text: t('weaponSpecialYetiText'), notes: t('weaponSpecialYetiNotes', {str: 15}), str: 15, value:90
|
||||
|
|
|
|||
Loading…
Reference in a new issue