feat(content): November backgrounds and Armoire

This commit is contained in:
Sabe Jones
2015-11-02 17:28:20 -05:00
parent 2cb4e80019
commit e74c83be2e
46 changed files with 7940 additions and 7720 deletions

View File

@@ -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);

View File

@@ -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;
})
}
};