feat(chat): veteran awards
This commit is contained in:
@@ -27,6 +27,7 @@ const armor = {
|
||||
1: contributorGear.armorSpecial1,
|
||||
2: backerGear.armorSpecial2,
|
||||
takeThis: takeThisGear.armorSpecialTakeThis,
|
||||
heroicTunic: contributorGear.armorSpecialHeroicTunic,
|
||||
finnedOceanicArmor: {
|
||||
text: t('armorSpecialFinnedOceanicArmorText'),
|
||||
notes: t('armorSpecialFinnedOceanicArmorNotes', { str: 15 }),
|
||||
@@ -868,6 +869,7 @@ const back = {
|
||||
wondercon_red: wonderconGear.backSpecialWonderconRed, // eslint-disable-line camelcase
|
||||
wondercon_black: wonderconGear.backSpecialWonderconBlack, // eslint-disable-line camelcase
|
||||
takeThis: takeThisGear.backSpecialTakeThis,
|
||||
heroicAureole: contributorGear.backSpecialHeroicAureole,
|
||||
snowdriftVeil: {
|
||||
text: t('backSpecialSnowdriftVeilText'),
|
||||
notes: t('backSpecialSnowdriftVeilNotes'),
|
||||
@@ -1204,6 +1206,7 @@ const head = {
|
||||
1: contributorGear.headSpecial1,
|
||||
2: backerGear.headSpecial2,
|
||||
takeThis: takeThisGear.headSpecialTakeThis,
|
||||
heroicCirclet: contributorGear.headSpecialHeroicCirclet,
|
||||
fireCoralCirclet: {
|
||||
text: t('headSpecialFireCoralCircletText'),
|
||||
notes: t('headSpecialFireCoralCircletNotes', { per: 15 }),
|
||||
|
||||
@@ -66,10 +66,46 @@ const weaponSpecialCritical = {
|
||||
},
|
||||
};
|
||||
|
||||
const armorSpecialHeroicTunic = {
|
||||
text: t('armorSpecialHeroicTunicText'),
|
||||
notes: t('armorSpecialHeroicTunicNotes', { attrs: 7 }),
|
||||
con: 7,
|
||||
str: 7,
|
||||
per: 7,
|
||||
int: 7,
|
||||
value: 175,
|
||||
canOwn: ownsItem('armor_special_heroicTunic'),
|
||||
};
|
||||
|
||||
const backSpecialHeroicAureole = {
|
||||
text: t('backSpecialHeroicAureoleText'),
|
||||
notes: t('backSpecialHeroicAureoleNotes', { attrs: 7 }),
|
||||
con: 7,
|
||||
str: 7,
|
||||
per: 7,
|
||||
int: 7,
|
||||
value: 175,
|
||||
canOwn: ownsItem('armor_special_heroicAureole'),
|
||||
};
|
||||
|
||||
const headSpecialHeroicCirclet = {
|
||||
text: t('headSpecialHeroicCircletText'),
|
||||
notes: t('headSpecialHeroicCircletNotes', { attrs: 7 }),
|
||||
con: 7,
|
||||
str: 7,
|
||||
per: 7,
|
||||
int: 7,
|
||||
value: 175,
|
||||
canOwn: ownsItem('head_special_heroicCirclet'),
|
||||
};
|
||||
|
||||
export {
|
||||
armorSpecial1,
|
||||
headSpecial1,
|
||||
shieldSpecial1,
|
||||
weaponSpecial1,
|
||||
weaponSpecialCritical,
|
||||
armorSpecialHeroicTunic,
|
||||
backSpecialHeroicAureole,
|
||||
headSpecialHeroicCirclet,
|
||||
};
|
||||
|
||||
@@ -92,6 +92,7 @@ const canFindSpecial = {
|
||||
'Lion-Veteran': false,
|
||||
'Bear-Veteran': false,
|
||||
'Fox-Veteran': false,
|
||||
'Dragon-Veteran': false,
|
||||
|
||||
// Thanksgiving pet ladder
|
||||
'Turkey-Base': false,
|
||||
@@ -181,6 +182,7 @@ const specialPets = {
|
||||
'Gryphon-Gryphatrice': 'gryphatrice',
|
||||
'Gryphatrice-Jubilant': 'jubilantGryphatrice',
|
||||
'JackOLantern-RoyalPurple': 'royalPurpleJackolantern',
|
||||
'Dragon-Veteran': 'veteranDragon',
|
||||
};
|
||||
|
||||
const specialMounts = {
|
||||
|
||||
Reference in New Issue
Block a user