feat(gaymerx): gaymerx special gear
2
dist/habitrpg-shared.css
vendored
16
dist/habitrpg-shared.js
vendored
|
|
@ -9221,6 +9221,10 @@ events = {
|
|||
summer: {
|
||||
start: '2014-06-20',
|
||||
end: '2014-08-01'
|
||||
},
|
||||
gaymerx: {
|
||||
start: '2014-07-02',
|
||||
end: '2014-08-01'
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -10049,6 +10053,12 @@ gear = {
|
|||
}),
|
||||
value: 90,
|
||||
con: 15
|
||||
},
|
||||
gaymerx: {
|
||||
event: events.gaymerx,
|
||||
text: t('armorSpecialGaymerxText'),
|
||||
notes: t('armorSpecialGaymerxNotes'),
|
||||
value: 0
|
||||
}
|
||||
},
|
||||
mystery: {
|
||||
|
|
@ -10424,6 +10434,12 @@ gear = {
|
|||
}),
|
||||
value: 40,
|
||||
int: 7
|
||||
},
|
||||
gaymerx: {
|
||||
event: events.gaymerx,
|
||||
text: t('headSpecialGaymerxText'),
|
||||
notes: t('headSpecialGaymerxNotes'),
|
||||
value: 0
|
||||
}
|
||||
},
|
||||
mystery: {
|
||||
|
|
|
|||
3367
dist/spritesmith.css
vendored
BIN
dist/spritesmith.png
vendored
|
Before Width: | Height: | Size: 701 KiB After Width: | Height: | Size: 704 KiB |
|
After Width: | Height: | Size: 529 B |
|
After Width: | Height: | Size: 653 B |
|
After Width: | Height: | Size: 3 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 512 B |
|
|
@ -165,6 +165,9 @@
|
|||
"armorSpecialBirthdayText": "Absurd Party Robes",
|
||||
"armorSpecialBirthdayNotes": "As part of the festivities, Absurd Party Robes are available free of charge in the Item Store! Swath yourself in those silly garbs and don your matching hats to celebrate this momentous day.",
|
||||
|
||||
"armorSpecialGaymerxText": "Rainbow Warrior Armor",
|
||||
"armorSpecialGaymerxNotes": "(Confers no benefit) In celebration of pride season and GaymerX, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13!",
|
||||
|
||||
"armorSpecialSpringRogueText": "Sleek Cat Suit",
|
||||
"armorSpecialSpringRogueNotes": "Impeccably groomed. Adds <%= per %> points to Perception. Limited Edition 2014 Spring Gear.",
|
||||
"armorSpecialSpringWarriorText": "Clover-steel Armor",
|
||||
|
|
@ -278,6 +281,9 @@
|
|||
"headSpecialSummerHealerText": "Coral Crown",
|
||||
"headSpecialSummerHealerNotes": "Enables its wearer to heal damaged reefs. Adds <%= int %> points to Intelligence. Limited Edition 2014 Summer Gear.",
|
||||
|
||||
"headSpecialGaymerxText": "Rainbow Warrior Helm",
|
||||
"headSpecialGaymerxNotes": "(Confers no benefit) In celebration of pride season and GaymerX, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13!",
|
||||
|
||||
"headMystery201402Text": "Winged Helm",
|
||||
"headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind!",
|
||||
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ events =
|
|||
birthday: {start:'2013-01-30',end:'2014-02-01'}
|
||||
spring: {start:'2014-03-21',end:'2014-05-01'}
|
||||
summer: {start:'2014-06-20',end:'2014-08-01'}
|
||||
gaymerx: {start:'2014-07-02',end:'2014-08-01'}
|
||||
|
||||
mystery =
|
||||
201402: {start:'2014-02-22',end:'2014-02-28'}
|
||||
|
|
@ -151,6 +152,8 @@ gear =
|
|||
summerWarrior: event: events.summer, specialClass: 'warrior', text: t('armorSpecialSummerWarriorText'), notes: t('armorSpecialSummerWarriorNotes', {con: 9}), value: 90, con: 9
|
||||
summerMage: event: events.summer, specialClass: 'wizard', text: t('armorSpecialSummerMageText'), notes: t('armorSpecialSummerMageNotes', {int: 9}), value: 90, int: 9
|
||||
summerHealer: event: events.summer, specialClass: 'healer', text: t('armorSpecialSummerHealerText'), notes: t('armorSpecialSummerHealerNotes', {con: 15}), value: 90, con: 15
|
||||
# Other
|
||||
gaymerx: event: events.gaymerx, text: t('armorSpecialGaymerxText'), notes: t('armorSpecialGaymerxNotes'), value: 0
|
||||
mystery:
|
||||
201402: text: t('armorMystery201402Text'), notes: t('armorMystery201402Notes'), mystery:mystery['201402'], value: 0
|
||||
201403: text: t('armorMystery201403Text'), notes: t('armorMystery201403Notes'), mystery:mystery['201403'], value: 0
|
||||
|
|
@ -208,6 +211,8 @@ gear =
|
|||
summerWarrior: event: events.summer, specialClass: 'warrior', text: t('headSpecialSummerWarriorText'), notes: t('headSpecialSummerWarriorNotes', {str: 9}),value: 40,str: 9
|
||||
summerMage: event: events.summer, specialClass: 'wizard', text: t('headSpecialSummerMageText'), notes: t('headSpecialSummerMageNotes', {per: 7}),value: 40,per: 7
|
||||
summerHealer: event: events.summer, specialClass: 'healer', text: t('headSpecialSummerHealerText'), notes: t('headSpecialSummerHealerNotes', {int: 7}), value: 40, int: 7
|
||||
# Other
|
||||
gaymerx: event: events.gaymerx, text: t('headSpecialGaymerxText'), notes: t('headSpecialGaymerxNotes'), value: 0
|
||||
mystery:
|
||||
201402: text: t('headMystery201402Text'), notes: t('headMystery201402Notes'), mystery:mystery['201402'], value: 0
|
||||
201405: text: t('headMystery201405Text'), notes: t('headMystery201405Notes'), mystery:mystery['201405'], value: 0
|
||||
|
|
|
|||