mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
feat(content): November backgrounds and Armoire
This commit is contained in:
@@ -21,7 +21,8 @@ let sets = {
|
||||
'backgrounds072015': ['dilatory_ruins', 'giant_wave', 'sunken_ship'],
|
||||
'backgrounds082015': ['pyramids', 'sunset_savannah', 'twinkly_party_lights'],
|
||||
'backgrounds092015': ['market', 'stable', 'tavern'],
|
||||
'backgrounds102015': ['harvest_moon', 'slimy_swamp', 'swarming_darkness']
|
||||
'backgrounds102015': ['harvest_moon', 'slimy_swamp', 'swarming_darkness'],
|
||||
'backgrounds112015': ['floating_islands', 'night_dunes', 'sunset_oasis']
|
||||
};
|
||||
|
||||
generateBackgrounds(sets);
|
||||
|
||||
@@ -63,6 +63,30 @@ let armor = {
|
||||
canOwn: ((u) => {
|
||||
return u.items.gear.owned.armor_armoire_plagueDoctorOvercoat != null;
|
||||
})
|
||||
},
|
||||
shepherdRobes: {
|
||||
value: 100,
|
||||
str: 9,
|
||||
per: 9,
|
||||
notes: t('armorArmoireShepherdRobesNotes', {
|
||||
attrs: 9
|
||||
}),
|
||||
set: 'shepherd',
|
||||
canOwn: ((u) => {
|
||||
return u.items.gear.owned.armor_armoire_shepherdRobes != null;
|
||||
})
|
||||
},
|
||||
royalRobes: {
|
||||
value: 100,
|
||||
str: 9,
|
||||
per: 9,
|
||||
notes: t('armorArmoireRoyalRobesNotes', {
|
||||
attrs: 9
|
||||
}),
|
||||
set: 'royal',
|
||||
canOwn: ((u) => {
|
||||
return u.items.gear.owned.armor_armoire_royalRobes != null;
|
||||
})
|
||||
}
|
||||
};
|
||||
|
||||
@@ -217,6 +241,26 @@ let head = {
|
||||
return u.items.gear.owned.head_armoire_orangeCat != null;
|
||||
})
|
||||
},
|
||||
blueFloppyHat: {
|
||||
notes: t('headArmoireBlueFloppyHatNotes', {
|
||||
attrs: 7
|
||||
}),
|
||||
value: 100,
|
||||
con: 7,
|
||||
int: 7,
|
||||
per: 7,
|
||||
canOwn: ((u) => {
|
||||
return u.items.gear.owned.head_armoire_blueFloppyHat != null;
|
||||
})
|
||||
},
|
||||
shepherdHeaddress: {
|
||||
value: 100,
|
||||
int: 9,
|
||||
set: 'shepherd',
|
||||
canOwn: ((u) => {
|
||||
return u.items.gear.owned.head_armoire_shepherdHeaddress != null;
|
||||
})
|
||||
},
|
||||
};
|
||||
|
||||
let shield = {
|
||||
@@ -317,6 +361,14 @@ let weapon = {
|
||||
canOwn: (function(u) {
|
||||
return u.items.gear.owned.weapon_armoire_batWand != null;
|
||||
})
|
||||
},
|
||||
shepherdsCrook: {
|
||||
value: 100,
|
||||
con: 9,
|
||||
set: 'shepherd',
|
||||
canOwn: (function(u) {
|
||||
return u.items.gear.owned.weapon_armoire_shepherdsCrook != null;
|
||||
})
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user